123456789101112131415161718192021222324252627282930 |
- <template>
- <view class="scroll-list-card mobile-card-box">
- <!-- <view>
- <img style="width: 100rpx;height: 100rpx;;" :src="data.pic" alt="" />
- </view> -->
- <view class="mobile-card-title">{{data.kcName === null ? '':data.kcName}}</view>
- <view class="mobile-card-row">
- <view class="timeSpan">时间:{{data.answerStartTime === null ? '': data.answerStartTime}}</view>
- <view class="timeSpan">总分:{{data.ksScore === null ? '': data.ksScore}}</view>
- </view>
- </view>
- </template>
- <script setup>
- import {
- toRefs,
- ref,
- computed
- } from "vue";
- const props = defineProps({
- data: {
- type: Object,
- },
- });
- const {
- data
- } = toRefs(props);
- </script>
|