Files
ZangShiQi/addon/cashier/source/os/pages/index/loading.vue
2026-04-04 17:27:12 +08:00

33 lines
575 B
Vue
Executable File

<template>
<page-meta :root-font-size="rootSize"></page-meta>
<view class="container" :style="themeColor">
<image src="@/static/cashier/start_logo.png" mode="heightFix" />
</view>
</template>
<script>
export default {
data() {
return {};
},
onShow() {
this.loadThemeColor();
},
};
</script>
<style lang="scss" scoped>
.container {
width: 100vw;
height: 100vh;
background: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
image {
height: 80%;
}
}
</style>