From 90ba3c225356a901a207d5ad7561694fa05d925a Mon Sep 17 00:00:00 2001 From: ludc Date: 星期三, 09 八月 2023 15:54:06 +0800 Subject: [PATCH] 码值管理bug --- Source/UBCS-WEB/src/views/code/code.vue | 22 +++++++++++++++------- 1 files changed, 15 insertions(+), 7 deletions(-) diff --git a/Source/UBCS-WEB/src/views/code/code.vue b/Source/UBCS-WEB/src/views/code/code.vue index 0aa01d7..08666d7 100644 --- a/Source/UBCS-WEB/src/views/code/code.vue +++ b/Source/UBCS-WEB/src/views/code/code.vue @@ -835,6 +835,7 @@ import fixedValueOption from "@/const/code/fixedValueMgrDialog"; import {mapGetters} from "vuex"; import {getByRoleUserList} from "@/api/system/user"; + import func from "@/util/func"; export default { data() { @@ -2616,7 +2617,7 @@ /** 鐮佹绫诲瀷鏀瑰彉鏃讹紝澧炲姞瀵瑰簲鐨刦orm琛ㄥ崟涓殑灞炴��*/ changeSectypeFormItems(row){ //console.log(row); - if(this.enumParam.secTypeList.length==0){ + if(func.isEmpty(this.enumParam.secTypeList) || this.enumParam.secTypeList.length==0){ this.loadCodeSecType(); } if(row != null){ @@ -2752,14 +2753,18 @@ }, /** 鏋氫妇鍜屽彲杈撳彲閫夊唴瀹规煡璇� */ loadCodeSecType(){ - this.enumParam.secTypeList = this.getLocalStorageEnum("codeSecType"); + let enumList = this.getLocalStorageEnum("codeSecType"); + this.enumParam.secTypeList = enumList.length>0 ? enumList:[]; + console.log(this.enumParam.secTypeList); this.loadCodeSecLength(); }, loadCodeSecLength(){ - this.enumParam.codeSecLengthType = this.getLocalStorageEnum("codeSecLength"); + let enumList = this.getLocalStorageEnum("codeSecLength"); + this.enumParam.codeSecLengthType = enumList.length>0 ? enumList:[]; }, loadCodeFillType(){ - this.enumParam.codeFillType = this.getLocalStorageEnum("codeFillType"); + let enumList = this.getLocalStorageEnum("codeFillType"); + this.enumParam.codeFillType = enumList.length>0 ? enumList:[]; }, loadCodeFillSeparator(){ let enumCach = JSON.parse(localStorage.getItem("codeFillSeparator")); @@ -2771,13 +2776,16 @@ } }, loadCodeLevelType(){ - this.enumParam.codeLevelType = this.getLocalStorageEnum("codeLevelType"); + let enumList = this.getLocalStorageEnum("codeLevelType"); + this.enumParam.codeLevelType = enumList.length>0 ? enumList:[]; }, loadCodeCutType(){ - this.enumParam.codeCutType = this.getLocalStorageEnum("codeCutType"); + let enumList = this.getLocalStorageEnum("codeCutType"); + this.enumParam.codeCutType = enumList.length>0 ? enumList:[]; }, loadCodeGetValueType(){ - this.enumParam.codeGetValueType = this.getLocalStorageEnum("codeGetValueType"); + let enumList = this.getLocalStorageEnum("codeGetValueType"); + this.enumParam.codeGetValueType = enumList.length>0 ? enumList:[]; }, } -- Gitblit v1.9.3