12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <!-- 客服兼容 -->
- <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>
|