diff --git a/pages/integralmall/payIntegcouponStatus/index.wxss b/pages/integralmall/payIntegcouponStatus/index.wxss
index 70c9528..070ffeb 100644
--- a/pages/integralmall/payIntegcouponStatus/index.wxss
+++ b/pages/integralmall/payIntegcouponStatus/index.wxss
@@ -8,7 +8,7 @@ page{
font-size:40rpx;
font-family:PingFang-SC-Bold;
font-weight:bold;
- color:rgba(51,51,51,1);
+ color:#FD782D;
line-height:50rpx;
margin: 70rpx auto;
}
@@ -23,7 +23,7 @@ page{
}
.c-left{
width: 160rpx;
- padding-left: 20rpx;
+ padding-left: 40rpx;
height: auto;
float: left;
box-sizing: border-box;
@@ -36,6 +36,7 @@ page{
width: 510rpx;
float: left;
line-height: 120rpx;
+ color: #3C3C3C;
}
.detail-text{
font-size:30rpx;
@@ -49,23 +50,23 @@ page{
padding-left: 30rpx;
line-height: 40rpx;
margin-top: 10rpx;
- color:rgba(85,85,85,1);
+ color:#A6A6A6;
}
.button01{
- width:710rpx;
+ width:456rpx;
height:94rpx;
line-height: 94rpx;
background:linear-gradient(127deg,rgba(252,177,74,1) 0%,rgba(254,70,20,1) 100%);
- border-radius:10rpx;
+ border-radius:32rpx;
color: #fff;
- margin-top: 120rpx;
+ margin-top: 100rpx;
}
.button02{
- width:710rpx;
+ width:456rpx;
height:94rpx;
line-height: 94rpx;
- background:linear-gradient(130deg,rgba(50,177,252,1) 0%,rgba(47,108,255,1) 100%);
- border-radius:10rpx;
+ background:#E1E1E1;
+ border-radius:32rpx;
color: #fff;
margin-top: 30rpx;
}
\ No newline at end of file
diff --git a/pages/radetail/index.wxml b/pages/radetail/index.wxml
index 63e6a02..70dd844 100644
--- a/pages/radetail/index.wxml
+++ b/pages/radetail/index.wxml
@@ -25,7 +25,7 @@
1、活动人数:{{data.personLimit}}人
- 消耗积分:{{data.credit}} 积分
+ 消耗积分:{{data.credit}} 积分
2、报名有效日期
{{startTime}}--{{endTime}}
diff --git a/pages/radetail/success/index.js b/pages/radetail/success/index.js
index c360108..8bc3ecf 100644
--- a/pages/radetail/success/index.js
+++ b/pages/radetail/success/index.js
@@ -2,11 +2,13 @@ const navigationBarHeight = (getApp().statusBarHeight + 44) + 'px'
const util = require("../../../utils/util.js");
const Http = require("../../../utils/HttpBasics");
const config = require("../../../config/config");
+const imgurl = require("../../../utils/imgurl");
Page({
/**
* 页面的初始数据
*/
data: {
+ chenghr: imgurl.chenghr.url,
navigationBarHeight,
date: '1988-03-12',
flag: 1,
diff --git a/pages/radetail/success/index.wxml b/pages/radetail/success/index.wxml
index a9bcd89..05fa868 100644
--- a/pages/radetail/success/index.wxml
+++ b/pages/radetail/success/index.wxml
@@ -2,16 +2,17 @@
您已扣除{{credit}}积分
- 报名成功
+
+ 恭喜报名成功
请您在我的活动中查看您的报名状态
-
+
\ No newline at end of file
diff --git a/pages/radetail/success/index.wxss b/pages/radetail/success/index.wxss
index 9c08661..c6bb1d2 100644
--- a/pages/radetail/success/index.wxss
+++ b/pages/radetail/success/index.wxss
@@ -3,12 +3,15 @@
text-align: center;
}
.tit{
- font-size: 40rpx;
+ font-size: 32rpx;
font-weight:bold;
+ color: #3C3C3C;
+
}
.mess{
- margin-top: 40rpx;
+ margin-top: 24rpx;
font-size: 30rpx;
+ color: #A6A6A6;
}
.fl{
float: left;
@@ -17,13 +20,12 @@
float: right;
}
.title{
- font-size:30rpx;
- border:1px solid #999;
+ font-size:28rpx;
width:400rpx;
- margin:30rpx auto;
+ margin:40rpx auto;
border-radius:10rpx;
text-align:center;
- color:#999;
+ color:#FD782D;
padding: 8rpx 0;
}
@@ -32,24 +34,27 @@
padding-top: 37rpx;
z-index: 100;
background: #fff;
- width: 625rpx;
margin:100rpx auto 0;
+ display: flex;
+ flex-direction: column;
}
-.success{
- margin-top: 200rpx;
+.success image{
+ height: 108rpx;
+ width: 108rpx;
+ margin: 0 auto;
+ display: block;
}
.btns > button {
- width: 277rpx;
+ width: 456rpx;
height: 95rpx;
- border-radius: 10rpx;
+ border-radius: 32rpx;
text-align: center;
}
.btns .fl {
- margin-left: 20rpx;
color: #fff;
- background: linear-gradient(90deg,rgba(40,179,255,1) 0%,rgba(48,103,255,1) 100%);
- /* box-shadow: 0px 8px 8px 1px rgba(255, 169, 2, 0.32); */
+ background: #E1E1E1;
+ margin-top: 20rpx;
}
.btns .fl text {
@@ -65,8 +70,6 @@
.btns .fr {
font-size: 30rpx;
color: #fff;
- margin-right: 20rpx;
line-height: 95rpx;
background: linear-gradient(127deg,rgba(252,177,74,1) 0%,rgba(254,70,20,1) 100%);
- /* box-shadow: 0px 8px 8px 1px rgba(246, 93, 51, 0.32); */
}
\ No newline at end of file
diff --git a/utils/imgurl.js b/utils/imgurl.js
index 9d4cad3..1abe381 100644
--- a/utils/imgurl.js
+++ b/utils/imgurl.js
@@ -709,5 +709,9 @@ module.exports = {
'url': baseUrl + "chenggong.png",
'name': ''
},
+ 'chenghr': {
+ 'url': baseUrl + "chenghr.png",
+ 'name': ''
+ },
}
\ No newline at end of file