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