emoji.vue 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <template>
  2. <swiper :class="show" :indicator-dots="indicatorDots" :autoplay="autoplay" :interval="interval" :duration="duration">
  3. <block>
  4. <swiper-item>
  5. <view class="emoji_item">
  6. <image v-for="(item, index) in emojiObj.map1" :key="index" :src="'../../../../' + emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  7. </view>
  8. <view class="emoji_item">
  9. <image v-for="(item, index) in emojiObj.map2" :key="index" :src="'../../../../' +emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  10. </view>
  11. <view class="emoji_item">
  12. <image v-for="(item, index) in emojiObj.map3" :key="index" :src="'../../../../' +emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  13. </view>
  14. </swiper-item>
  15. </block>
  16. <block class="second">
  17. <swiper-item>
  18. <view class="emoji_item">
  19. <image v-for="(item, index) in emojiObj.map4" :key="index" :src="'../../../../' +emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  20. </view>
  21. <view class="emoji_item">
  22. <image v-for="(item, index) in emojiObj.map5" :key="index" :src="'../../../../' +emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  23. </view>
  24. <view class="emoji_item last_item">
  25. <image v-for="(item, index) in emojiObj.map6" :key="index" :src="'../../../../' +emojiObj.path + item" @tap="sendEmoji" :data-emoji="index"></image>
  26. </view>
  27. </swiper-item>
  28. </block>
  29. </swiper>
  30. </template>
  31. <script>
  32. let WebIM = require("../../../../../utils/WebIM")["default"];
  33. let msgType = require("../../../msgtype");
  34. let EMOJI_STATUS = {
  35. OPENED: "showEmoji",
  36. CLOSED: "emoji_list"
  37. };
  38. export default {
  39. data() {
  40. return {
  41. show: EMOJI_STATUS.CLOSED,
  42. emoji: WebIM.Emoji,
  43. emojiObj: WebIM.EmojiObj,
  44. interval: 5000,
  45. duration: 1000,
  46. autoplay: false,
  47. indicatorDots: true // 显示面板指示点
  48. };
  49. },
  50. components: {},
  51. props: {},
  52. methods: {
  53. openEmoji() {
  54. this.show=EMOJI_STATUS.OPENED
  55. },
  56. cancelEmoji() {
  57. this.show= EMOJI_STATUS.CLOSED
  58. },
  59. // 输出 emoji
  60. sendEmoji(event) {
  61. var emoji = event.target.dataset.emoji;
  62. this.$emit("newEmojiStr", {
  63. msg: emoji,
  64. type: msgType.EMOJI
  65. }, {
  66. bubbles: true,
  67. composed: true
  68. });
  69. }
  70. }
  71. };
  72. </script>
  73. <style>
  74. @import "./emoji.css";
  75. </style>