ludc
2023-08-03 d14f8e30ed792931ccc012b10904831db1b6b803
提交代码
已修改2个文件
16 ■■■■ 文件已修改
Source/UBCS-WEB/src/views/code/code.vue 15 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeCLassifyMapper.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
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 "@api/util/func";
  export default {
      data() {
@@ -2616,7 +2617,7 @@
        /** 码段类型改变时,增加对应的form表单中的属性*/
        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,14 @@
        },
        /** 枚举和可输可选内容查询 */
        loadCodeSecType(){
          this.enumParam.secTypeList = this.getLocalStorageEnum("codeSecType");
          this.enumParam.secTypeList = this.getLocalStorageEnum("codeSecType") | [];
          this.loadCodeSecLength();
        },
        loadCodeSecLength(){
          this.enumParam.codeSecLengthType = this.getLocalStorageEnum("codeSecLength");
          this.enumParam.codeSecLengthType = this.getLocalStorageEnum("codeSecLength") | [];
        },
        loadCodeFillType(){
          this.enumParam.codeFillType = this.getLocalStorageEnum("codeFillType");
          this.enumParam.codeFillType = this.getLocalStorageEnum("codeFillType") | [];
        },
        loadCodeFillSeparator(){
          let enumCach = JSON.parse(localStorage.getItem("codeFillSeparator"));
@@ -2771,13 +2772,13 @@
          }
        },
        loadCodeLevelType(){
          this.enumParam.codeLevelType = this.getLocalStorageEnum("codeLevelType");
          this.enumParam.codeLevelType = this.getLocalStorageEnum("codeLevelType") | [];
        },
        loadCodeCutType(){
          this.enumParam.codeCutType = this.getLocalStorageEnum("codeCutType");
          this.enumParam.codeCutType = this.getLocalStorageEnum("codeCutType") | [];
        },
        loadCodeGetValueType(){
          this.enumParam.codeGetValueType =  this.getLocalStorageEnum("codeGetValueType");
          this.enumParam.codeGetValueType =  this.getLocalStorageEnum("codeGetValueType") | [];
        },
      }
Source/UBCS/ubcs-service/ubcs-code/src/main/resources/mapper/CodeCLassifyMapper.xml
@@ -206,7 +206,6 @@
        CONNECT BY PRIOR OID = parentCodeClassifyOid) codeclassify0
    </select>
    <select id="selectByFieldNamePath"  resultMap="plCodeClassifyResultMap">
        select codeclassify0.OWNER                 as owner,
               codeclassify0.BTMTYPEID             as btmtypeid,