Browse Source

修复bug

master
前端-胡立永 3 months ago
parent
commit
338405e0af
4 changed files with 25 additions and 5 deletions
  1. +17
    -1
      components/zhaomu/zhaomu-item.vue
  2. +0
    -0
      doc/logo-img.jpg
  3. +3
    -1
      pages/index/member.vue
  4. +5
    -3
      pages_login/wxUserInfo.vue

+ 17
- 1
components/zhaomu/zhaomu-item.vue View File

@ -26,9 +26,25 @@
<uv-avatar-group :urls="urls" keyName="headImage" size="45rpx" gap="0.1"></uv-avatar-group>
<view class="num">{{item.num}}人参加</view>
</view>
<view class="bottom-box-r" @click="toZhaomu(item)">
<view class="bottom-box-r"
v-if="!item.openState"
@click="toZhaomu(item)">
参与招募
</view>
<view class="bottom-box-r"
v-else-if="item.openState == 3"
@click="toZhaomu(item)">
不通过
</view>
<view class="bottom-box-r"
v-else
>
{{ ['审核中', '已参加'][item.openState - 1] }}
</view>
</view>
<view class="tabs-box" :class="item == 1? 'bzcx-item' : 'ycx-item'">{{item == 1? '保证成行' : '已成行'}}</view>
</view>


static/image/logo-img.jpg → doc/logo-img.jpg View File


+ 3
- 1
pages/index/member.vue View File

@ -123,7 +123,9 @@
...this.params
}
// if(!uni.getStorageSync('to'))
if(uni.getStorageSync('token')){
data.token = uni.getStorageSync('token')
}
this.$api('recruitPageList',this.params,res=>{
uni.stopPullDownRefresh()


+ 5
- 3
pages_login/wxUserInfo.vue View File

@ -212,19 +212,21 @@
}
.btn {
background: $uni--bg-color-btn;
// background: $uni--bg-color-btn;
background: #05C160;
color: #fff;
width: 80%;
padding: 20rpx 0;
text-align: center;
border-radius: 15rpx;
border-radius: 45rpx;
margin-top: 10vh;
}
.getPhoneNumber{
display: flex;
justify-content: center;
align-items: center;
background: $uni--bg-color-btn;
// background: $uni--bg-color-btn;
background: #05C160;
color: #fff;
width: 220rpx;
height: 60rpx;


Loading…
Cancel
Save