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 @@
+
+
+
+
+
+
+ shop_{{uid}}
+
+
+
+
+
+
+
+ 长按保存二维码
+
+
+
+
+
+
+
+
+
+ 用户名称
+ 用户ID
+ 采购金额
+ 销售金额
+
+
+
+ {{item.real_name}}
+ {{item.uid}}
+ ¥{{item.buy_amount}}
+ ¥{{item.sale_amount}}
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file