master
parent
1df03872a0
commit
cdd36d31b1
|
@ -17,11 +17,19 @@
|
|||
methods: {
|
||||
// 检测是否是微信端
|
||||
checkContext(){
|
||||
setTimeout(()=>{
|
||||
uni.reLaunch({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
},3000)
|
||||
if(uni.getStorageSync('token')) {
|
||||
setTimeout(()=>{
|
||||
uni.reLaunch({
|
||||
url:'/pages/tabbar/pagehome/pagehome'
|
||||
})
|
||||
},3000)
|
||||
} else {
|
||||
setTimeout(()=>{
|
||||
uni.reLaunch({
|
||||
url:'/pages/login/login'
|
||||
})
|
||||
},3000)
|
||||
}
|
||||
// #ifdef APP-PLUS
|
||||
// if(uni.getSystemInfoSync().platform != "devtools"){//devtools:开发版 值域为:ios、android、mac(3.1.10+)、windows(3.1.10+)、linux(3.1.10+)
|
||||
// console.log = () =>{}
|
||||
|
|
|
@ -130,7 +130,8 @@
|
|||
this.$requst.get('/universal/api.order/order_type').then(res => {
|
||||
// this.$toolAll.tools.showToast(res.msg);
|
||||
if (res.code) {
|
||||
this.array=[...res.data]
|
||||
this.array=[...res.data];
|
||||
|
||||
if(this.statusId){
|
||||
this.workeOrderStatusIndex = this.array.findIndex(item=>item.id==this.statusId);
|
||||
if(this.workeOrderStatusIndex!=-1) {
|
||||
|
|
Loading…
Reference in New Issue