Files
miniapp/pages/index.vue
T

44 lines
691 B
Vue
Raw Normal View History

2023-09-05 16:14:07 +08:00
<template>
<view class="content">
2023-09-12 16:58:05 +08:00
<image class="logo" src="@/static/chuizi.png"></image>
2023-09-05 16:14:07 +08:00
<view class="text-area">
2023-11-23 14:35:50 +08:00
<text class="title">仲裁系统</text>
2023-09-05 16:14:07 +08:00
</view>
</view>
</template>
<script>
export default {
onLoad: function() {
}
}
</script>
<style>
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.logo {
height: 200rpx;
width: 200rpx;
margin-top: 200rpx;
margin-left: auto;
margin-right: auto;
margin-bottom: 50rpx;
}
.text-area {
display: flex;
justify-content: center;
}
.title {
font-size: 36rpx;
color: #8f8f94;
}
</style>