|
@@ -81,7 +81,24 @@ const href = (data,type = 1) =>{
|
|
|
|
|
|
Vue.config.productionTip = false;
|
|
Vue.config.productionTip = false;
|
|
|
|
|
|
-Vue.prototype.$api = {msg,http,href};
|
|
|
|
|
|
+const goback = () =>{
|
|
|
|
+ let pages = getCurrentPages();
|
|
|
|
+ console.log('pages',pages);
|
|
|
|
+ console.log('pages[0].route',pages[0].route);
|
|
|
|
+ // if(pages[0].route == 'pages/use/useRouter'){
|
|
|
|
+ if(pages.length == '2'){
|
|
|
|
+ uni.switchTab({
|
|
|
|
+ url:'/pages/index/index',
|
|
|
|
+ fail: (err) => {
|
|
|
|
+ console.log('switchTab',err)
|
|
|
|
+ }
|
|
|
|
+ })
|
|
|
|
+ return;
|
|
|
|
+ };
|
|
|
|
+ uni.navigateBack({})
|
|
|
|
+};
|
|
|
|
+
|
|
|
|
+Vue.prototype.$api = {msg,http,href,goback};
|
|
Vue.prototype.$getimg = config.imgUrl;
|
|
Vue.prototype.$getimg = config.imgUrl;
|
|
Vue.prototype.$getInnerImg = config.innerImgUrl;
|
|
Vue.prototype.$getInnerImg = config.innerImgUrl;
|
|
Vue.prototype.$onlineImg = config.onlineImg;
|
|
Vue.prototype.$onlineImg = config.onlineImg;
|