From db2b422bb8d0fef2d95f364db88ded1f2074784a Mon Sep 17 00:00:00 2001 From: haoxuan <haoxuan> Date: 星期一, 08 一月 2024 16:37:35 +0800 Subject: [PATCH] 报价单 新建编辑操作的时候 成本单价调用接口之前的校验修改,不填写不校验,填写了校验大于0的2位小数 --- src/views/client/followupRecords/index.vue | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/client/followupRecords/index.vue b/src/views/client/followupRecords/index.vue index 72a09e5..9a5954e 100644 --- a/src/views/client/followupRecords/index.vue +++ b/src/views/client/followupRecords/index.vue @@ -50,7 +50,7 @@ </div> </div> <!-- 鏂板缓/缂栬緫璺熻繘璁板綍 --> - <AddFollowupRecordsDialog v-if="editConfig.visible" :edit-contacts-config="editConfig" /> + <AddFollowupRecordsDialog :is-detail="isDetail" v-if="editConfig.visible" :edit-contacts-config="editConfig" /> <!-- 鑱旂郴浜鸿鎯� --> <DetailContacts v-if="contactsDeail.visible" :contacts-detail="contactsDeail" /> <!-- 瀹㈡埛璇︽儏 --> @@ -171,7 +171,7 @@ if (this.addConfig.keywordType === "閿�鍞満浼�") { content = this.addConfig.id } else { - content = this.addConfig.common_name + content = this.addConfig.id } this.search_map = { [this.addConfig.id_name]: content @@ -256,7 +256,7 @@ // 鏂板缓 addBtnClick() { this.editConfig.title = "鏂板缓" - this.editConfig.infomation = { ...this.addConfig } + this.editConfig.infomation = { ...this.addConfig ,contact_name:"",sales_leads_name:"",sale_chance_name:""} this.editConfig.visible = true }, // 缂栬緫 -- Gitblit v1.8.0