main.vue 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. <template>
  2. <el-select
  3. v-model="value"
  4. :size="size || 'medium'"
  5. style="width: 100%"
  6. filterable
  7. clearable
  8. :placeholder="placeholder || ''"
  9. :disabled="disabled"
  10. :remote-method="remoteMethod"
  11. :loading="selectLoading"
  12. @change="selectChange"
  13. >
  14. <el-option
  15. v-for="(item, index) in options"
  16. :key="item.id + index"
  17. :label="item.platform_name"
  18. :value="item.id"
  19. :disabled="item.status + '' === '0' && !controlDisabled"
  20. />
  21. </el-select>
  22. </template>
  23. <script>
  24. import asyncRequest from "@/apis/components/search-terrace";
  25. import resToken from "@/mixins/resToken";
  26. export default {
  27. name: "SearchTerrace",
  28. mixins: [resToken],
  29. props: [
  30. "size",
  31. "value",
  32. "placeholder",
  33. "isDetail",
  34. "disabled",
  35. "type",
  36. "names",
  37. "is_show",
  38. "controlDisabled",
  39. "platformType"
  40. ],
  41. /**
  42. * 属性集合
  43. * @param {String} size : 组件大小 非必填
  44. * @param {Array} value : 选中值 必填
  45. * @param {String} placeholder : 提示信息 非必填
  46. * @param {Boolean} isDetail : 是否是详情逻辑 必填
  47. * @param {Boolean} disabled : 是否禁用 必填
  48. * @param {String} names : 选中值label 展示详情必填
  49. */
  50. /**
  51. * 事件集合
  52. * @searchChange : 选中值变化调用 抛出选中数据
  53. */
  54. data() {
  55. return {
  56. options: [],
  57. selectLoading: false,
  58. searchName: "",
  59. formValue: {
  60. page: 1,
  61. size: 10000,
  62. start: "",
  63. is_show: "1",
  64. end: "",
  65. platform_name: "",
  66. creater: ""
  67. }
  68. };
  69. },
  70. watch: {
  71. names: function(val, old) {
  72. // console.log(val, old, this.isDetail, "1");
  73. this.searchName = val;
  74. if (this.isDetail && this.searchName) {
  75. this.remoteMethod(this.searchName);
  76. }
  77. },
  78. platformType() {
  79. this.remoteMethod();
  80. },
  81. isDetail: function(val, old) {
  82. // console.log(val, old, this.isDetail, "2");
  83. if (val && this.searchName) {
  84. this.remoteMethod(this.searchName);
  85. }
  86. }
  87. },
  88. mounted() {
  89. this.options = [];
  90. this.selectLoading = false;
  91. this.remoteMethod();
  92. console.log("---search:" + this.disabled)
  93. },
  94. methods: {
  95. async selectChange(e) {
  96. if (e) {
  97. const index = this.options.findIndex(v => v.id === e);
  98. if (index !== -1) {
  99. const model = {
  100. id: this.options[index].id,
  101. code: this.options[index].platform_code,
  102. label: this.options[index].platform_name,
  103. platform_type: this.options[index].platform_type
  104. };
  105. this.$emit("searchChange", model);
  106. } else {
  107. this.$emit("searchChange", {});
  108. }
  109. } else {
  110. this.$emit("searchChange", {});
  111. }
  112. },
  113. async remoteMethod() {
  114. this.selectLoading = true;
  115. this.options = [];
  116. this.formValue.is_show = this.is_show || "1";
  117. const { code, data, message } = await asyncRequest.list({
  118. ...this.formValue,
  119. ...(this.platformType
  120. ? {
  121. platform_type: this.platformType
  122. }
  123. : {})
  124. });
  125. if (code === 0) {
  126. const { list } = data;
  127. this.options = list;
  128. } else if (code >= 100 && code <= 104) {
  129. await this.logout();
  130. } else {
  131. this.$message.warning(message);
  132. }
  133. this.selectLoading = false;
  134. }
  135. }
  136. };
  137. </script>
  138. <style>
  139. </style>