diff --git a/src/components/autocomplete/index.vue b/src/components/autocomplete/index.vue index ef332a1..126bba9 100644 --- a/src/components/autocomplete/index.vue +++ b/src/components/autocomplete/index.vue @@ -59,9 +59,18 @@ export default { if (query !== "") { this.loading = true; let params = {}; - this.config.autocompleteKey - ? (params[this.config.autocompleteKey] = query) - : (params["queryTypeGet"] = query); + let type = this.$utils.typeJudgment(this.config.autocompleteKey); + if (!type.includes("Object") && !type.includes("String")) return; + + if (type.includes("Object")) { + params[this.config.autocompleteKey.key] = query; + params["enableMark"] = this.config.autocompleteKey.enableMark; + } + if (type.includes("String")) { + this.config.autocompleteKey + ? (params[this.config.autocompleteKey] = query) + : (params["queryTypeGet"] = query); + } this.config.serveTarget(params).then((res) => { let timeInstance = setTimeout(() => { this.loading = false; diff --git a/src/components/generalDetails/index.vue b/src/components/generalDetails/index.vue index 817e08d..8d8a9d2 100644 --- a/src/components/generalDetails/index.vue +++ b/src/components/generalDetails/index.vue @@ -117,7 +117,7 @@ export default { init() { this.dataPage = this.mappingData.map( (mappingDataItem, mappingDataIndex) => { - let shineData = this.sourceData[mappingDataIndex]; + let shineData = this.sourceData[mappingDataIndex] || {}; return { title: mappingDataItem.carTitle, iconClass: mappingDataItem.iconClass || "iconjichuziliao", diff --git a/src/utils/dataType.js b/src/utils/dataType.js index ccaeece..f4230ef 100644 --- a/src/utils/dataType.js +++ b/src/utils/dataType.js @@ -18,14 +18,14 @@ export const rechargeTypeEnum = [ label: "充值", value: "RECHARGE", }, - { - label: "销账", - value: "REVOKE", - }, - { - label: "赊销", - value: "CHARGE_SALES", - }, + // { + // label: "销账", + // value: "REVOKE", + // }, + // { + // label: "赊销", + // value: "CHARGE_SALES", + // }, { label: "消费返利", value: "CONSUME_REBATE", diff --git a/src/utils/index.js b/src/utils/index.js index 4b6ed6c..49fcf20 100644 --- a/src/utils/index.js +++ b/src/utils/index.js @@ -55,3 +55,8 @@ export function isLicensePlate(no) { export function cellStyle() { return "text-align:center"; } + +export function typeJudgment(object) { + let res = {}.__proto__.toString.call(object); + return res ? res : ""; +} diff --git a/src/views/customerManagement/companyManagement/index.vue b/src/views/customerManagement/companyManagement/index.vue index a26dd69..0ed3da3 100644 --- a/src/views/customerManagement/companyManagement/index.vue +++ b/src/views/customerManagement/companyManagement/index.vue @@ -282,7 +282,7 @@ > - +