|
@@ -22,18 +22,17 @@
|
|
|
:label="item.name"
|
|
|
:value="item.code + ''"
|
|
|
:disabled="item.status + '' !== '1'"
|
|
|
- >
|
|
|
- </el-option>
|
|
|
+ />
|
|
|
</el-select>
|
|
|
</template>
|
|
|
|
|
|
<script>
|
|
|
-import asyncRequest from "@/apis/components/search-supplier";
|
|
|
-import resToken from "@/mixins/resToken";
|
|
|
+import asyncRequest from '@/apis/components/search-supplier'
|
|
|
+import resToken from '@/mixins/resToken'
|
|
|
export default {
|
|
|
- name: "SearchSupplier",
|
|
|
+ name: 'SearchSupplier',
|
|
|
mixins: [resToken],
|
|
|
- props: ["size", "value", "placeholder", "isDetail", "disabled", "names", "type", "isp"],
|
|
|
+ props: ['size', 'value', 'placeholder', 'isDetail', 'disabled', 'names', 'type', 'isp'],
|
|
|
/**
|
|
|
* 属性集合
|
|
|
* @param {String} size : 组件大小 非必填
|
|
@@ -52,86 +51,86 @@ export default {
|
|
|
return {
|
|
|
options: [],
|
|
|
selectLoading: false,
|
|
|
- searchName: "",
|
|
|
- };
|
|
|
+ searchName: ''
|
|
|
+ }
|
|
|
},
|
|
|
watch: {
|
|
|
- names: function (val, old) {
|
|
|
+ names: function(val, old) {
|
|
|
// console.log(val, old, this.isDetail, "1");
|
|
|
- this.searchName = val;
|
|
|
+ this.searchName = val
|
|
|
if (this.isDetail && this.searchName) {
|
|
|
- this.remoteMethod(this.searchName, this.isp);
|
|
|
+ this.remoteMethod(this.searchName, this.isp)
|
|
|
}
|
|
|
},
|
|
|
- isDetail: function (val, old) {
|
|
|
+ isDetail: function(val, old) {
|
|
|
// console.log(val, old, this.isDetail, "2");
|
|
|
if (val && this.searchName) {
|
|
|
- this.remoteMethod(this.searchName, this.isp);
|
|
|
+ this.remoteMethod(this.searchName, this.isp)
|
|
|
}
|
|
|
- },
|
|
|
+ }
|
|
|
},
|
|
|
mounted() {
|
|
|
- this.options = [];
|
|
|
- this.selectLoading = false;
|
|
|
+ this.options = []
|
|
|
+ this.selectLoading = false
|
|
|
},
|
|
|
methods: {
|
|
|
async selectChange(e) {
|
|
|
// console.log(e);
|
|
|
// console.log("1111" + this.isp);
|
|
|
if (e && e.length > 0) {
|
|
|
- let index = this.options.findIndex((v) => v.code === e[0]);
|
|
|
+ const index = this.options.findIndex((v) => v.code === e[0])
|
|
|
if (index !== -1) {
|
|
|
- let model = {
|
|
|
+ const model = {
|
|
|
id: this.options[index].id,
|
|
|
code: this.options[index].code,
|
|
|
label: this.options[index].name,
|
|
|
- isPower: this.options[index].has_account + "" !== "0",
|
|
|
- };
|
|
|
- this.$emit("searchChange", model);
|
|
|
+ isPower: this.options[index].has_account + '' !== '0'
|
|
|
+ }
|
|
|
+ this.$emit('searchChange', model)
|
|
|
} else {
|
|
|
- this.$emit("searchChange", {});
|
|
|
+ this.$emit('searchChange', {})
|
|
|
}
|
|
|
} else {
|
|
|
- this.$emit("searchChange", {});
|
|
|
+ this.$emit('searchChange', {})
|
|
|
}
|
|
|
},
|
|
|
async remoteMethod(query, types) {
|
|
|
- this.selectLoading = true;
|
|
|
- if (query !== "") {
|
|
|
- this.options = [];
|
|
|
- let formValue = {
|
|
|
+ this.selectLoading = true
|
|
|
+ if (query !== '') {
|
|
|
+ this.options = []
|
|
|
+ const formValue = {
|
|
|
page: 1,
|
|
|
size: 100,
|
|
|
name: query,
|
|
|
- code: "",
|
|
|
- is_platform: this.type ? this.type : "",
|
|
|
- };
|
|
|
- const { code, data, message } = await asyncRequest.list(formValue);
|
|
|
+ code: '',
|
|
|
+ is_platform: this.type ? this.type : ''
|
|
|
+ }
|
|
|
+ const { code, data, message } = await asyncRequest.list(formValue)
|
|
|
if (code === 0) {
|
|
|
- const { list } = data;
|
|
|
- this.options = list;
|
|
|
+ const { list } = data
|
|
|
+ this.options = list
|
|
|
if (types) {
|
|
|
// console.log(this.value);
|
|
|
- const index = this.options.findIndex((v) => v.code + '' === this.value[0] + '');
|
|
|
+ const index = this.options.findIndex((v) => v.code + '' === this.value[0] + '')
|
|
|
// console.log(this.options);
|
|
|
// console.log(index);
|
|
|
if (index !== -1) {
|
|
|
- await this.selectChange([this.options[index].code]);
|
|
|
+ await this.selectChange([this.options[index].code])
|
|
|
}
|
|
|
}
|
|
|
// console.log(types);
|
|
|
} else if (code >= 100 && code <= 104) {
|
|
|
- await this.logout();
|
|
|
+ await this.logout()
|
|
|
} else {
|
|
|
- this.$message.warning(message);
|
|
|
+ this.$message.warning(message)
|
|
|
}
|
|
|
} else {
|
|
|
- this.options = [];
|
|
|
+ this.options = []
|
|
|
}
|
|
|
- this.selectLoading = false;
|
|
|
- },
|
|
|
- },
|
|
|
-};
|
|
|
+ this.selectLoading = false
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
</script>
|
|
|
|
|
|
<style></style>
|