Authored by 张文文

Merge branch 'develop' of http://git.yoho.cn/fe/xianyu-ufo-app-web into develop

... ... @@ -66,7 +66,9 @@ export default {
};
}
},
mounted() {},
mounted() {
},
methods: {
goPage({ page: name, params = {} }) {
if (!name) {
... ... @@ -74,14 +76,18 @@ export default {
}
if(name === 'service') {
this.$createDialog({
type: 'alert',
content: '请致电 <a href="tel:400-889-9646"> 400-889-9646 </a>联系有货客服',
confirmBtn: {
text: '我知道了',
active: true
}
}).show()
// this.$createDialog({
// type: 'alert',
// content: '请致电 <a href="tel:400-889-9646"> 400-889-9646 </a>联系有货客服',
// confirmBtn: {
// text: '我知道了',
// active: true
// }
// }).show()
// this.$router.push({path: '/xianyu-service/service/im'})
this.$xianyu.goXianyuNewPage({
url: window.location.origin+'/xianyu-service/service/im'
});
return
}
this.$router.push({ name, params });
... ...