diff --git a/common/api/user.js b/common/api/user.js
index d4de83e..5fae7e1 100644
--- a/common/api/user.js
+++ b/common/api/user.js
@@ -81,7 +81,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 ca8983d..df3052b 100644
--- a/components/mine/address-active/index.vue
+++ b/components/mine/address-active/index.vue
@@ -22,7 +22,7 @@
保存地址
-
+