7c305904
杨鑫
最新
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
|
<view class="title" style="margin-top: 20rpx;display:flex;" >
<view style="font-size: 12px;padding:2px 8px;border: 1px solid #0FBB59; color: #0FBB59;margin:0 5px; border-radius: 10px;font-weight: 300;" v-for="(item,index) in list">{{item}}</view>
</view>
<view>
{{tableData.startTime}} 至 {{tableData.endTime}}
</view>
<view style="margin-top: 10rpx;">
{{tableData.location}}
</view>
</view>
<view class="info-box">
<view class="title">规则介绍</view>
<view class="" style="color: #888D9C; margin-top: 10px;">
啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦啦
</view>
</view>
</view>
<!-- 底部 -->
<view style="height: 125rpx;"></view>
<view class="page-footer">
<view class="footer-btn">
<u-button type="success" @click="baoShow">我要参与</u-button>
</view>
</view>
<u-popup class="userForm" v-model="joinShow" mode="center" border-radius="20" :closeable="true" width="90%" >
<view style="padding: 30rpx;">
<u-form class="form-box" :model="form" ref="uForm" :label-width="120" >
<view style="padding: 10rpx;">
<view class="title">请填写您的报名信息</view>
<u-form-item label="*姓名"><u-input v-model="form.userName" /></u-form-item>
<u-form-item label="*电话"><u-input v-model="form.userPhone" /></u-form-item>
<u-button type="success" @click="submit">提交</u-button>
</view>
</u-form>
</view>
</u-popup>
<u-toast ref="uToast" />
</view>
</template>
<script>
export default {
data() {
return {
tableData:{},
list:['标签','标签','标签'],
swiperList: [
{
id: 0,
type: 'image',
url: this.$imgUrl('/img/1.jpg')
}
],
joinShow: false,
form: {
activityId:'',
userId:'',
createTime:'',
createUser:'',
userName: '',
userPhone: '',
},
pagesize: {
id:null,
},
imgurl:''
};
},
onLoad(option){
this.imgurl = this.$img
let ce = decodeURIComponent(option.item)
let data = JSON.parse(ce)
console.log(data)
this.tableData = data
},
methods: {
baoShow(){
uni.navigateTo({
url: `/pagesA/PunchInAct/PunchInSetting?ids=${this.tableData.id}`
})
},
submit() {
if (!this.form.userName) {
uni.showToast({
icon: 'none',
title: '请输入姓名'
});
return
}
if (!this.form.userPhone) {
uni.showToast({
icon: 'none',
title: '请输入联系电话'
});
return
}
this.form.createTime = this.getCurrentDateTime()
this.$http.sendRequest('/cereEventRegistration/add', 'POST',this.form,1).then(res => {
// uni.showToast({
// title: res.data.message,
// duration: 2000,
// })
this.$refs.uToast.show({
title: res.data.message,
url: '/pages/home/home'
})
// uni.switchTab({
// url: '/pages/home/home'
// })
})
this.joinShow = false
},
leaseAdd(){
uni.navigateTo({
url: '/pages/leaseAdd/leaseAdd'
})
},
getCurrentDateTime() {
const now = new Date();
const year = now.getFullYear();
const month = String(now.getMonth() + 1).padStart(2, '0'); // 月份是从0开始的,所以需要+1
const day = String(now.getDate()).padStart(2, '0');
const hours = String(now.getHours()).padStart(2, '0');
const minutes = String(now.getMinutes()).padStart(2, '0');
const seconds = String(now.getSeconds()).padStart(2, '0');
return `${year}-${month}-${day} ${hours}:${minutes}:${seconds}`;
},
}
};
</script>
<style scoped lang="scss">
.page {
position: relative;
width: 100%;
// height: 100%;
overflow-x: hidden;
// overflow-y: auto;
}
.page-info {
width: 100%;
padding: 24rpx;
}
// 活动详情
.banner {
width: 100%;
margin-top: 10rpx;
border-radius: 30rpx;
background-color: #fff;
padding: 24rpx 30rpx;
color: #888D9C;
.title {
font-weight: 700;
color: #3D3D3D;
font-size: 34rpx;
margin-bottom: 30rpx;
}
.banner-info-top {
display: flex;
align-items: center;
justify-content: space-between;
margin-bottom: 30rpx;
}
.times{
white-space: nowrap; /* 不换行 */
overflow: hidden; /* 隐藏超出部分 */
text-overflow: ellipsis; /* 显示省略号 */
width:70%;
}
}
// 活动信息
.info-box {
margin-top: 30rpx;
background-color:#fff;
padding:10px;
border-radius: 30rpx;
.title {
font-weight: 700;
color: #3D3D3D;
font-size: 34rpx;
margin-bottom: 10rpx;
}
.info-item {
font-size: 26rpx;
line-height: 50rpx;
}
}
/* 底部 */
.page-footer{
position: fixed;
left: 0;
bottom: 0;
// display: flex;
// align-items: center;
// justify-content: center;
width: 100%;
height: 125rpx;
background-color: #FFFFFF;
padding-bottom: constant(safe-area-inset-bottom);
padding-bottom: env(safe-area-inset-bottom);
.footer-btn {
padding: 0 20px;
margin-top: 20rpx;
}
.footer-service {
display: flex;
flex-direction: column;
align-items: center;
text {
margin-top: 6rpx;
line-height: 42rpx;
}
}
}
.userForm {
margin: 0 40rpx ;
.form-box {
padding: 18rpx 30rpx;
}
.title {
font-size: 32rpx;
font-weight: 700;
}
}
</style>
|