From 005dc9ead1364f22fb23fc3015c0eaded9b2e8c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=94=90=E6=98=8E=E6=98=8E?= <970899069@qq.com>
Date: Mon, 27 Sep 2021 17:02:48 +0800
Subject: [PATCH 1/4] =?UTF-8?q?=E8=B0=83=E6=95=B4=E5=8F=91=E5=B8=83?=
=?UTF-8?q?=E4=BC=98=E6=83=A0=E5=88=B8=E6=A0=B7=E5=BC=8F?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/coupons/add.vue | 42 +-----
store/index.js | 9 +-
.../uni-number-box/uni-number-box.vue | 140 +++++++-----------
3 files changed, 71 insertions(+), 120 deletions(-)
diff --git a/pages/coupons/add.vue b/pages/coupons/add.vue
index 41871a0..8cc8f02 100644
--- a/pages/coupons/add.vue
+++ b/pages/coupons/add.vue
@@ -1,5 +1,5 @@
-
+
@@ -79,7 +79,7 @@
{{datePickerValue.length == 0 ? '选择优惠券有效期区间': datePickerValue[0] + ' 至 ' + datePickerValue[1]}}
-
+
@@ -89,7 +89,7 @@
-
+
已关联{{coupongoods.length}}件商品
选择关联商品
@@ -100,9 +100,9 @@
-
-
-
+
+
+
@@ -116,6 +116,7 @@
},
data() {
return {
+ loding : true,
typeIndex : 0,
types : [
{ id: 1, text: '服务券' },
@@ -235,35 +236,6 @@
From 75037949a734061f68819282d86cefc60d2cacca Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E5=94=90=E6=98=8E=E6=98=8E?= <970899069@qq.com>
Date: Mon, 27 Sep 2021 17:31:38 +0800
Subject: [PATCH 2/4] =?UTF-8?q?=E8=B0=83=E6=95=B4=E8=BD=AC=E8=B7=B3?=
=?UTF-8?q?=E8=B7=AF=E7=94=B1?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
pages/coupons/add.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/pages/coupons/add.vue b/pages/coupons/add.vue
index 8cc8f02..8d9b540 100644
--- a/pages/coupons/add.vue
+++ b/pages/coupons/add.vue
@@ -191,7 +191,7 @@
},
// 选择关联商品
onSelectGoods(){
- this.$Router.push({name: 'selectGoods', params: {type: this.types[this.typeIndex].id}})
+ this.$Router.push({name: 'couponsSelectGoods', params: {type: this.types[this.typeIndex].id}})
},
// 发布优惠券
updComponent(){
From 04197b12ebeaf0c503c6bd405e9d5e67ab507a96 Mon Sep 17 00:00:00 2001
From: zhangdongxue
Date: Tue, 28 Sep 2021 10:33:54 +0800
Subject: [PATCH 3/4] =?UTF-8?q?[/=E7=99=BB=E5=BD=95l=E5=BC=95=E5=AF=BC?=
=?UTF-8?q?=E9=A1=B5=E9=9D=A2/]?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
manifest.json | 7 ++-
pages.json | 6 +++
pages/login/guide.vue | 120 ++++++++++++++++++++++++++++++++++++++++++
pages/login/login.vue | 4 +-
4 files changed, 134 insertions(+), 3 deletions(-)
create mode 100644 pages/login/guide.vue
diff --git a/manifest.json b/manifest.json
index 3bd459f..30b1c92 100644
--- a/manifest.json
+++ b/manifest.json
@@ -68,5 +68,10 @@
"uniStatistics" : {
"enable" : false
},
- "vueVersion" : "2"
+ "vueVersion" : "2",
+ "h5" : {
+ "router" : {
+ "mode" : "history"
+ }
+ }
}
diff --git a/pages.json b/pages.json
index f0e7595..2429d50 100644
--- a/pages.json
+++ b/pages.json
@@ -134,6 +134,12 @@
"style": {
"navigationBarTitleText": "登录"
}
+ }, {
+ "path": "pages/login/guide",
+ "name": "loginGuide",
+ "style": {
+ "navigationBarTitleText": "引导页"
+ }
}, {
"path": "pages/certification/personal",
"name": "Personal",
diff --git a/pages/login/guide.vue b/pages/login/guide.vue
new file mode 100644
index 0000000..3617dd4
--- /dev/null
+++ b/pages/login/guide.vue
@@ -0,0 +1,120 @@
+
+
+
+
+
+ 链商星球(中国)
+
+
+
+
+
+ 企业链
+ 从星煌开始
+
+
+
+
+
+
+
+
diff --git a/pages/login/login.vue b/pages/login/login.vue
index eedf1c9..e0072be 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -210,7 +210,7 @@
}
.btn {
- background: $mian-color;
+ background-image: linear-gradient(to bottom,#bf52eb,#8f32dd);
color: white;
border-radius: 0;
margin-top: $margin;
@@ -224,7 +224,7 @@
}
&[disabled] {
- background: rgba($color: $mian-color, $alpha: .6);
+ background: rgba($color: #8f32dd, $alpha: .6);
}
}
From 1e1409f14e485939bb0a6d80e65119d65d4e6a1c Mon Sep 17 00:00:00 2001
From: zhangdongxue
Date: Tue, 28 Sep 2021 10:47:51 +0800
Subject: [PATCH 4/4] =?UTF-8?q?[=E7=94=A8=E6=88=B7=E9=9A=90=E7=A7=81?=
=?UTF-8?q?=E5=8D=8F=E8=AE=AE=E5=92=8C=E6=9C=8D=E5=8A=A1=E5=8D=8F=E8=AE=AE?=
=?UTF-8?q?=E6=96=B0=E5=A2=9E=E5=8F=8A=E6=8E=A5=E5=8F=A3]?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
apis/interfaces/auth.js | 12 +++++++-
pages.json | 6 ++++
pages/login/agreement.vue | 59 +++++++++++++++++++++++++++++++++++++++
pages/login/login.vue | 2 +-
4 files changed, 77 insertions(+), 2 deletions(-)
create mode 100644 pages/login/agreement.vue
diff --git a/apis/interfaces/auth.js b/apis/interfaces/auth.js
index 48ee742..87e2023 100644
--- a/apis/interfaces/auth.js
+++ b/apis/interfaces/auth.js
@@ -26,7 +26,17 @@ const getSms = (data) =>{
})
}
+// 用户隐私协议 articles/agreement/secret 用户服务协议 articles/agreement/service
+
+const secretService = (name) =>{
+ return request({
+ url: "articles/agreement/"+name
+ })
+}
+
+
export {
smsAuth,
- getSms
+ getSms,
+ secretService
}
diff --git a/pages.json b/pages.json
index 2429d50..a70a75b 100644
--- a/pages.json
+++ b/pages.json
@@ -140,6 +140,12 @@
"style": {
"navigationBarTitleText": "引导页"
}
+ }, {
+ "path": "pages/login/agreement",
+ "name": "agreement",
+ "style": {
+ "navigationBarTitleText": "用户隐藏协议"
+ }
}, {
"path": "pages/certification/personal",
"name": "Personal",
diff --git a/pages/login/agreement.vue b/pages/login/agreement.vue
new file mode 100644
index 0000000..8d493c2
--- /dev/null
+++ b/pages/login/agreement.vue
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pages/login/login.vue b/pages/login/login.vue
index e0072be..22376df 100644
--- a/pages/login/login.vue
+++ b/pages/login/login.vue
@@ -26,7 +26,7 @@
- 未注册的手机号验证后将自动创建账号,登录即表示同意接收用户隐私规格和用户服务协议
+ 未注册的手机号验证后将自动创建账号,登录即表示同意接收用户隐私协议和用户服务协议