| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <block v-if="type === 'channelVideoQrCode'">
- <view class="channel-video-qrcode">
- <view>
- <image style="width: 240rpx; height: 240rpx" :src="src"></image>
- <view>扫码查看视频内容</view>
- </view>
- </view>
- </block>
- <block v-else>
- <view class="channel-video">
- <channel-video :feed-id="feedId" :finder-user-name="finderUserName"></channel-video>
- <view style="color: var(--uni-color-primary)">点击观看视频</view>
- </view>
- </block>
- </template>
- <script>
- import { handle, request } from "@kasite/uni-app-base";
- import { REQUEST_CONFIG } from "@kasite/uni-app-base/config";
- export default {
- props: {
- type: {
- type: String,
- default: "",
- },
- src: {
- type: String,
- default: "",
- },
- feedId: {
- type: String,
- default: "",
- },
- finderUserName: {
- type: String,
- default: "",
- },
-
- },
- data() {
- return {};
- },
- methods: {},
- mounted() {},
- };
- </script>
- <style>
- .channel-video {
- display: flex;
- justify-content: center;
- }
- .channel-video-qrcode {
- display: flex;
- justify-content: center;
- }
- .channel-video-qrcode > view {
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- </style>
|