From 2aabff2e90beae402d46a84f311e1ac9f9f9efc7 Mon Sep 17 00:00:00 2001 From: zcx <377075991@qq.com> Date: Mon, 4 Dec 2023 11:32:54 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=96=E9=9F=B3=E5=90=8C=E6=AD=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/views/index.vue | 24 +- src/views/login.vue | 9 +- src/views/system/config/index.vue | 6 +- src/views/zs/clue/ClueForm/index.vue | 7 +- src/views/zs/clue/columns.js | 8 + .../zs/clue/components/DistributeDialog.vue | 134 +++++++++ .../clue/components/DistributeFormDialog.vue | 193 ++++--------- .../zs/clue/components/FeedbackDialog.vue | 53 ++++ .../zs/clue/components/InvitationDialog.vue | 117 ++++++++ .../clue/components/InvitationFormDialog.vue | 254 ++++++++++-------- src/views/zs/clue/components/SearchForm.vue | 5 +- src/views/zs/clue/index.vue | 159 ++++++----- src/views/zs/feedback/arrival.vue | 12 +- src/views/zs/feedback/follow.vue | 14 +- 14 files changed, 641 insertions(+), 354 deletions(-) create mode 100644 src/views/zs/clue/components/DistributeDialog.vue create mode 100644 src/views/zs/clue/components/FeedbackDialog.vue create mode 100644 src/views/zs/clue/components/InvitationDialog.vue diff --git a/src/views/index.vue b/src/views/index.vue index af8a7e1..1bf0d8b 100644 --- a/src/views/index.vue +++ b/src/views/index.vue @@ -14,7 +14,7 @@ --> - + - +
团队业绩概况
@@ -50,7 +50,7 @@ - +
转化率
@@ -86,7 +86,7 @@ --> - + @@ -236,12 +236,12 @@ export default { this.user = response.data }) }, - getCheckin() { - getCheckin().then((resp) => { - this.checkin_datas = resp.data - this.countNum = Math.ceil(this.checkin_datas.length / 5) - }) - }, + // getCheckin() { + // getCheckin().then((resp) => { + // this.checkin_datas = resp.data + // this.countNum = Math.ceil(this.checkin_datas.length / 5) + // }) + // }, handleEditTask(type) { this.taskType = type if (type === 2) { diff --git a/src/views/login.vue b/src/views/login.vue index c969032..20b7801 100644 --- a/src/views/login.vue +++ b/src/views/login.vue @@ -4,15 +4,14 @@

开心学车管理系统

- + - - +
- +
@@ -91,7 +90,7 @@ export default { var obj = new WxLogin({ self_redirect: true, id: "wxcode", // 页面显示二维码的容器id - appid: "wx203f734baa9c9845", // 微信官方提供的测试id + appid: "wxc9e106a4afd2b9dd", // 微信官方提供的测试id scope: "snsapi_login", redirect_uri: "https://xueche.ahduima.com/login", // 微信官方中的测试地址 state: "bind", diff --git a/src/views/system/config/index.vue b/src/views/system/config/index.vue index c5efb3a..27f8ca0 100644 --- a/src/views/system/config/index.vue +++ b/src/views/system/config/index.vue @@ -21,7 +21,7 @@ - + @@ -60,7 +60,7 @@ diff --git a/src/views/zs/clue/ClueForm/index.vue b/src/views/zs/clue/ClueForm/index.vue index 63f1f69..97376ec 100644 --- a/src/views/zs/clue/ClueForm/index.vue +++ b/src/views/zs/clue/ClueForm/index.vue @@ -81,6 +81,11 @@ + + + + + @@ -116,7 +121,7 @@ - + diff --git a/src/views/zs/clue/columns.js b/src/views/zs/clue/columns.js index 454b934..9b58a2b 100644 --- a/src/views/zs/clue/columns.js +++ b/src/views/zs/clue/columns.js @@ -140,5 +140,13 @@ export const defaultColumns = [{ width: 140, visible: true, overflow: true +},{ + key: 18, + prop: 'intentionAccountAddress', + label: '门店地址', + width: 140, + visible: true, + overflow: true } + ]; diff --git a/src/views/zs/clue/components/DistributeDialog.vue b/src/views/zs/clue/components/DistributeDialog.vue new file mode 100644 index 0000000..a699bea --- /dev/null +++ b/src/views/zs/clue/components/DistributeDialog.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/views/zs/clue/components/DistributeFormDialog.vue b/src/views/zs/clue/components/DistributeFormDialog.vue index 0af3f2c..fffd037 100644 --- a/src/views/zs/clue/components/DistributeFormDialog.vue +++ b/src/views/zs/clue/components/DistributeFormDialog.vue @@ -1,35 +1,12 @@ + + \ No newline at end of file diff --git a/src/views/zs/clue/components/InvitationDialog.vue b/src/views/zs/clue/components/InvitationDialog.vue new file mode 100644 index 0000000..a7916ce --- /dev/null +++ b/src/views/zs/clue/components/InvitationDialog.vue @@ -0,0 +1,117 @@ + + + + + + \ No newline at end of file diff --git a/src/views/zs/clue/components/InvitationFormDialog.vue b/src/views/zs/clue/components/InvitationFormDialog.vue index 9cbc5a8..8e2e12c 100644 --- a/src/views/zs/clue/components/InvitationFormDialog.vue +++ b/src/views/zs/clue/components/InvitationFormDialog.vue @@ -1,119 +1,132 @@ - + } +}; + + + \ No newline at end of file diff --git a/src/views/zs/clue/components/SearchForm.vue b/src/views/zs/clue/components/SearchForm.vue index 849c46b..9e3109b 100644 --- a/src/views/zs/clue/components/SearchForm.vue +++ b/src/views/zs/clue/components/SearchForm.vue @@ -79,8 +79,9 @@ export default { { value: 1, label: '待分发' }, { value: 2, label: '待跟进' }, { value: 3, label: '待到场' }, - { value: 4, label: '已到场' } - ], + { value: 4, label: '未到场' }, + { value: 5, label: '到场未成交' }, + { value: 6, label: '到场已成交' }] }; }, watch: { diff --git a/src/views/zs/clue/index.vue b/src/views/zs/clue/index.vue index f36f119..ebaf0a1 100644 --- a/src/views/zs/clue/index.vue +++ b/src/views/zs/clue/index.vue @@ -1,17 +1,24 @@