diff --git a/src/views/custom_contacts/index.vue b/src/views/custom_contacts/index.vue
index cdb0703..dd19210 100644
--- a/src/views/custom_contacts/index.vue
+++ b/src/views/custom_contacts/index.vue
@@ -2,6 +2,9 @@
+
+
+
@@ -21,7 +24,8 @@
新增
-
+
删除
@@ -30,6 +34,7 @@
+
@@ -39,10 +44,12 @@
-
+
编辑
-
+
删除
@@ -78,6 +85,7 @@ const showDtail = ref(false)
// 查询条件
const queryParams = reactive({
custom_id: '',
+ custom_name: '',
name: '',
position: '',
phone: '',
diff --git a/src/views/custom_follow/detail.vue b/src/views/custom_follow/detail.vue
index 65c47e7..43653d0 100644
--- a/src/views/custom_follow/detail.vue
+++ b/src/views/custom_follow/detail.vue
@@ -4,22 +4,30 @@
- {{ formData.name }}
- {{ formData.custom_name }}
- {{ formData.contacts }}
+ {{
+ formData.name }}
+ {{
+ formData.custom_name }}
+ {{
+ formData.custom_master_name }}
{{ formData.date }}
-
- {{ formData.executor }}
- {{ formData.description }}
+
+ {{
+ formData.executor }}
+ {{
+ formData.description }}
- {{ formData.next_follow_date }}
+ {{
+ formData.next_follow_date }}
- 文件{{ index + 1 }}查看
+ 文件{{ index + 1 }}查看
diff --git a/src/views/custom_follow/edit.vue b/src/views/custom_follow/edit.vue
index 4d9c476..dc78e25 100644
--- a/src/views/custom_follow/edit.vue
+++ b/src/views/custom_follow/edit.vue
@@ -8,8 +8,8 @@
-
-
+
+
) => {
const customEvent = (e: any) => {
formData.custom_id = e.id;
formData.custom_name = e.name;
+ formData.custom_master_name = e.master_name;
showDialog.value = false;
};
diff --git a/src/views/custom_follow/index.vue b/src/views/custom_follow/index.vue
index da33a3d..5d9184e 100644
--- a/src/views/custom_follow/index.vue
+++ b/src/views/custom_follow/index.vue
@@ -3,9 +3,18 @@
+
+
+
+
+
+
+
+
+
@@ -36,8 +45,9 @@
+
-
+
@@ -148,7 +158,10 @@ const list = reactive([
// 查询条件
const queryParams = reactive({
custom_id: '',
+ name: '',
+ custom_name: '',
contacts: '',
+ executor: '',
date: '',
types: '',
admin_id: '',
diff --git a/src/views/custom_service/edit.vue b/src/views/custom_service/edit.vue
index e89e90a..046850d 100644
--- a/src/views/custom_service/edit.vue
+++ b/src/views/custom_service/edit.vue
@@ -2,14 +2,6 @@