diff --git a/common/api/shop.js b/common/api/shop.js
index bc51f99..325b012 100644
--- a/common/api/shop.js
+++ b/common/api/shop.js
@@ -1,9 +1,12 @@
export default {
init(vm){
return {
- postlogn({id,name}){
- return vm.$u.get('url',{id,name});
- }
+ // 商品推荐
+ getGoodsRecommend({page}){
+ return vm.$u.post('Goods/getGoodsRecommend', {
+ page: page
+ });
+ }
}
}
diff --git a/common/api/user.js b/common/api/user.js
index 4b6dc40..6c60a7e 100644
--- a/common/api/user.js
+++ b/common/api/user.js
@@ -1,12 +1,6 @@
export default {
init(vm){
return {
- phoneRegister({member_mobile, sms_code}) {
- return vm.$u.post('auth/phoneRegister', {
- member_mobile: member_mobile,
- sms_code: sms_code
- });
- },
// 启动页
pageList({document_code}) {
return vm.$u.post('StartUp/pageList', {});
diff --git a/components/remaining/remaining.vue b/components/remaining/remaining.vue
index 858f2a0..799e7f7 100644
--- a/components/remaining/remaining.vue
+++ b/components/remaining/remaining.vue
@@ -1,6 +1,6 @@
-
+
-
+
跳过{{remaining}}
跳过
@@ -20,20 +20,21 @@
- 用户协议
-
- 亲,感谢您对德铭阳光在线的信任!
请注意,在您使用本软件过程中我们会按照《德铭阳光在线隐私保护声明》、《权限声明》 收集、使用和共享您的个人信息,请认真阅读并充分理解。特别提示:
1、为向您提供交易相关基本功能,我们会收集、使用必要的信息;
2、基于您的授权,我们可能会获取您的位置等信息,您有权拒绝或取消授权;
3、我们会采取业界先进的安全措施保护您的信息安全;
4、未经您同意,我们不会从第三方处获取、共享或向其提供您的信息;
5、您可以查询、更正、删除您的个人信息,我们也提供账户注销的渠道。
-
+ {{ agreement.document_title }}
+
+
+
+
我同意
-
-
-
-
-
-
-
+ }
+
diff --git a/components/shop/list/index.vue b/components/shop/list/index.vue
index 4a02a41..9abc1a8 100644
--- a/components/shop/list/index.vue
+++ b/components/shop/list/index.vue
@@ -4,16 +4,11 @@
商品推荐
- asd
- sda
- w3eq
+ 分类名称
+ {{ item.gc_name }}
-
-
-
-
-
+
@@ -23,7 +18,11 @@ export default {
name:"list",
components:{
item
- }
+ },
+ props: {
+ classifyList: Array,
+ goodsList: Array,
+ }
}