From acf78f6ef785df7f5fa15d1ee0fc62c0bbbe74f6 Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期五, 29 十一月 2024 02:37:42 +0800 Subject: [PATCH] 项目计划审批 --- src/views/projectProcess/components/RunProcess.vue | 50 +++++++++++++++++++++++++++++--------------------- 1 files changed, 29 insertions(+), 21 deletions(-) diff --git a/src/views/projectProcess/components/RunProcess.vue b/src/views/projectProcess/components/RunProcess.vue index 24e17a8..ce9d718 100644 --- a/src/views/projectProcess/components/RunProcess.vue +++ b/src/views/projectProcess/components/RunProcess.vue @@ -10,7 +10,7 @@ <div> <div style="display: flex; flex-direction: row; justify-content: center; align-items: center;font-size: 24px"> <div>褰撳墠娴佺▼锛�</div> - <div v-if="nowProcessId">{{nowProcessName}}</div> + <div v-if="nowProcessId">{{selectProcessName}}</div> <div v-else>鏈粦瀹氭祦绋�</div> </div> </div> @@ -74,7 +74,7 @@ </el-table> </div> <span slot="footer" class="dialog-footer"> - <el-button type="danger" @click="startProcess">鍚姩</el-button> + <el-button type="danger" @click="startProcess" :disable="!this.selectProcessId">鍚姩娴佺▼</el-button> <el-button type="primary" @click="changeProcess">鍙樻洿</el-button> </span> </el-dialog> @@ -82,7 +82,7 @@ </template> <script> -import {projectSetProcess} from "@/api/projectProcess/projectProcess"; +import {projectSetProcess, startProcess} from "@/api/projectProcess/projectProcess"; export default { dicts: ['sys_project_type', 'sys_funding_type', 'sys_investment_type', 'sys_key_categories'], @@ -103,48 +103,54 @@ nowProcessId: { // 褰撳墠椤圭洰缁戝畾鐨勬祦绋媔d required: true, type: String - }, - nowProcessName: { - required: true, - type: String } }, watch: { // 鐩戝惉鍥炴樉鍊� - nowProcessId(newVal, oldVal) { - console.log("浼犲叆鍊硷細", newVal, this.processList) - this.processList.forEach((item,index) => { - console.log(item.id, newVal, item.id === newVal) - if(item.id === newVal){ - console.log("wwwwwww") - this.selectProcessId = newVal - this.$nextTick(() => { - this.$refs.myTable.toggleRowSelection(item); - }) - } - }) + projectInfo: { + handler(newVal, oldVal) { + console.log("浼犲叆鍊硷細", newVal, this.processList) + this.setSelect(this.nowProcessId) + }, + deep: true } }, data() { return { selectProcessId: '', // 缁勪欢鍐呴儴閫変腑鐨勬祦绋媔d + selectProcessName: '', // 缁勪欢鍐呴儴閫変腑鐨勬祦绋媔d } }, methods: { + setSelect(value) { + console.log("璋冪敤鍊硷細", value) + this.processList.forEach((item,index) => { + console.log(item.id, value, item.id === value) + if(item.id === value){ + this.selectProcessName = item.name + this.$nextTick(() => { + this.$refs.myTable.toggleRowSelection(item); + }) + } + }) + }, // 瀹炵幇el-table鍗曢�� handleSelectionChange(val) { console.log(val, "閫変腑") if (val.length > 1) { this.$refs.myTable.clearSelection(); - this.$refs.myTable.toggleRowSelection(val.pop()); + this.$refs.myTable.toggleRowSelection(val[val.length - 1]); } if(val.length != 0){ this.selectProcessId = val[val.length - 1].id; + console.log("閫変腑id锛�", this.selectProcessId) } }, // 鍚姩娴佺▼ startProcess() { - + startProcess(this.projectInfo.projectId, this.selectProcessId).then(res => { + this.$message.success(res.msg); + }) }, // 鍙樻洿娴佺▼ changeProcess() { @@ -162,6 +168,8 @@ }) }, handleClose() { + this.selectProcessId = "" + this.selectProcessName = "" this.$emit("close") } } -- Gitblit v1.8.0