yuxc
2024-12-25 90b6945445ee97109a57f26c83788d24729a098e
Source/plt-web/plt-web-ui/src/views/modelingMenu/ui/formDefine/components/formDialog.vue
@@ -410,6 +410,7 @@
    </el-container>
    <!-- 添加自定义组件 -->
    <el-dialog
      v-dialogDrag
      v-loading="customLoading"
@@ -795,7 +796,7 @@
          <avue-tree :key="refresh" ref="authTree" v-model="treeAuthForm" :data="treeAuthData" :option="treeAuthOption"
                     @check-change="treeAuthCheckChange">
              <span slot-scope="{ node, data }" class="el-tree-node__label">
           <span style="font-size: 15px">
           <span>
              <i class="el-icon-s-promotion"></i>
                {{ (node || {}).label }}
            </span>
@@ -1026,6 +1027,7 @@
      ],
      form: {},
      topForm: {
        itemQtName: '',
        columnNumber: 8,
        showColumn: '3',
        viName: '',
@@ -1287,9 +1289,9 @@
    // 选项删除
    optionDeleteClickHandler(val) {
      if (val === 'dialog') {
        this.customForm.itemKeyValueList.splice(this.customOptionRow.index,1);
        this.customForm.itemKeyValueList.splice(this.customOptionRow.index, 1);
      } else {
        this.form.itemKeyValueList.splice(this.optionRow.index,1);
        this.form.itemKeyValueList.splice(this.optionRow.index, 1);
      }
    },
@@ -1412,8 +1414,6 @@
        const data = res.data.data;
        this.customAttrData = data;
        this.customAttrLoading = false;
      }).catch(err => {
        this.$message.error(err)
      });
    },
@@ -1545,3 +1545,4 @@
//}
</style>