view-code-page.vue 843 字节
Newer Older
1 2 3 4 5 6 7 8 9
<template>
  <view class="code-view">
    <!-- 默认不启用代码浏览模块,如有需要请关闭注释 -->
    <uni-im-code-view :msg="msg" :showFullBtn="false"></uni-im-code-view>
  </view>
</template>

<script>
  import uniImCodeView from '@/uni_modules/uni-im/components/uni-im-msg/types/code.vue'
10
  import uniIm from '@/uni_modules/uni-im/sdk/index.js';
11 12 13 14 15 16 17 18 19 20 21 22 23
  export default {
    components: {
      uniImCodeView
    },
    data() {
      return {
        msg: {
          type: "code",
          body: ""
        }
      }
    },
    onLoad({
24
      msgId,conversationId
25
    }) {
DCloud_JSON's avatar
3.4.31  
DCloud_JSON 已提交
26
      this.msg = uniIm.conversation.find(conversationId).msg.find(msgId)
27 28 29 30 31 32
    },
    methods: {}
  }
</script>

<style lang="scss">
33
@import "@/uni_modules/uni-im/common/baseStyle.scss";
34 35 36 37 38 39
.text-box,
.code-view {
  width: 750rpx;
  height: 100vh;
}
</style>