From bf0123f262cb67b25bc8acab8eeae48b3464f20d Mon Sep 17 00:00:00 2001 From: xpz2018 <107107461@qq.com> Date: Thu, 1 Jul 2021 20:19:21 +0800 Subject: [PATCH] no message --- pages/process/payment/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/process/payment/index.js b/pages/process/payment/index.js index fe019ec..86a9acd 100644 --- a/pages/process/payment/index.js +++ b/pages/process/payment/index.js @@ -177,24 +177,24 @@ Scene({ wx.hideLoading() this.data.requesting = false if((typeof err == 'object') && err.code == 200101){ - Dialog.confirm({ title: '温馨提示', message: '该客户注册成为纸通宝用户,才可以使用千鸟代付,现在去注册?' }).then(() => { + Dialog.confirm({ title: '温馨提示', message: '该客户注册成为纸通宝用户,才可以使用千鸟代付,现在去注册?', confirmButtonText: '去注册' }).then(() => { var cid = this.data.orderList[0].factoryCustomerId wx.navigateTo({ url: '/pages/home/registe/index?id=' + cid }) }).catch(err => { }) } else if(err.indexOf('用户未实名') >= 0){ - Dialog.confirm({ title: '温馨提示', message: '您还没有实名认证,无法使用千鸟代付,现在去实名认证?' }).then(() => { + Dialog.confirm({ title: '温馨提示', message: '您还没有实名认证,无法使用千鸟代付,现在去实名认证?', confirmButtonText: '去认证' }).then(() => { wx.navigateTo({ url: '/pages/setting/authory/index' }) }).catch(err => { }) } else if(err.indexOf('客户未注册') >= 0){ - Dialog.confirm({ title: '温馨提示', message: '该客户注册成为纸通宝用户,才可以使用千鸟代付,现在去注册?' }).then(() => { + Dialog.confirm({ title: '温馨提示', message: '该客户注册成为纸通宝用户,才可以使用千鸟代付,现在去注册?', confirmButtonText: '去注册' }).then(() => { var cid = this.data.orderList[0].factoryCustomerId wx.navigateTo({ url: '/pages/home/registe/index?id=' + cid }) }).catch(err => { }) } else if(err.indexOf('没有开通') >= 0){ - Dialog.confirm({ title: '温馨提示', message: '您还没有开通千鸟代付,现在去了解并开通?' }).then(() => { + Dialog.confirm({ title: '温馨提示', message: '您还没有开通千鸟代付,现在去了解并开通?', confirmButtonText: '去开通' }).then(() => { wx.navigateTo({ url: '/pages/htmls/auths/index' }) }).catch(err => { })