From c48c27fc96e26309e8ab0df414dcb179c0348e2f Mon Sep 17 00:00:00 2001 From: 田源 <lastanimals@163.com> Date: 星期四, 07 十二月 2023 14:39:23 +0800 Subject: [PATCH] 整合代码 --- Source/UBCS-WEB/src/components/FormTemplate/index.vue | 21 +++++++++++---------- 1 files changed, 11 insertions(+), 10 deletions(-) diff --git a/Source/UBCS-WEB/src/components/FormTemplate/index.vue b/Source/UBCS-WEB/src/components/FormTemplate/index.vue index 65b2559..6270458 100644 --- a/Source/UBCS-WEB/src/components/FormTemplate/index.vue +++ b/Source/UBCS-WEB/src/components/FormTemplate/index.vue @@ -17,6 +17,7 @@ :TreeValue="TreeValue" :eventList="eventList" :rowOid="rowOid" + :selectRow="selectRow" :status="status" :templateOid="templateOid" :type="type" @@ -38,8 +39,10 @@ <el-tab-pane v-if="showCodeApply" label="鐮佸�肩敵璇�" name="codeApply"> <FormTemplate key="codeApplyForm" ref="CodeApply" + :selectRow="selectRow" :selfColumnConfig="selfColumnConfig" :selfColumnType="selfColumnType" + :status="status" :type="type" data-key="codeApplyForm" secDTOListv-bind="$attrs" @@ -139,6 +142,10 @@ type: Object, default: () => ({}), }, + selectRow: { + type: Array, + default: [] + } }, data() { return { @@ -241,13 +248,7 @@ }, }, }, - watch: { - codeApplyForm: { - handler(newval, oldval) { - // console.log('newval',newval) - } - } - }, + watch: {}, methods: { openDialog() { //鏂板鍜屼慨鏀瑰叡鍚岃皟鐢�(鏈夋敼鍔� 涓嶉渶瑕佸湪浣跨敤edit锛屾柟娉曟病浠�涔堝奖鍝�) @@ -323,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"; @@ -413,7 +414,7 @@ } }, async submit() { - if(this.status){ + if (this.status) { // 杩涜琛ㄥ崟鏍¢獙 const formValidate = await this.$refs.FormTemplate.validate(); if (!formValidate) return; @@ -492,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