|
@@ -288,7 +288,7 @@
|
|
|
}
|
|
|
// 双十一活动
|
|
|
function receiveRedEnvelope(){
|
|
|
- console.log(obj)
|
|
|
+ console.log(obj.token)
|
|
|
$.ajax({
|
|
|
url: baseUrl + `/api/user/v1/activity/receiveRedEnvelope`,
|
|
|
type: 'post',
|
|
@@ -364,7 +364,7 @@
|
|
|
<div class="user-left">
|
|
|
<img class="head-img" src="../static/img/doubleElevenActivity/touxiang_da_icon.png" />
|
|
|
<div class="user-info">
|
|
|
- <div class="user-name">${item.receiveUserPhone}</div>
|
|
|
+ <div class="user-name">${item.receiveUserPhone.substring(0,3)}****${item.receiveUserPhone.substring(7,11)}</div>
|
|
|
<div class="user-time">${item.createTime.substring(5,7)}月${item.createTime.substring(8,11)}日${item.createTime.substring(11,19)}</div>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -454,7 +454,7 @@
|
|
|
})
|
|
|
//点击参加按钮
|
|
|
$('.join-activity-btn')[0].addEventListener('click',()=>{
|
|
|
- if(obj.token){
|
|
|
+ if(obj.money){ // 小程序
|
|
|
window.location.href = `${baseUrl}/h5/microserviceUserH5/vcloud/downApp.html`
|
|
|
}else{
|
|
|
if (isAndroid) {
|