123456789101112131415161718192021222324252627282930313233343536373839 |
- <template>
- <view class="score-page-title">
- <view class="title-types"><text>{{name}}</text>/<text>{{zyLevelName}}</text></view>
- <view>
- <text class="user-score">{{userScore}}</text>/<text>{{Score}}</text>
- <!-- <text @click="handleOpenCard"><i></i> {{count}}/{{total}}</text> -->
- </view>
- </view>
- </template>
- <script setup>
- defineProps({
- name: {
- type: String
- },
- zyLevelName: {
- type: String
- },
- userScore: {
- type: [String,Number]
- },
- Score: {
- type: [String,Number]
- },
- // count: {
- // type: [String,Number]
- // },
- // total: {
- // type: [String,Number]
- // },
- })
- // const emits = defineEmits(['openCard'])
- // function handleOpenCard (){
- // emits('openCard')
- // }
- </script>
- <style>
- </style>
|