Files
shoot-miniprograms/src/components/BowTarget.vue

111 lines
1.9 KiB
Vue
Raw Normal View History

2025-05-10 16:57:36 +08:00
<script setup>
defineProps({
totalRound: {
type: Number,
default: 0,
},
currentRound: {
type: Number,
default: 0,
},
avatar: {
type: String,
default: "",
},
power: {
type: Number,
default: 0,
},
tips: {
type: String,
default: "",
},
debug: {
type: Boolean,
default: false,
},
});
</script>
2025-05-08 22:05:53 +08:00
<template>
<view class="container">
<view class="header">
2025-05-10 16:57:36 +08:00
<text v-if="debug" class="header-tips">大人请射箭</text>
<image v-if="!debug" :src="avatar" mode="widthFix" />
2025-05-08 22:05:53 +08:00
<view>
<image src="../static/b-power.png" mode="widthFix" />
2025-05-10 16:57:36 +08:00
<view>电量{{ power }}%</view>
2025-05-08 22:05:53 +08:00
</view>
2025-05-10 16:57:36 +08:00
<text v-if="!tips && totalRound > 0">{{
currentRound + "/" + totalRound
}}</text>
2025-05-08 22:05:53 +08:00
</view>
<image src="../static/bow-target.png" mode="widthFix" />
2025-05-10 16:57:36 +08:00
<view v-if="debug" class="footer">
<image :src="avatar" mode="widthFix" />
</view>
<text v-if="tips">{{ tips }}</text>
2025-05-08 22:05:53 +08:00
</view>
</template>
<style scoped>
.container {
position: relative;
width: calc(100% - 30px);
2025-05-10 16:57:36 +08:00
padding: 15px;
2025-05-08 22:05:53 +08:00
}
.container > image {
width: 100%;
2025-05-10 16:57:36 +08:00
padding: 10px 0;
2025-05-08 22:05:53 +08:00
}
.header {
2025-05-10 22:16:59 +08:00
width: 100%;
2025-05-08 22:05:53 +08:00
display: flex;
align-items: center;
justify-content: space-between;
font-size: 13px;
}
2025-05-10 16:57:36 +08:00
.header > image:first-child {
2025-05-08 22:05:53 +08:00
width: 40px;
height: 40px;
}
2025-05-10 16:57:36 +08:00
.header > view:nth-child(2) {
2025-05-08 22:05:53 +08:00
display: flex;
align-items: center;
color: #b9b9b9;
}
2025-05-10 16:57:36 +08:00
.header > view:nth-child(2) > image {
2025-05-08 22:05:53 +08:00
width: 22px;
margin-right: 5px;
}
2025-05-10 16:57:36 +08:00
.header > text:nth-child(3) {
position: absolute;
font-size: 20px;
color: #fed847;
top: 75px;
font-size: 16px;
}
.header-tips {
font-size: 20px;
color: #fed847;
}
.footer {
width: calc(100% - 20px);
padding: 0 10px;
display: flex;
margin-top: -40px;
}
.footer > image {
width: 40px;
height: 40px;
}
.container > text {
width: 100%;
color: #fed847;
text-align: center;
line-height: 40px;
display: block;
margin-top: 20px;
}
2025-05-08 22:05:53 +08:00
</style>