💄 调整战绩页面UI

This commit is contained in:
目棃
2025-01-22 23:47:11 +08:00
parent c1cf8b4aa4
commit 7a112f4d17
4 changed files with 24 additions and 29 deletions

View File

@@ -1,9 +1,11 @@
<template>
<div class="tur-hs-box">
<div class="bg"><img :src="data.bg" alt="bg" v-if="data.name !== '炽空境'" /></div>
<div class="bg">
<TMiImg :src="data.bg" alt="bg" :ori="true" />
</div>
<div class="tur-hs-top">
<div class="tur-hs-title">
<img :src="data.comfortIcon" alt="comfort" />
<TMiImg :src="data.comfortIcon" alt="icon" :ori="true" />
<span>{{ data.comfortName }}</span>
</div>
<div class="tur-hs-name">{{ data.name }}</div>
@@ -29,6 +31,8 @@
</div>
</template>
<script lang="ts" setup>
import TMiImg from "@comp/app/t-mi-img.vue";
defineProps<{ data: TGApp.Sqlite.Record.Home }>();
</script>
<style lang="css" scoped>
@@ -87,6 +91,8 @@ defineProps<{ data: TGApp.Sqlite.Record.Home }>();
}
.tur-hs-text-grid {
position: relative;
z-index: 1;
display: flex;
width: 100%;
justify-content: space-between;

View File

@@ -1,7 +1,7 @@
<template>
<div class="tur-ri-box">
<div class="tur-ri-avatar">
<img :src="props.modelValue.avatar" alt="avatar" />
<TMiImg :ori="true" :src="props.modelValue.avatar" alt="avatar" />
</div>
<div class="tur-ri-content">
<div class="tur-ri-title">
@@ -16,6 +16,8 @@
</div>
</template>
<script lang="ts" setup>
import TMiImg from "@comp/app/t-mi-img.vue";
type TurRoleInfoProps = { uid: number; modelValue: TGApp.Sqlite.Record.Role };
const props = defineProps<TurRoleInfoProps>();

View File

@@ -1,12 +1,16 @@
<template>
<div class="tur-ws-box">
<div class="tur-ws-bg"><img :src="data.bg" alt="bg" /></div>
<div class="tur-ws-icon"><img :src="icon" alt="icon" /></div>
<div class="tur-ws-bg">
<TMiImg :ori="true" :src="data.bg" alt="bg" />
</div>
<div class="tur-ws-icon">
<TMiImg :ori="true" :src="icon" alt="icon" />
</div>
<div class="tur-ws-content">
<div class="tur-ws-title">
<span>{{ data.name }}</span>
<span v-if="data.offering" class="tur-ws-sub">
<img :src="offer" alt="offer" />
<TMiImg :src="data.offering.icon" alt="offer" :ori="true" />
<span>{{ data.offering.name }}等级</span>
<span>{{ data.offering.level }}</span>
<span></span>
@@ -38,42 +42,25 @@
</div>
</template>
<script lang="ts" setup>
import { event } from "@tauri-apps/api";
import type { Event, UnlistenFn } from "@tauri-apps/api/event";
import TMiImg from "@comp/app/t-mi-img.vue";
import { storeToRefs } from "pinia";
import { computed, onMounted, onUnmounted, ref } from "vue";
import { computed } from "vue";
import { useAppStore } from "@/store/modules/app.js";
type TurWorldSubProps = { data: TGApp.Sqlite.Record.WorldExplore };
let themeListener: UnlistenFn | null = null;
const { theme } = storeToRefs(useAppStore());
const props = defineProps<TurWorldSubProps>();
const icon = ref<string>();
const offer = ref<string>();
const imgFilter = computed<string>(() => {
if (props.data.name !== "纳塔") return "none";
if (theme.value === "dark") return "none";
return "invert(0.75)";
});
onMounted(async () => {
themeListener = await event.listen<string>("readTheme", (e: Event<string>) => {
if (e.payload === "dark") icon.value = props.data.iconLight;
else icon.value = props.data.iconDark;
});
if (props.data.offering) offer.value = props.data.offering.icon;
if (theme.value === "dark") icon.value = props.data.iconLight;
else icon.value = props.data.iconDark;
});
onUnmounted(() => {
if (themeListener !== null) {
themeListener();
themeListener = null;
}
const icon = computed<string>(() => {
if (theme.value === "dark") return props.data.iconLight;
return props.data.iconDark;
});
</script>
<style lang="css" scoped>