index.vue 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <!-- 客服兼容 -->
  2. <template>
  3. <view class="chat-template-box" v-if="showChat">
  4. <Chat v-if="isShoproChat"></Chat>
  5. <Wm v-if="!isShoproChat" :options="kefuOptions"></Wm>
  6. </view>
  7. </template>
  8. <script>
  9. import {
  10. mapMutations,
  11. mapActions,
  12. mapState,
  13. mapGetters
  14. } from "vuex";
  15. import Chat from "./shopro/index.vue";
  16. import Wm from "./wm/index.vue";
  17. export default {
  18. components: {
  19. Chat,
  20. Wm
  21. },
  22. data() {
  23. return {
  24. isShoproChat: false,
  25. kefuOptions: null,
  26. showChat: false
  27. };
  28. },
  29. computed: {
  30. ...mapGetters(["initAddons", "initChat"])
  31. },
  32. onLoad(options) {
  33. this.kefuOptions = options;
  34. //判断客服;
  35. if (this.initChat && this.initChat.type === "shopro") {
  36. this.isShoproChat = true;
  37. } else {
  38. if (this.initAddons.length && this.initAddons.includes("kefu")) {
  39. this.isShoproChat = false;
  40. }
  41. }
  42. this.showChat = true;
  43. },
  44. methods: {}
  45. };
  46. </script>
  47. <style lang="scss">
  48. .chat-template-box {
  49. height: 100%;
  50. width: 100%;
  51. overflow: hidden;
  52. }
  53. </style>