Commit 1ac04581 authored by lvtz's avatar lvtz

fix

parent dfdd75c7
......@@ -31,6 +31,7 @@ Page({
qrcodeModal: false,//二维码弹窗
qrcode: '',
showAuthSettingDia: false,//相册授权弹窗
pullownRefresh: false
},
onLoad: function(options) {
const {sid} = options;
......@@ -47,7 +48,8 @@ Page({
}
},
onPullDownRefresh: function() {
this.data.pullownRefresh = true
this.cluesDataGet();
},
getMemberMeInfo(){
let that = this;
......@@ -66,6 +68,10 @@ Page({
school_id: this.data.sid
}).then((res) => {
const {code, data} = res;
if(this.data.pullownRefresh){
wx.stopPullDownRefresh()
this.data.pullownRefresh = false
}
if (code == 200) {
this.setData({
cluseInfo: data
......
{
"navigationBarTitleText": "线索管理",
"enablePullDownRefresh": false,
"enablePullDownRefresh": true,
"usingComponents": {
"list-loading": "../../../components/listloading",
"expiredTip": "../../components/expiredTip",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment