diff --git a/pages/companyList/companyList.wxss b/pages/companyList/companyList.wxss
index 4768dc4..09d1839 100644
--- a/pages/companyList/companyList.wxss
+++ b/pages/companyList/companyList.wxss
@@ -73,14 +73,15 @@ page {
/* 新建企业 */
.create-company {
width: 100%;
- position: relative;
- height: 80rpx;
+ position: fixed;
+ height: 100rpx;
line-height: 50rpx;
text-align: center;
border-top: 1px solid #eee;
- padding: 20rpx;
+ padding: 20rpx 20rpx 40rpx 20px;
box-sizing: border-box;
bottom: 0;
+ background-color: #fff;
}
.bg-f5 {
background-color: #f5f5f5;
diff --git a/pages/home/home.wxml b/pages/home/home.wxml
index cc0b0a2..683a544 100644
--- a/pages/home/home.wxml
+++ b/pages/home/home.wxml
@@ -78,12 +78,19 @@
{{clickItem.currentTarget.dataset.message.titile_dictText}}
- 去报名
-
\ No newline at end of file
diff --git a/pages/home/home.wxss b/pages/home/home.wxss
index 6fbb9cc..6a5bb39 100644
--- a/pages/home/home.wxss
+++ b/pages/home/home.wxss
@@ -195,6 +195,24 @@ page{
text-align: center;
border-right: 1px solid #dedede;
}
+.btn-cancel-meeting {
+ width: 45%;
+ color: #fff;
+ border-radius: 10rpx;
+ background: #069F99;
+ text-align: center;
+ float: left;
+ border-right: 1px solid #dedede;
+}
+.sing-up-meeting {
+ width: 45%;
+ color: #000;
+ border-radius: 10rpx;
+ /* background: #069F99; */
+ float: right;
+ text-align: center;
+ border: 1px solid #dedede;
+}
.modal-img {
position: relative;
}
\ No newline at end of file
diff --git a/pages/login/login.js b/pages/login/login.js
index 321b524..313afb8 100644
--- a/pages/login/login.js
+++ b/pages/login/login.js
@@ -34,7 +34,7 @@ Page({
if (res.success) {
this.countDown()
wx.showToast({
- title: '发送成功',
+ title: '发送成功' + res.result,
icon: 'none',
duration: 2000
})
diff --git a/pages/meetingDetailSigned/meetingDetailSigned.js b/pages/meetingDetailSigned/meetingDetailSigned.js
index 245ad27..c06b5a6 100644
--- a/pages/meetingDetailSigned/meetingDetailSigned.js
+++ b/pages/meetingDetailSigned/meetingDetailSigned.js
@@ -289,7 +289,7 @@ Page({
},
// 报名
joinMeeting(e){
-
+ const that = this
// 如果是去报名页面需要在缓存中存储会议信息 当报名结束后 需要清除缓存中的当前会议信息 meetingSignUpType 1 可报名 2报名
let meetingItem = this.data.meetingInfo
if (meetingItem.meetingSignUpType === 1) {
@@ -300,14 +300,14 @@ Page({
})
wx.setStorage({
key: "currentMeetingInfo",
- data: this.data.meetingInfo,
+ data: that.data.meetingInfo,
success() {
// 国际研讨会去国际研讨会的报名页面
if (meetingItem.meetingType !== 3) {
wx.navigateTo({
url: `../signUpPage/signUpPage?type=indexMsg`
})
- } else if (meetingItem.meetingSignUpType === 2) {
+ } else {
wx.navigateTo({
url: `../signUpPageGuoji/signUpPageGuoji`
})
@@ -324,7 +324,7 @@ Page({
// 获取上一个页面的会议数据
const meetingInfo = JSON.parse(options.meetingInfo)
- console.log(meetingInfo);
+
const that = this
this.setData({
paymentQrCodeSrc:baseUrl + URL_CONFIG + 'sys/common/download/' + meetingInfo.paymentQrCode
diff --git a/pages/meetingDetailSigned/meetingDetailSigned.wxml b/pages/meetingDetailSigned/meetingDetailSigned.wxml
index 547e8cf..3667307 100644
--- a/pages/meetingDetailSigned/meetingDetailSigned.wxml
+++ b/pages/meetingDetailSigned/meetingDetailSigned.wxml
@@ -118,8 +118,7 @@
wx:if="{{!(meetingInfo.meetingType == '3' && singInPersonInfo.identity === 1)}}">
报名信息
-
- 去签到
+
参会单位
@@ -470,10 +469,17 @@
-
+
报名
+
+
+ 去签到
+
+
+
+
diff --git a/pages/mine/mine.wxml b/pages/mine/mine.wxml
index 42c2b09..727d2cd 100644
--- a/pages/mine/mine.wxml
+++ b/pages/mine/mine.wxml
@@ -46,13 +46,13 @@
-
+
diff --git a/pages/personList/personList.wxss b/pages/personList/personList.wxss
index 3a21bd7..024e543 100644
--- a/pages/personList/personList.wxss
+++ b/pages/personList/personList.wxss
@@ -66,14 +66,15 @@
/* 新建企业 */
.create-company {
width: 100%;
- position: relative;
- height: 80rpx;
+ position: fixed;
+ height: 100rpx;
line-height: 50rpx;
text-align: center;
border-top: 1px solid #eee;
- padding: 20rpx;
+ padding: 20rpx 20rpx 40rpx 20px;
box-sizing: border-box;
bottom: 0;
+ background-color: #fff;
}
.bg-f5 {
background-color: #f5f5f5;