From 5578f0d1faf6ff1c5fb10f9eea805fd0411d3c1b Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期三, 06 十二月 2023 17:42:16 +0800 Subject: [PATCH] 整合代码 --- Source/UBCS-WEB/src/components/FormTemplate/index.vue | 22 ++++++++++------------ 1 files changed, 10 insertions(+), 12 deletions(-) diff --git a/Source/UBCS-WEB/src/components/FormTemplate/index.vue b/Source/UBCS-WEB/src/components/FormTemplate/index.vue index 6d01849..6270458 100644 --- a/Source/UBCS-WEB/src/components/FormTemplate/index.vue +++ b/Source/UBCS-WEB/src/components/FormTemplate/index.vue @@ -14,10 +14,10 @@ v-if="dialogVisible" key="masterForm" ref="FormTemplate" v-bind="$attrs" - :selectRow="selectRow" :TreeValue="TreeValue" :eventList="eventList" :rowOid="rowOid" + :selectRow="selectRow" :status="status" :templateOid="templateOid" :type="type" @@ -39,11 +39,11 @@ <el-tab-pane v-if="showCodeApply" label="鐮佸�肩敵璇�" name="codeApply"> <FormTemplate key="codeApplyForm" ref="CodeApply" + :selectRow="selectRow" :selfColumnConfig="selfColumnConfig" :selfColumnType="selfColumnType" - :type="type" :status="status" - :selectRow="selectRow" + :type="type" data-key="codeApplyForm" secDTOListv-bind="$attrs" @attrList="attrListForm" @@ -142,9 +142,9 @@ type: Object, default: () => ({}), }, - selectRow:{ - type:Array, - default:[] + selectRow: { + type: Array, + default: [] } }, data() { @@ -248,9 +248,7 @@ }, }, }, - watch: { - - }, + watch: {}, methods: { openDialog() { //鏂板鍜屼慨鏀瑰叡鍚岃皟鐢�(鏈夋敼鍔� 涓嶉渶瑕佸湪浣跨敤edit锛屾柟娉曟病浠�涔堝奖鍝�) @@ -326,7 +324,7 @@ that.secVOList = (res.data.data.secVOList || []).filter((item) => typeList.includes(item.secType) ); - if (that.secVOList.length > 0 && that.type === "add" ||(that.type !== "add" && that.status === "amend")) { + if (that.secVOList.length > 0 && that.type === "add" || (that.type !== "add" && that.status === "amend")) { that.showCodeApply = true; that.activeName = "codeApply"; @@ -416,7 +414,7 @@ } }, async submit() { - if(this.status){ + if (this.status) { // 杩涜琛ㄥ崟鏍¢獙 const formValidate = await this.$refs.FormTemplate.validate(); if (!formValidate) return; @@ -495,7 +493,7 @@ resForm.codeRuleOid = this.codeRuleOid; resForm.templateOid = this.templateOid; this.$emit("submit", resForm); - }else { + } else { // 杩涜琛ㄥ崟鏍¢獙 const formValidate = await this.$refs.FormTemplate.validate(); if (!formValidate) return; -- Gitblit v1.9.3