You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.0 KiB
55 lines
1.0 KiB
<!-- 客服兼容 -->
|
|
<template>
|
|
<view class="chat-template-box" v-if="showChat">
|
|
<Chat v-if="isShoproChat"></Chat>
|
|
<Wm v-if="!isShoproChat" :options="kefuOptions"></Wm>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
import {
|
|
mapMutations,
|
|
mapActions,
|
|
mapState,
|
|
mapGetters
|
|
} from "vuex";
|
|
import Chat from "./shopro/index.vue";
|
|
import Wm from "./wm/index.vue";
|
|
export default {
|
|
components: {
|
|
Chat,
|
|
Wm
|
|
},
|
|
data() {
|
|
return {
|
|
isShoproChat: false,
|
|
kefuOptions: null,
|
|
showChat: false
|
|
};
|
|
},
|
|
computed: {
|
|
...mapGetters(["initAddons", "initChat"])
|
|
},
|
|
onLoad(options) {
|
|
this.kefuOptions = options;
|
|
//判断客服;
|
|
if (this.initChat && this.initChat.type === "shopro") {
|
|
this.isShoproChat = true;
|
|
} else {
|
|
if (this.initAddons.length && this.initAddons.includes("kefu")) {
|
|
this.isShoproChat = false;
|
|
}
|
|
}
|
|
this.showChat = true;
|
|
},
|
|
methods: {}
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.chat-template-box {
|
|
height: 100%;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
}
|
|
</style>
|
|
|