index.vue 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <template>
  2. <div class="source pagePadding">
  3. <div
  4. v-if="powers && powers.length > 0 && powers.some((item) => item == '001')"
  5. v-loading="loading"
  6. >
  7. <el-row>
  8. <el-col :span="4" style="width: 200px">
  9. <search-terrace
  10. :value="parmValue.platform_id"
  11. :disabled="false"
  12. :size="'mini'"
  13. :isDetail="false"
  14. :placeholder="'业务平台'"
  15. @searchChange="platform_codesearchChange"
  16. />
  17. </el-col>
  18. </el-row>
  19. <el-table
  20. :data="tableData"
  21. style="width: 100%"
  22. border
  23. :size="size"
  24. stripe
  25. >
  26. <el-table-column label="序号" type="index"> </el-table-column>
  27. <el-table-column prop="date" label="业务平台" width="180">
  28. </el-table-column>
  29. <el-table-column prop="source" label="销售渠道"> </el-table-column>
  30. </el-table>
  31. </div>
  32. <no-auth v-else></no-auth>
  33. </div>
  34. </template>
  35. <script>
  36. import asyncRequest from "@/apis/service/orderEntry/source";
  37. import { mapGetters } from "vuex";
  38. import resToken from "@/mixins/resToken";
  39. export default {
  40. name: "source",
  41. mixins: [resToken],
  42. computed: {
  43. //组件SIZE设置
  44. ...mapGetters(["tablebtnSize", "searchSize", "size"]),
  45. powers() {
  46. let tran =
  47. this.$store.getters.btnList.find(
  48. (item) => item.menu_route == "source"
  49. ) || {};
  50. if (tran && tran.action && tran.action.length > 0) {
  51. return tran.action;
  52. } else {
  53. return [];
  54. }
  55. },
  56. },
  57. data() {
  58. return {
  59. loading: true,
  60. parmValue: {
  61. platform_id: "",
  62. },
  63. tableData: [],
  64. };
  65. },
  66. mounted() {
  67. this.searchList();
  68. },
  69. methods: {
  70. restSearch() {
  71. this.parmValue = {
  72. platform_id: "",
  73. };
  74. this.searchList();
  75. },
  76. async platform_codesearchChange(e) {
  77. const { id } = e;
  78. this.parmValue.platform_id = id || "";
  79. await this.searchList();
  80. },
  81. // 刷新表格
  82. async searchList() {
  83. this.loading = true;
  84. const { code, data, message } = await asyncRequest.list(this.parmValue);
  85. if (code === 0) {
  86. this.tableData = data;
  87. } else if (code >= 100 && code <= 104) {
  88. await this.logout();
  89. } else {
  90. this.tableData = [];
  91. this.$message.warning(message);
  92. }
  93. this.loading = false;
  94. },
  95. },
  96. };
  97. </script>
  98. <style lang="scss" scoped>
  99. </style>