From bf5691b68a34c2093063d6acd154659907333693 Mon Sep 17 00:00:00 2001
From: ghusermoon <2673031505@qq.com>
Date: Tue, 23 Jun 2020 09:00:04 +0800
Subject: [PATCH] 6.22
---
common/api/user.js | 15 ++++++++-
components/mine/address-active/index.vue | 2 +-
pageE/tool/Manicure.vue | 41 +++++++++++++++++++-----
pageE/tool/ManicureOrder.vue | 8 +++++
4 files changed, 56 insertions(+), 10 deletions(-)
diff --git a/common/api/user.js b/common/api/user.js
index f2f9ecc..79ed564 100644
--- a/common/api/user.js
+++ b/common/api/user.js
@@ -77,7 +77,20 @@ export default {
// 用户收货地址列表
getAddressList() {
return vm.$u.post('MemberAddress/addressList');
- }
+ },
+ // 美甲
+ getManicureList({ page }) {
+ return vm.$u.post('MemberManicure/getManicureList', {
+ page: page
+ });
+ },
+ // 美甲-提交订单
+ addManicure({ name, time }) {
+ return vm.$u.post('MemberManicure/addManicure', {
+ name: name,
+ time: time
+ });
+ },
}
}
}
\ No newline at end of file
diff --git a/components/mine/address-active/index.vue b/components/mine/address-active/index.vue
index df3052b..ca8983d 100644
--- a/components/mine/address-active/index.vue
+++ b/components/mine/address-active/index.vue
@@ -22,7 +22,7 @@
保存地址
-
+