更改支付成功app显示取消失败的问题,tabar栏修改
40
App.vue
@ -10,7 +10,7 @@
|
||||
// +----------------------------------------------------------------------
|
||||
// #ifdef APP-PLUS
|
||||
let jpushModule = uni.requireNativePlugin("JG-JPush");
|
||||
const mp = uni.requireNativePlugin('uniMP');
|
||||
const mp = uni.requireNativePlugin('uniMP');
|
||||
// #endif
|
||||
import {
|
||||
checkLogin
|
||||
@ -76,19 +76,17 @@
|
||||
onLaunch: function(option) {
|
||||
this.globalData.statusBarHeight = uni.getSystemInfoSync().statusBarHeight + 'px';
|
||||
this.globalData.uid = this.$store.state.app.uid;
|
||||
|
||||
// #ifdef APP-PLUS
|
||||
//监听uni小程序发送的事件
|
||||
mp.onUniMPEventReceive(ret=>{
|
||||
console.log('小程序事件: ', ret);
|
||||
if(ret.event=='closeApp'){
|
||||
mp.closeUniMP(ret.fromAppid, (ret)=>{
|
||||
console.log('closeUniMP: '+JSON.stringify(ret));
|
||||
});
|
||||
}
|
||||
});
|
||||
// #endif
|
||||
|
||||
|
||||
//监听uni小程序发送的事件
|
||||
mp.onUniMPEventReceive(ret => {
|
||||
console.log('小程序事件: ', ret);
|
||||
if (ret.event == 'closeApp') {
|
||||
mp.closeUniMP(ret.fromAppid, (ret) => {
|
||||
console.log('closeUniMP: ' + JSON.stringify(ret));
|
||||
});
|
||||
}
|
||||
});
|
||||
|
||||
let that = this;
|
||||
// #ifdef MP
|
||||
if (HTTP_REQUEST_URL == '') {
|
||||
@ -231,6 +229,20 @@
|
||||
}, 1500)
|
||||
// #endif
|
||||
},
|
||||
mounted() {
|
||||
uni.onTabBarMidButtonTap((e) => {
|
||||
// console.log("点击了", e);
|
||||
uni.switchTab({
|
||||
url: '/pages/plant_release/index'
|
||||
})
|
||||
// uni.navigateTo({
|
||||
// url: '/pages/plant_release/index'
|
||||
// })
|
||||
|
||||
});
|
||||
uni.setTabBarItem((e) => { console.log("点击了", e)});
|
||||
},
|
||||
|
||||
methods: {
|
||||
/**
|
||||
* 语音播报
|
||||
|
22
pages.json
@ -216,7 +216,7 @@
|
||||
"navigationStyle": "custom"
|
||||
}
|
||||
|
||||
},
|
||||
},
|
||||
{
|
||||
"path": "supply_chain/suppliers",
|
||||
"style": {
|
||||
@ -1497,6 +1497,7 @@
|
||||
"selectedColor": "#E93323",
|
||||
"borderStyle": "white",
|
||||
"backgroundColor": "#ffffff",
|
||||
"fontSize": "25rpx",
|
||||
"list": [{
|
||||
"pagePath": "pages/index/index",
|
||||
"iconPath": "static/tabbar_icon/a.png",
|
||||
@ -1513,10 +1514,12 @@
|
||||
"pagePath": "pages/plant_release/index",
|
||||
"iconPath": "static/tabbar_icon/d.png",
|
||||
"selectedIconPath": "static/tabbar_icon/d-a.png",
|
||||
"text": "发布"
|
||||
"text": "发布",
|
||||
"visible":false
|
||||
},
|
||||
{
|
||||
"pagePath": "pages/supply_chains/supply_chains",
|
||||
|
||||
"iconPath": "static/tabbar_icon/c.png",
|
||||
"selectedIconPath": "static/tabbar_icon/c-a.png",
|
||||
"text": "供应"
|
||||
@ -1527,7 +1530,20 @@
|
||||
"selectedIconPath": "static/tabbar_icon/e-a.png",
|
||||
"text": "我的"
|
||||
}
|
||||
]
|
||||
],
|
||||
"midButton": {
|
||||
"width": "78rpx",
|
||||
"height": "126rpx",
|
||||
"iconWidth": "78rpx",
|
||||
"pagePath": "pages/plant_release/index",
|
||||
"iconPath": "static/tabbar_icon/d.png",
|
||||
// "selectedIconPath": "static/tabbar_icon/d-a.png",
|
||||
|
||||
"text": "发布"
|
||||
}
|
||||
|
||||
|
||||
|
||||
},
|
||||
"condition": { //模式配置,仅开发期间生效
|
||||
"current": 0, //当前激活的模式(list 的索引项)
|
||||
|
@ -186,7 +186,13 @@
|
||||
|
||||
},
|
||||
onTabItemTap(e) {
|
||||
console.log(e)
|
||||
if (e.text.length>=4) {
|
||||
uni.pageScrollTo({
|
||||
selector: ".Circle_friends",
|
||||
scrollTop: 0
|
||||
})
|
||||
|
||||
}
|
||||
},
|
||||
onReachBottom() {
|
||||
if (this.status == 'nomore') return;
|
||||
@ -218,6 +224,12 @@
|
||||
this.backColor = 'rgba(252, 252, 252, 0.0)'
|
||||
this.isFshow = false
|
||||
this.show = true
|
||||
uni.setTabBarItem({
|
||||
index: 0,
|
||||
text: "泸州",
|
||||
iconPath: '/static/tabbar_icon/a.png',
|
||||
selectedIconPath: '/static/tabbar_icon/a-a.png'
|
||||
});
|
||||
} else if (20 < scrollTop && scrollTop <= 100) {
|
||||
this.backColor = 'rgba(255, 255, 255, 0.5)'
|
||||
this.isFshow = true
|
||||
@ -226,6 +238,12 @@
|
||||
this.backColor = 'rgba(252, 252, 252, 1.0)'
|
||||
this.isFshow = true
|
||||
this.show = false
|
||||
uni.setTabBarItem({
|
||||
index: 0,
|
||||
text: '返回顶部',
|
||||
iconPath: '/static/tabbar_icon/top.png',
|
||||
selectedIconPath: '/static/tabbar_icon/top.png'
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
@ -263,6 +281,12 @@
|
||||
if (scrollTop <= 20) {
|
||||
this.backColor = 'rgba(252, 252, 252, 0.0)'
|
||||
this.isFshow = false
|
||||
uni.setTabBarItem({
|
||||
index: 0,
|
||||
text: "泸州",
|
||||
iconPath: '/static/tabbar_icon/a.png',
|
||||
selectedIconPath: '/static/tabbar_icon/a-a.png'
|
||||
});
|
||||
} else if (20 < scrollTop && scrollTop <= 100) {
|
||||
this.backColor = 'rgba(255, 255, 255, 0.5)'
|
||||
this.isFshow = true
|
||||
@ -272,8 +296,7 @@
|
||||
|
||||
uni.setTabBarItem({
|
||||
index: 0,
|
||||
text: '',
|
||||
id:'1',
|
||||
text: '返回顶部',
|
||||
iconPath: '/static/tabbar_icon/top.png',
|
||||
selectedIconPath: '/static/tabbar_icon/top.png'
|
||||
});
|
||||
|
@ -1301,6 +1301,7 @@
|
||||
});
|
||||
},
|
||||
fail: (e) => {
|
||||
console.log(e,'111111111')
|
||||
// 暂不跳转
|
||||
let url = '/pages/order_pay_status/index?order_id=' + orderId +
|
||||
'&msg=取消支付' + '&product_type=' + that.product_type;
|
||||
@ -1311,16 +1312,17 @@
|
||||
url: url
|
||||
});
|
||||
},
|
||||
complete: () => {
|
||||
complete: (res) => {
|
||||
uni.hideLoading();
|
||||
// 暂不跳转
|
||||
let url = '/pages/order_pay_status/index?order_id=' + orderId +
|
||||
'&msg=取消支付' + '&product_type=' + that.product_type;
|
||||
return that.$util.Tips({
|
||||
title: '取消支付',
|
||||
}, {
|
||||
tab: 4,
|
||||
url: url
|
||||
});
|
||||
// let url = '/pages/order_pay_status/index?order_id=' + orderId +
|
||||
// '&msg=取消支付' + '&product_type=' + that.product_type;
|
||||
// return that.$util.Tips({
|
||||
// title: '取消支付',
|
||||
// }, {
|
||||
// tab: 4,
|
||||
// url: url
|
||||
// });
|
||||
},
|
||||
});
|
||||
// #endif
|
||||
@ -1414,17 +1416,17 @@
|
||||
},
|
||||
complete: () => {
|
||||
uni.hideLoading();
|
||||
// 暂不跳转
|
||||
let pages = '/pages/order_pay_status/index?order_id=' +
|
||||
orderId + '&msg=取消支付' + '&product_type=' + that
|
||||
.product_type
|
||||
// // 暂不跳转
|
||||
// let pages = '/pages/order_pay_status/index?order_id=' +
|
||||
// orderId + '&msg=取消支付' + '&product_type=' + that
|
||||
// .product_type
|
||||
|
||||
return that.$util.Tips({
|
||||
title: '取消支付'
|
||||
}, {
|
||||
tab: 5,
|
||||
url: pages
|
||||
});
|
||||
// return that.$util.Tips({
|
||||
// title: '取消支付'
|
||||
// }, {
|
||||
// tab: 5,
|
||||
// url: pages
|
||||
// });
|
||||
},
|
||||
});
|
||||
break;
|
||||
|
Before Width: | Height: | Size: 2.1 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1.7 KiB After Width: | Height: | Size: 2.0 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 827 B After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 4.0 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.8 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.6 KiB |