From 6cd2cc813ae2a2514ff30aa97a8fc47becd0c2c4 Mon Sep 17 00:00:00 2001 From: "DESKTOP-GMUNQ1B\\k" <1154079537@qq.com> Date: Tue, 20 Feb 2024 18:11:22 +0800 Subject: [PATCH] =?UTF-8?q?=E9=82=80=E8=AF=B7=E7=A0=81=E6=8E=A5=E5=8F=A3?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2=E5=AF=B9=E6=8E=A5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- api/activity.js | 15 +- pages.json | 6 + pages/users/invite_code/index.vue | 289 ++++++++++++++++++++++++++++++ 3 files changed, 306 insertions(+), 4 deletions(-) create mode 100644 pages/users/invite_code/index.vue diff --git a/api/activity.js b/api/activity.js index 0f17fae..3a59792 100644 --- a/api/activity.js +++ b/api/activity.js @@ -295,10 +295,6 @@ export function storeActivityTotal(data) { return request.get(`storeActivity/total`, data); } -// 生成二维码 -export function storeActivityQrcode(data) { - return request.get(`qrcode`, data); -} // 活动商品专区 export function storeActivityProduct(data) { @@ -311,3 +307,14 @@ export function storeActivityProduct(data) { export function storeActivityDistrict(data) { return request.get(`storeActivity/district`, data); } + +//邀请好友列表 +export function qrcode(data) { + return request.get(`qrcode`, data); +} + + +// 生成二维码 +export function merchantRecord(data) { + return request.get(`merchantRecord`, data); +} diff --git a/pages.json b/pages.json index df00d14..8e38cd9 100644 --- a/pages.json +++ b/pages.json @@ -888,6 +888,12 @@ "navigationBarTitleText": "申请退货" } }, + { + "path": "invite_code/index", + "style": { + "navigationBarTitleText": "邀请码" + } + }, { "path": "login/login_copy", "style": { diff --git a/pages/users/invite_code/index.vue b/pages/users/invite_code/index.vue new file mode 100644 index 0000000..cc3093a --- /dev/null +++ b/pages/users/invite_code/index.vue @@ -0,0 +1,289 @@ + + + + \ No newline at end of file