储备udesk方案,暂时注释
parent
85d0671443
commit
dfd3885486
|
@ -362,6 +362,7 @@ import { getGoods, getGoodsList, getMpScene, getGoodsDistribution } from "@/api/
|
||||||
import * as API_trade from "@/api/trade.js";
|
import * as API_trade from "@/api/trade.js";
|
||||||
import * as API_Members from "@/api/members.js";
|
import * as API_Members from "@/api/members.js";
|
||||||
import * as API_store from "@/api/store.js";
|
import * as API_store from "@/api/store.js";
|
||||||
|
import { getIMDetail } from '@/api/common'
|
||||||
import { modelNavigateTo } from "@/pages/tabbar/home/template/tpl.js";
|
import { modelNavigateTo } from "@/pages/tabbar/home/template/tpl.js";
|
||||||
/************请求存储***************/
|
/************请求存储***************/
|
||||||
import storage from "@/utils/storage.js";
|
import storage from "@/utils/storage.js";
|
||||||
|
@ -522,9 +523,17 @@ export default {
|
||||||
startTimer: false, //未开启 是false
|
startTimer: false, //未开启 是false
|
||||||
|
|
||||||
routerVal: "",
|
routerVal: "",
|
||||||
|
IMLink:"", // IM地址
|
||||||
|
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
|
computed:{
|
||||||
|
IM() {
|
||||||
|
return this.IMLink + this.storeDetail.merchantEuid;
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
watch: {
|
watch: {
|
||||||
isGroup(val) {
|
isGroup(val) {
|
||||||
if (val) {
|
if (val) {
|
||||||
|
@ -679,7 +688,7 @@ export default {
|
||||||
this.cartCount();
|
this.cartCount();
|
||||||
|
|
||||||
// 获取店铺推荐商品
|
// 获取店铺推荐商品
|
||||||
this.getstoreRecommend();
|
this.getStoreRecommend();
|
||||||
|
|
||||||
// 获取商品列表
|
// 获取商品列表
|
||||||
this.getOtherLikeGoods();
|
this.getOtherLikeGoods();
|
||||||
|
@ -688,11 +697,28 @@ export default {
|
||||||
if (this.$options.filters.isLogin("auth")) {
|
if (this.$options.filters.isLogin("auth")) {
|
||||||
this.getGoodsCollectionFun(this.goodsDetail.id);
|
this.getGoodsCollectionFun(this.goodsDetail.id);
|
||||||
}
|
}
|
||||||
|
// 获取IM 需要的话使用
|
||||||
|
// this.getIMDetailMethods();
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
|
async getIMDetailMethods(){
|
||||||
|
let res = await getIMDetail()
|
||||||
|
if(res.data.success){
|
||||||
|
this.IMLink = res.data.result
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
linkMsgDetail() {
|
linkMsgDetail() {
|
||||||
|
|
||||||
|
if(this.storeDetail.merchantEuid){
|
||||||
|
uni.navigateTo({
|
||||||
|
url:`/pages/tabbar/home/web-view?src=${this.IM}`
|
||||||
|
});
|
||||||
|
}
|
||||||
|
else{
|
||||||
// 客服
|
// 客服
|
||||||
// #ifdef MP-WEIXIN
|
// #ifdef MP-WEIXIN
|
||||||
|
|
||||||
const params = {
|
const params = {
|
||||||
storeName: this.storeDetail.storeName,
|
storeName: this.storeDetail.storeName,
|
||||||
goodsName: this.goodsDetail.goodsName,
|
goodsName: this.goodsDetail.goodsName,
|
||||||
|
@ -719,6 +745,7 @@ export default {
|
||||||
sign,
|
sign,
|
||||||
});
|
});
|
||||||
// #endif
|
// #endif
|
||||||
|
}
|
||||||
},
|
},
|
||||||
// 格式化金钱 1999 --> [1999,00]
|
// 格式化金钱 1999 --> [1999,00]
|
||||||
formatPrice(val) {
|
formatPrice(val) {
|
||||||
|
@ -834,7 +861,7 @@ export default {
|
||||||
/**
|
/**
|
||||||
* 获取店铺推荐商品列表
|
* 获取店铺推荐商品列表
|
||||||
*/
|
*/
|
||||||
getstoreRecommend() {
|
getStoreRecommend() {
|
||||||
getGoodsList({
|
getGoodsList({
|
||||||
pageNumber: 1,
|
pageNumber: 1,
|
||||||
pageSize: 6,
|
pageSize: 6,
|
||||||
|
|
Loading…
Reference in New Issue