From 9dddf6f5f01a10dca9bf2d7edfa8d56fc24bae83 Mon Sep 17 00:00:00 2001 From: TiaStars Date: Sat, 30 Sep 2023 13:45:50 +0800 Subject: [PATCH] =?UTF-8?q?=E8=AE=A1=E5=88=92=E7=AE=A1=E7=90=86=E4=BF=AE?= =?UTF-8?q?=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/components/dialog/index.vue | 1 + src/views/components/firmDialog/index.vue | 2 +- src/views/components/tempDialog/index.vue | 20 ++++++++-- src/views/yingji/planManage.vue | 47 +++++++++++++---------- 4 files changed, 45 insertions(+), 25 deletions(-) diff --git a/src/views/components/dialog/index.vue b/src/views/components/dialog/index.vue index b299f39..a2dc689 100644 --- a/src/views/components/dialog/index.vue +++ b/src/views/components/dialog/index.vue @@ -421,6 +421,7 @@ export default { selectFirm(){ if(this.$refs.next.innerText == "发布计划"){ this.nextStep = false; + this.filtrate(); this.nextText = "下一步"; this.multipleSelection.map((item)=>{ this.$nextTick(() => { diff --git a/src/views/components/firmDialog/index.vue b/src/views/components/firmDialog/index.vue index acd6e4f..1270a59 100644 --- a/src/views/components/firmDialog/index.vue +++ b/src/views/components/firmDialog/index.vue @@ -450,7 +450,7 @@ export default { for (let key in this.details) { this.listDes.forEach((value1, index1) => { if (key == value1.eng) { - this.listDes[index1].value = this.details[key] == '无' ? '/' : this.details[key]; + this.listDes[index1].value = this.details[key] == '无' ? '/' : this.details[key] == 'true' ? '是' : this.details[key]; return; } }); diff --git a/src/views/components/tempDialog/index.vue b/src/views/components/tempDialog/index.vue index 77826aa..db8a06f 100644 --- a/src/views/components/tempDialog/index.vue +++ b/src/views/components/tempDialog/index.vue @@ -4,7 +4,7 @@ * @Author: JC9527 * @Date: 2023-09-28 11:25:48 * @LastEditors: JC9527 - * @LastEditTime: 2023-09-30 01:07:17 + * @LastEditTime: 2023-09-30 13:40:17 -->