NurseStationApp/pages/startup/startup.vue

54 lines
724 B
Vue
Raw Normal View History

2022-10-12 16:54:34 +08:00
<template>
<view class="app">
<image src="../../static/启动页.png" mode=""></image>
<view class="title">
泉医到家
</view>
</view>
</template>
<script>
export default {
data() {
return {
};
},
created() {
this.info();
},
methods: {
info() {
setTimeout(() => {
uni.reLaunch({
url: '/pages/login/login'
});
}, 2000);
},
},
}
</script>
<style lang="scss">
image {
2022-10-12 17:45:22 +08:00
width: 50%;
height: 200rpx;
2022-10-12 16:54:34 +08:00
position: absolute;
2022-10-12 17:45:22 +08:00
left: 25%;
2022-10-24 14:42:03 +08:00
top: 28%;
2022-10-12 16:54:34 +08:00
}
.title {
width: 80%;
height: 48rpx;
font-size: 49rpx;
text-align: center;
font-family: DengXian;
font-weight: bold;
color: #000000;
position: absolute;
top: 50%;
left: 10%;
}
</style>