) => {
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 @@
+
+
+
+