|
@@ -419,6 +419,9 @@
|
|
|
}
|
|
|
},
|
|
|
methods: {
|
|
|
+ downCallback(){
|
|
|
+ this.mescroll.resetUpScroll()
|
|
|
+ },
|
|
|
freeTell(item) {
|
|
|
uni.makePhoneCall({
|
|
|
phoneNumber: item.phone, //仅为示例,并非真实的电话号码
|
|
@@ -969,6 +972,7 @@
|
|
|
})
|
|
|
} else {
|
|
|
this.typeName = e.value[0].circleName
|
|
|
+ if(this.typeName =="全部分类") this.typeName = ''
|
|
|
this.mescroll.resetUpScroll()
|
|
|
}
|
|
|
this.isShowType = false
|
|
@@ -1029,7 +1033,11 @@
|
|
|
message: failres.errmsg,
|
|
|
})
|
|
|
}).then(res => {
|
|
|
+ res.data.items.unshift({
|
|
|
+ circleName:'全部分类'
|
|
|
+ })
|
|
|
this.typeColumns = [res.data.items]
|
|
|
+
|
|
|
console.log(this.typeColumns)
|
|
|
})
|
|
|
|