|
@@ -17,42 +17,26 @@
|
|
|
:label="item.platform_name"
|
|
|
:value="item.id"
|
|
|
:disabled="item.status + '' === '0'"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/components/search-terrace";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
+import asyncRequest from '@/apis/components/search-terrace'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
export default {
|
|
|
- name: "SearchTerrace",
|
|
|
+ name: 'SearchTerrace',
|
|
|
mixins: [resToken],
|
|
|
props: [
|
|
|
- "size",
|
|
|
- "value",
|
|
|
- "placeholder",
|
|
|
- "isDetail",
|
|
|
- "disabled",
|
|
|
- "type",
|
|
|
- "names",
|
|
|
- "is_show",
|
|
|
+ 'size',
|
|
|
+ 'value',
|
|
|
+ 'placeholder',
|
|
|
+ 'isDetail',
|
|
|
+ 'disabled',
|
|
|
+ 'type',
|
|
|
+ 'names',
|
|
|
+ 'is_show'
|
|
|
],
|
|
|
- watch: {
|
|
|
- names: function (val, old) {
|
|
|
- // console.log(val, old, this.isDetail, "1");
|
|
|
- this.searchName = val;
|
|
|
- if (this.isDetail && this.searchName) {
|
|
|
- this.remoteMethod(this.searchName);
|
|
|
- }
|
|
|
- },
|
|
|
- isDetail: function (val, old) {
|
|
|
- // console.log(val, old, this.isDetail, "2");
|
|
|
- if (val && this.searchName) {
|
|
|
- this.remoteMethod(this.searchName);
|
|
|
- }
|
|
|
- },
|
|
|
- },
|
|
|
/**
|
|
|
* 属性集合
|
|
|
* @param {String} size : 组件大小 非必填
|
|
@@ -70,60 +54,75 @@ export default {
|
|
|
return {
|
|
|
options: [],
|
|
|
selectLoading: false,
|
|
|
- searchName: "",
|
|
|
+ searchName: '',
|
|
|
formValue: {
|
|
|
page: 1,
|
|
|
size: 10000,
|
|
|
- start: "",
|
|
|
- is_show: "1",
|
|
|
- end: "",
|
|
|
- platform_name: "",
|
|
|
- creater: "",
|
|
|
- },
|
|
|
- };
|
|
|
+ start: '',
|
|
|
+ is_show: '1',
|
|
|
+ end: '',
|
|
|
+ platform_name: '',
|
|
|
+ creater: ''
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
+ watch: {
|
|
|
+ names: function(val, old) {
|
|
|
+ // console.log(val, old, this.isDetail, "1");
|
|
|
+ this.searchName = val
|
|
|
+ if (this.isDetail && this.searchName) {
|
|
|
+ this.remoteMethod(this.searchName)
|
|
|
+ }
|
|
|
+ },
|
|
|
+ isDetail: function(val, old) {
|
|
|
+ // console.log(val, old, this.isDetail, "2");
|
|
|
+ if (val && this.searchName) {
|
|
|
+ this.remoteMethod(this.searchName)
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.options = [];
|
|
|
- this.selectLoading = false;
|
|
|
- this.remoteMethod();
|
|
|
+ this.options = []
|
|
|
+ this.selectLoading = false
|
|
|
+ this.remoteMethod()
|
|
|
},
|
|
|
methods: {
|
|
|
async selectChange(e) {
|
|
|
if (e) {
|
|
|
- let index = this.options.findIndex((v) => v.id === e);
|
|
|
+ const index = this.options.findIndex((v) => v.id === e)
|
|
|
if (index !== -1) {
|
|
|
- let model = {
|
|
|
+ const model = {
|
|
|
id: this.options[index].id,
|
|
|
code: this.options[index].platform_code,
|
|
|
label: this.options[index].platform_name,
|
|
|
- platform_type:this.options[index].platform_type
|
|
|
- };
|
|
|
- this.$emit("searchChange", model);
|
|
|
+ platform_type: this.options[index].platform_type
|
|
|
+ }
|
|
|
+ this.$emit('searchChange', model)
|
|
|
} else {
|
|
|
- this.$emit("searchChange", {});
|
|
|
+ this.$emit('searchChange', {})
|
|
|
}
|
|
|
} else {
|
|
|
- this.$emit("searchChange", {});
|
|
|
+ this.$emit('searchChange', {})
|
|
|
}
|
|
|
},
|
|
|
async remoteMethod() {
|
|
|
- this.selectLoading = true;
|
|
|
- this.options = [];
|
|
|
- this.formValue.is_show = this.is_show || "1";
|
|
|
- const { code, data, message } = await asyncRequest.list(this.formValue);
|
|
|
+ this.selectLoading = true
|
|
|
+ this.options = []
|
|
|
+ this.formValue.is_show = this.is_show || '1'
|
|
|
+ const { code, data, message } = await asyncRequest.list(this.formValue)
|
|
|
|
|
|
if (code === 0) {
|
|
|
- const { list } = data;
|
|
|
- this.options = list;
|
|
|
+ const { list } = data
|
|
|
+ this.options = list
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
- this.selectLoading = false;
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ this.selectLoading = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style>
|