|
|
@@ -143,22 +143,19 @@ export default {
|
|
|
getError () {
|
|
|
},
|
|
|
_balancePay () {
|
|
|
- console.log('this.getLoginInfo===>', this.getLoginInfo, this.getDictionariesInfo)
|
|
|
+ let self = this
|
|
|
if (this.getLoginInfo.payPassword) {
|
|
|
this.keyShow = true
|
|
|
} else {
|
|
|
uni.showModal({
|
|
|
title: '',
|
|
|
- content: '即将前往设置密码页面',
|
|
|
+ content: '请先设置支付密码',
|
|
|
success: function (res) {
|
|
|
if (res.confirm) {
|
|
|
- console.log('用户点击确定');
|
|
|
- this.pageTo({
|
|
|
+ self.pageTo({
|
|
|
url: '/pagesPurchase/setPsd',
|
|
|
type: 2
|
|
|
})
|
|
|
- } else if (res.cancel) {
|
|
|
- console.log('用户点击取消');
|
|
|
}
|
|
|
}
|
|
|
});
|