842a6ff2 by lttnew

个人订单

1 parent 256a8622
// dev
// const baseUrl_api = 'http://192.168.1.125:8787'
const baseUrl_api = 'http://192.168.1.134:8787'
// const baseUrl_api = 'http://47.98.186.233:8787'
const baseUrl_api = 'https://tk001.wxjylt.com/stage-api/'
// const baseUrl_api = 'https://tk001.wxjylt.com/stage-api/'
const loginImage_api = 'https://tk001.wxjylt.com/stage-api'
const payUrl = 'https://wxpay.cmbc.com.cn/mobilePlatform/appserver/lcbpPay.do'
......
......@@ -110,13 +110,16 @@
const searchNoData = ref(false)
const pageType = ref('')
onLoad((option) => {
if(option.pageType ){
if(option.pageType){
pageType.value = option.pageType || ''
}else{
}
if(option.chosen){
chosen = JSON.parse(decodeURIComponent(option.chosen || '[]'))
ec = option.ec
}
if(option.ec){
ec = option.ec
}
getList()
})
onShow(()=> {
......
......@@ -1029,10 +1029,15 @@ function checkDialogs() {
const memberInfoData = app.globalData.memberInfo || {}
// 密码长期未更新提示: changePassFlag='1' && activeStatus=1 && authenticationStatus=2
// 只提示一次
if (app.globalData.changePassFlag == '1' &&
app.globalData.memberInfo?.activeStatus == '1' &&
app.globalData.authenticationStatus == 2) {
passwordTipPopup.value.open()
const hasShown = uni.getStorageSync('passwordTipShown')
if (!hasShown) {
uni.setStorageSync('passwordTipShown', true)
passwordTipPopup.value.open()
}
}
// 绑定手机号条件: changePassFlag='1' && activeStatus=1 && authenticationStatus=2 && phonenumber为空 && checkFlag=1
......
......@@ -454,7 +454,7 @@ const goToOrder = () => {
return
}
uni.navigateTo({
url: '/personal/order'
url: '/personal/order?perId=' + userInfo.value.perId
});
};
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!