From bd1622212d993b565284689a4dbc97552a24bfe7 Mon Sep 17 00:00:00 2001 From: liutong <836164388@qq.com> Date: Mon, 14 Apr 2025 17:48:12 +0800 Subject: [PATCH] =?UTF-8?q?feat(market):=20=E6=B7=BB=E5=8A=A0=E5=AE=A2?= =?UTF-8?q?=E6=88=B7=E8=AF=A6=E6=83=85=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在 api/market.js 中新增 clientInfo 方法获取客户详情- 创建 pages/market/clue/clue_info.vue 页面展示客户详情- 在 pages/market/clue/index.vue 中添加跳转到客户详情页面的功能 --- api/market.js | 10 + pages/market/clue/clue_info.vue | 691 +++++++++++++++++--------------- pages/market/clue/index.vue | 20 +- 3 files changed, 391 insertions(+), 330 deletions(-) diff --git a/api/market.js b/api/market.js index 81d1d66..c2fe48f 100644 --- a/api/market.js +++ b/api/market.js @@ -67,6 +67,16 @@ export default { }) }, + //客户详情 + clientInfo(data={}) { + let url = '/member/client_info' + return http.get(url, data).then(res => { + return res; + }) + }, + + + } \ No newline at end of file diff --git a/pages/market/clue/clue_info.vue b/pages/market/clue/clue_info.vue index 2c33052..cba8043 100644 --- a/pages/market/clue/clue_info.vue +++ b/pages/market/clue/clue_info.vue @@ -1,338 +1,385 @@ - +