fujunling
2023-07-05 8b84ae66e05d83d4aa9c09de0fa89513fc5cfb3b
批量导入
已修改2个文件
15 ■■■■ 文件已修改
Source/UBCS-WEB/src/components/BatchImport/index.vue 8 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/mixins/codeApply.js 7 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Source/UBCS-WEB/src/components/BatchImport/index.vue
@@ -148,9 +148,15 @@
          classifyAttr: this.classifyAttr,
        };
      } else if (this.type === "batchImportApply") {
        const secDTOList = this.localSecVOList.map(item => {
            return {
              secOid: item.oid,
              secValue: this.codeApplyForm[item.id]
            }
          })
        return {
          codeClassifyOid: this.codeClassifyOid,
          secDTOList: this.secDTOList,
          secDTOList: JSON.stringify(secDTOList),
          ...this.codeApplyForm,
        };
      } else if (this.type === "batchApplyCode") {
Source/UBCS-WEB/src/mixins/codeApply.js
@@ -3,6 +3,7 @@
  data() {
    return {
      secVOList: [],
      localSecVOList: [],
      showCodeApply: false,
      selfColumnType: {
        codefixedsec: "combox",
@@ -57,13 +58,13 @@
            "coderefersec",
          ];
          this.secVOList = res.data.data.secVOList || []
          let localSecVOList = (res.data.data.secVOList || []).filter((item) =>
          this.localSecVOList = (res.data.data.secVOList || []).filter((item) =>
            typeList.includes(item.secType)
          );
          if (localSecVOList.length > 0) {
          if (this.localSecVOList.length > 0) {
            this.showCodeApply = true
            this.$nextTick(() => {
              this.$refs.CodeApply.templateRender(localSecVOList);
              this.$refs.CodeApply.templateRender(this.localSecVOList);
            });
          }