From 336eb77c1a07ca3e3ead4482b51f848fa16ab3b7 Mon Sep 17 00:00:00 2001 From: xiejun <xj@2023> Date: 星期日, 12 十一月 2023 20:15:38 +0800 Subject: [PATCH] 自定义流水相关开发 --- Source/UBCS-WEB/src/views/docking/infoForm.vue | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Source/UBCS-WEB/src/views/docking/infoForm.vue b/Source/UBCS-WEB/src/views/docking/infoForm.vue index e98d4fd..d8f88c9 100644 --- a/Source/UBCS-WEB/src/views/docking/infoForm.vue +++ b/Source/UBCS-WEB/src/views/docking/infoForm.vue @@ -31,6 +31,7 @@ <div v-if="formData.dataFlowType=='push'"> <el-form-item label="鍒嗙被閫夋嫨" prop="classifyName"> <vciWebRefer + key="classifyName" data-key="classifyName" :referConfig="{ title: '鍒嗙被閫夋嫨', showField: 'classifyName', @@ -48,6 +49,7 @@ </el-form-item> <el-form-item label="闆嗘垚绯荤粺" prop="targetSystemName"> <vciWebRefer + key="targetSystemName" data-key="targetSystemName" :referConfig="{ title: '闆嗘垚绯荤粺', showField: 'targetSystemName', @@ -69,6 +71,7 @@ <!-- </el-form-item>--> <el-form-item label="鍒嗙被閫夋嫨" prop="classifyName" v-if="formData.pushType !='5' && formData.pushType !='6'"> <vciWebRefer + key="classifyName" data-key="classifyName" :referConfig="{ title: '鍒嗙被閫夋嫨', showField: 'classifyName', @@ -86,6 +89,7 @@ </el-form-item> <el-form-item label="闆嗘垚绯荤粺" prop="sourceSystemName"> <vciWebRefer + key="sourceSystemName" data-key="sourceSystemName" :referConfig="{ title: '闆嗘垚绯荤粺', showField: 'sourceSystemName', @@ -203,7 +207,6 @@ </el-form> <div slot="footer" class="dialog-footer"> <el-button type="primary" @click="submitAttribute">纭畾</el-button> - <el-button @click="cancelSubmit">鍙栨秷</el-button> </div> </el-dialog> @@ -230,6 +233,7 @@ components: { vciWebRefer }, data() { return { + referUrl:'/api/ubcs-code/dockingManagement/gridDockingSystem', showSubmitDialog: false, //鎺ュ彛绫诲瀷涓嬫媺 interfaceTypeList: [{ @@ -394,7 +398,7 @@ watch:{ formData: { handler(newval, oldval) { - console.log(newval) + // console.log(newval) if (newval && newval.type === 'edit') { if (this.formData.dataFlowType == 'accept') { this.pushTypeList = [ @@ -545,7 +549,7 @@ }) this.$nextTick(function (){ if(pass){ - that.formData.sysIntParamDTOs=this.formData.sysIntParamVOs.map(item=>{ + that.formData.sysIntParamDTOS=this.formData.sysIntParamVOs.map(item=>{ return { ...item, ordernNo:item.$index @@ -559,7 +563,7 @@ }) const apiCall = that.formData.type == 'edit' ? edit : add; const Message = that.formData.type == 'edit' ? "淇敼鎴愬姛" : "淇濆瓨鎴愬姛"; - console.log( that.formData) + // console.log( that.formData) apiCall(that.formData).then(res => { that.$message.success(Message); that.showSubmitDialog = false; -- Gitblit v1.9.3