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 -->