diff --git a/api/appUser.js b/api/appUser.js
index a83da33..c0b7cd3 100644
--- a/api/appUser.js
+++ b/api/appUser.js
@@ -102,6 +102,14 @@ export function cancelShipping(user_id, batch_no) {
return authRequest({ url: `/api/app/users/${user_id}/inventory/cancel-shipping`, method: 'POST', data: { batch_no } })
}
+export function createAddressShare(user_id, inventory_id) {
+ return authRequest({ url: `/api/app/users/${user_id}/inventory/address-share/create`, method: 'POST', data: { inventory_id } })
+}
+
+export function revokeAddressShare(user_id, inventory_id) {
+ return authRequest({ url: `/api/app/users/${user_id}/inventory/address-share/revoke`, method: 'POST', data: { inventory_id } })
+}
+
export function getItemCards(user_id, status, page = 1, page_size = 20) {
const data = { page, page_size }
if (status !== undefined) data.status = status
diff --git a/components/activity/RecordsList.vue b/components/activity/RecordsList.vue
index d69a744..776e538 100644
--- a/components/activity/RecordsList.vue
+++ b/components/activity/RecordsList.vue
@@ -1,15 +1,29 @@
-
-
-
- {{ item.title }}
-
- x{{ item.count }}
-
+
+
+
+
+
+ {{ item.user_name }}
+ {{ formatTime(item.created_at) }}
+
+
+
+
+
+ {{ item.level_name }}
+
+
+ {{ item.title }}
+
+ x1
+
+
+
@@ -23,6 +37,8 @@
diff --git a/pages/address/submit.vue b/pages/address/submit.vue
new file mode 100644
index 0000000..4b471a1
--- /dev/null
+++ b/pages/address/submit.vue
@@ -0,0 +1,210 @@
+
+
+
+
+
+
+ 收货人
+
+
+
+ 手机号码
+
+
+
+ 地区
+
+
+ {{ form.province }} {{ form.city }} {{ form.district }}
+
+ 请选择省市区
+
+
+
+ 详细地址
+
+
+
+
+
+
+
+ * 请确保信息准确,提交后无法修改
+ * 您已登录,提交后该奖品将转移至您的账户下
+ * 您当前未登录,提交后资产仍归属于原发起人
+
+
+
+
+
+
+
diff --git a/pages/cabinet/index.vue b/pages/cabinet/index.vue
index f0b457e..7a408d7 100644
--- a/pages/cabinet/index.vue
+++ b/pages/cabinet/index.vue
@@ -37,6 +37,7 @@
{{ item.name || '未命名道具' }}
单价: ¥{{ item.price }}
+ 邀请填写
x{{ item.count || 1 }}
-
@@ -133,17 +134,44 @@
加载更多...
没有更多了
+
+
+