no message
Showing
3 changed files
with
3 additions
and
3 deletions
| ... | @@ -9,7 +9,7 @@ | ... | @@ -9,7 +9,7 @@ |
| 9 | <view class="tt">会员列表</view> | 9 | <view class="tt">会员列表</view> |
| 10 | <!-- <uni-indexed-list :options="list" :showSelect="true" @click="bindClick"></uni-indexed-list> --> | 10 | <!-- <uni-indexed-list :options="list" :showSelect="true" @click="bindClick"></uni-indexed-list> --> |
| 11 | <view class="userlist"> | 11 | <view class="userlist"> |
| 12 | <view class="item" v-for="n in list"> | 12 | <view class="item" v-for="(n,index) in list" :key="index"> |
| 13 | <view @click="checkThis(n)" v-if="n.canCommit"> | 13 | <view @click="checkThis(n)" v-if="n.canCommit"> |
| 14 | <image class="icon" v-if="n.checked" src="@/static/member/dx_dwn.png" /> | 14 | <image class="icon" v-if="n.checked" src="@/static/member/dx_dwn.png" /> |
| 15 | <image class="icon" v-else src="@/static/member/dx.png" /> | 15 | <image class="icon" v-else src="@/static/member/dx.png" /> | ... | ... |
| ... | @@ -7,7 +7,7 @@ | ... | @@ -7,7 +7,7 @@ |
| 7 | <view class="invertedbtn-red" @click="goAdd">+ 添加级位考试</view> | 7 | <view class="invertedbtn-red" @click="goAdd">+ 添加级位考试</view> |
| 8 | </view> | 8 | </view> |
| 9 | <view class="appList"> | 9 | <view class="appList"> |
| 10 | <view class="appItem" v-for="item in list"> | 10 | <view class="appItem" v-for="(item,index) in list" :key="item"> |
| 11 | <view class="status" @click="goDetail(item)"> | 11 | <view class="status" @click="goDetail(item)"> |
| 12 | <text v-if="item.status=='0'" class="text-primary">{{ item.statusStr }}</text> | 12 | <text v-if="item.status=='0'" class="text-primary">{{ item.statusStr }}</text> |
| 13 | <text v-if="item.status=='1'" class="text-primary">{{ item.statusStr }}</text> | 13 | <text v-if="item.status=='1'" class="text-primary">{{ item.statusStr }}</text> | ... | ... |
| ... | @@ -26,7 +26,7 @@ | ... | @@ -26,7 +26,7 @@ |
| 26 | 考试信息 | 26 | 考试信息 |
| 27 | </view> | 27 | </view> |
| 28 | <view class="userlist"> | 28 | <view class="userlist"> |
| 29 | <view class="item" v-for="n in infoList" @click="goDetail(n)" style="background-color: #fffafa;"> | 29 | <view class="item" v-for="(n,index) in infoList" :key="index" @click="goDetail(n)" style="background-color: #fffafa;"> |
| 30 | <view class="w100"> | 30 | <view class="w100"> |
| 31 | <view class="name">{{n.name}}</view> | 31 | <view class="name">{{n.name}}</view> |
| 32 | <!-- <view class="date">{{n.idcTypeStr}}:{{n.idcCode}}</view> --> | 32 | <!-- <view class="date">{{n.idcTypeStr}}:{{n.idcCode}}</view> --> | ... | ... |
-
Please register or sign in to post a comment