pull/3/head
xiaozhiyong 2 years ago
parent 22c8d4d6dc
commit f9687b9e0f
  1. 84
      src/components/autocomplete/index.vue
  2. 4
      src/utils/index.js
  3. 2
      src/views/login/index.vue
  4. 3
      src/views/product/index.vue

@ -11,13 +11,31 @@
:disabled="isDisabled" :disabled="isDisabled"
@change="change" @change="change"
> >
<el-option <template v-if="labelIsMore">
v-for="(item, index) in list" <el-option
:key="item.id + index" v-for="(item, index) in list"
:label="item[config.labelKey]" :key="item.id + index"
:value="item[config.valueKey]" :label="
> item[config.labelKey[0]] +
</el-option> '(' +
item[config.labelKey[1]] +
'-' +
item[config.labelKey[2]] +
')'
"
:value="item[config.valueKey]"
>
</el-option>
</template>
<template>
<el-option
v-for="(item, index) in list"
:key="index"
:label="item[config.labelKey]"
:value="item[config.valueKey]"
>
</el-option>
</template>
</el-select> </el-select>
</template> </template>
@ -37,6 +55,8 @@ export default {
data() { data() {
return { return {
text: "", text: "",
labelIsMore: false,
// labelKeyArr:[],
list: [], list: [],
isDisabled: false, isDisabled: false,
}; };
@ -44,48 +64,68 @@ export default {
watch: { watch: {
"config.echoId": { "config.echoId": {
handler(nval, oval) { handler(nval, oval) {
this.list = [];
// this.isDisabled = !!this.config.isDisabled;
if (nval) { if (nval) {
this.remoteMethod(this.config.echoName); let resultName = this.config.echoName.replace(/\s*/g, "");
if (!resultName) return;
this.remoteMethod(resultName);
}
},
deep: true,
immediate: true,
},
"config.isDisabled": {
handler(nval, oval) {
let type = this.$utils.typeJudgment(nval);
if (["Boolean", "String"].includes(type)) {
this.isDisabled = !!this.config.isDisabled;
} }
this.isDisabled = !!this.config.isDisabled;
}, },
deep: true, deep: true,
immediate: true, immediate: true,
}, },
}, },
created() {
let { labelKey } = this.config;
let type = this.$utils.typeJudgment(labelKey);
// console.log(type);
if (type === "Array") {
// let
this.labelIsMore = true;
// console.log(this.labelIsMore);
}
},
methods: { methods: {
// //
remoteMethod(query) { remoteMethod(query) {
if (query !== "") { if (query !== "") {
this.loading = true; this.loading = true;
let params = {};
let type = this.$utils.typeJudgment(this.config.autocompleteKey); let type = this.$utils.typeJudgment(this.config.autocompleteKey);
if (!type.includes("Object") && !type.includes("String")) return;
if (type.includes("Object")) { let params = {};
if (["Object"].includes(type)) {
params[this.config.autocompleteKey.key] = query; params[this.config.autocompleteKey.key] = query;
params["enableMark"] = this.config.autocompleteKey.enableMark; params["enableMark"] = this.config.autocompleteKey.enableMark;
} }
if (type.includes("String")) { if (["String", "Undefined", "Null"].includes(type)) {
// getautocompleteKey
this.config.autocompleteKey this.config.autocompleteKey
? (params[this.config.autocompleteKey] = query) ? (params[this.config.autocompleteKey] = query)
: (params["queryTypeGet"] = query); : (params = query);
} }
this.config.serveTarget(params).then((res) => { this.config.serveTarget(params).then((res) => {
let timeInstance = setTimeout(() => { this.loading = false;
this.loading = false; if (res.data.length) {
clearTimeout(timeInstance); this.list = res.data;
if (res.data.length) { } else this.list = [];
this.list = res.data;
} else this.list = [];
}, 1000 * Math.random());
}); });
} else { } else {
this.list = []; this.list = [];
} }
}, },
change(val) { change(val) {
this.$emit("change", val); this.$emit("change", val, this.list);
}, },
}, },
}; };

@ -52,7 +52,9 @@ export function isLicensePlate(no) {
return instance.test(no); return instance.test(no);
} }
// 类型判断
export function typeJudgment(object) { export function typeJudgment(object) {
let res = {}.__proto__.toString.call(object); let res = {}.__proto__.toString.call(object);
return res ? res : ""; let type = /(?<= ).+(?=\])/.exec(res);
return type.length ? type[0] : "";
} }

@ -145,6 +145,7 @@ export default {
networkId, networkId,
}) })
.then((res) => { .then((res) => {
this.loading = false;
if (res && res.code === 42014) { if (res && res.code === 42014) {
serve serve
.getRefineryByCustomerId(this.loginForm.username) .getRefineryByCustomerId(this.loginForm.username)
@ -154,7 +155,6 @@ export default {
}); });
return; return;
} }
console.log()
localStorage.setItem("customerToken", res.data.accessToken); localStorage.setItem("customerToken", res.data.accessToken);
this.$router.replace("/"); this.$router.replace("/");
}) })

@ -33,6 +33,7 @@
> >
</el-option> </el-option>
</el-select> </el-select>
<autocomplete :params="parameter.params" :config="configAutocomplete" /> <autocomplete :params="parameter.params" :config="configAutocomplete" />
<!-- <el-input <!-- <el-input
v-model="parameter.params.belongLibrary" v-model="parameter.params.belongLibrary"
@ -183,7 +184,7 @@ export default {
], ],
configAutocomplete: { configAutocomplete: {
serveTarget: serve.findByEntity, serveTarget: serve.findByEntity,
autocomplateKey: "name", autocompleteKey: "name",
valueKey: "refineryName", valueKey: "refineryName",
placeholder: "炼厂名称", placeholder: "炼厂名称",
querykey: "refineryId", querykey: "refineryId",

Loading…
Cancel
Save