|
@@ -81,10 +81,10 @@
|
|
|
>
|
|
>
|
|
|
<van-swipe-cell
|
|
<van-swipe-cell
|
|
|
class="cell"
|
|
class="cell"
|
|
|
- :disabled="selected !== SelectedType.myFans && isSelf"
|
|
|
|
|
|
|
+ :disabled="selected === SelectedType.myFans && isSelf"
|
|
|
v-for="(item, index) in dataList" :key="'dataList' + index"
|
|
v-for="(item, index) in dataList" :key="'dataList' + index"
|
|
|
>
|
|
>
|
|
|
- <div class="cellContent">
|
|
|
|
|
|
|
+ <div class="cellContent" @click="jumpToJishuinHomePageHandler(item)">
|
|
|
<div class="left">
|
|
<div class="left">
|
|
|
<img :src="item.user_info && item.user_info.icon_url" alt="">
|
|
<img :src="item.user_info && item.user_info.icon_url" alt="">
|
|
|
</div>
|
|
</div>
|
|
@@ -184,6 +184,7 @@
|
|
|
this.getList()
|
|
this.getList()
|
|
|
},
|
|
},
|
|
|
mounted() {
|
|
mounted() {
|
|
|
|
|
+ console.log(this)
|
|
|
// this.getList()
|
|
// this.getList()
|
|
|
if (this.mobile) {
|
|
if (this.mobile) {
|
|
|
document.body.style = "overflow:hidden;"
|
|
document.body.style = "overflow:hidden;"
|
|
@@ -267,7 +268,7 @@
|
|
|
}).then(res=>{
|
|
}).then(res=>{
|
|
|
if (Number(res.data.status) === 1) {
|
|
if (Number(res.data.status) === 1) {
|
|
|
this.dataList.splice(index, 1)
|
|
this.dataList.splice(index, 1)
|
|
|
- this.$message.success("操作成功!")
|
|
|
|
|
|
|
+ this.$message.success("取消关注成功!")
|
|
|
}
|
|
}
|
|
|
})
|
|
})
|
|
|
},
|
|
},
|