|
|
|
@ -1882,6 +1882,10 @@ Page({
|
|
|
|
let that = this
|
|
|
|
let that = this
|
|
|
|
// if (!this.data.isAgency) return false
|
|
|
|
// if (!this.data.isAgency) return false
|
|
|
|
console.log('that.data.bclr', that.data.bclr);
|
|
|
|
console.log('that.data.bclr', that.data.bclr);
|
|
|
|
|
|
|
|
if (!that.data.isAgency) {
|
|
|
|
|
|
|
|
this.tobeAgencyToast()
|
|
|
|
|
|
|
|
return
|
|
|
|
|
|
|
|
}
|
|
|
|
let content, title
|
|
|
|
let content, title
|
|
|
|
if (that.data.jobDetail.record.returnFeeDesp && (that.data.jobDetail.record.picked || that.data.corpUserFlag)) {
|
|
|
|
if (that.data.jobDetail.record.returnFeeDesp && (that.data.jobDetail.record.picked || that.data.corpUserFlag)) {
|
|
|
|
title = that.data.isAgency ? '佣金: ' + that.data.fuWuFei : ''
|
|
|
|
title = that.data.isAgency ? '佣金: ' + that.data.fuWuFei : ''
|
|
|
|
@ -1902,5 +1906,21 @@ Page({
|
|
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
tobeAgencyToast () {
|
|
|
|
|
|
|
|
wx.showModal({
|
|
|
|
|
|
|
|
title: '',
|
|
|
|
|
|
|
|
content: '抱歉,您需先成为伯才代理以获得使用权限。',
|
|
|
|
|
|
|
|
confirmColor: '#1890ff',
|
|
|
|
|
|
|
|
confirmText: '成为代理',
|
|
|
|
|
|
|
|
cancelText: '知道了',
|
|
|
|
|
|
|
|
success (res) {
|
|
|
|
|
|
|
|
if (res.confirm) {
|
|
|
|
|
|
|
|
wx.navigateTo({
|
|
|
|
|
|
|
|
url: '/pages/tobeAgency/index'
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|