|
@@ -10,9 +10,9 @@
|
|
|
<view class="list" v-for="(item, index) in list" :key="index">
|
|
|
<view class="image">
|
|
|
<image class="file" v-for="(tag, indexs) in item.persons.slice(0,7)" :key="indexs"
|
|
|
- :src="tag.icon&&tag.icon.length>0?tag.icon[0].url:''" mode="">
|
|
|
+ v-if="tag.status==0" :src="tag.icon&&tag.icon.length>0?tag.icon[0].url:''" mode="">
|
|
|
+ </image>
|
|
|
</view>
|
|
|
- </image>
|
|
|
<view class="list_1">
|
|
|
<view class="name">
|
|
|
{{item.person_limit||0}}人即可开团成功
|
|
@@ -109,6 +109,7 @@
|
|
|
if (res.errcode == '0') {
|
|
|
let list = [...that.list, ...res.data];
|
|
|
for (let val of list) {
|
|
|
+ val.persons = val.persons.filter(i => i.status == '0')
|
|
|
let status = that.statusList.find(i => i.value == val.status)
|
|
|
if (status) val.zhStatus = status.label;
|
|
|
val.time = moment(val.meta.createdAt).format('YYYY-MM-DD HH:mm:ss')
|
|
@@ -241,7 +242,8 @@
|
|
|
font-size: var(--font12Size);
|
|
|
}
|
|
|
}
|
|
|
- .button{
|
|
|
+
|
|
|
+ .button {
|
|
|
margin: 0 2vw;
|
|
|
padding: 2vw 3vw;
|
|
|
background-color: var(--fcColor);
|