From d0da41eeb630fa96f53bfd33f65463b01711c515 Mon Sep 17 00:00:00 2001 From: zmj <1493694146@qq.com> Date: Mon, 13 Nov 2023 16:52:49 +0800 Subject: [PATCH] =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/custom/edit.vue | 87 +- src/views/custom/index.vue | 12 +- src/views/custom_contacts/edit.vue | 51 +- src/views/custom_contacts/index.vue | 5 +- src/views/custom_follow/edit.vue | 44 +- yarn.lock | 6476 +++++++++++++-------------- 6 files changed, 3411 insertions(+), 3264 deletions(-) diff --git a/src/views/custom/edit.vue b/src/views/custom/edit.vue index 909b9b4..179cd56 100644 --- a/src/views/custom/edit.vue +++ b/src/views/custom/edit.vue @@ -21,7 +21,7 @@ - @@ -83,6 +83,8 @@ + +
主要负责人
@@ -130,7 +132,47 @@
+ +
其他联系人
+ + + + + 添加联系人 + 删除 + + + + +
开票信息
@@ -221,7 +263,7 @@ const formData = reactive({ id: '', name: '', custom_type: '', - parent_company: '', + parent_company: 5565665, phone: '', credit_rating: '', province: '', @@ -242,6 +284,9 @@ const formData = reactive({ bank_name: '', bank_account: '', status: '', + other_contacts: [], + area: "" + }) @@ -257,8 +302,17 @@ const setFormData = async (data: Record) => { if (data[key] != null && data[key] != undefined) { //@ts-ignore formData[key] = data[key] + + if (key == 'province') { + await getCityList() + } + if (key == 'city') { + await getAreaList() + } } + } + console.log(formData) } @@ -295,10 +349,10 @@ const handleClose = () => { //获取省份 -function province_change (value: string) { +function province_change(value: string) { getCityList(); } -function city_change (value: string) { +function city_change(value: string) { getAreaList(); } @@ -315,10 +369,31 @@ const getCityList = async () => { }; const getAreaList = async () => { const data = await apiAreaList({ area: formData.city }); - datas["areaOptions"] = data; -}; + datas["areaOptions"] = data; + console.log(datas["areaOptions"]) + +}; +//增加其他联系人 +function other() { + formData.other_contacts.push({ + name: "", + position: "", + phone: "", + email: "", + }); +} +//删除其他联系人 +function otherdelete() { + formData.other_contacts.pop({ + name: "", + position: "", + phone: "", + email: "", + }); +} + getProvinceList(); diff --git a/src/views/custom/index.vue b/src/views/custom/index.vue index 78a0f9e..0d72d9a 100644 --- a/src/views/custom/index.vue +++ b/src/views/custom/index.vue @@ -34,6 +34,8 @@ 删除
+ + @@ -62,6 +64,10 @@ + + + +
@@ -74,7 +80,7 @@