uni-admission-fee/pages/start.vue
2023-10-27 16:43:30 +08:00

36 lines
501 B
Vue

<template>
<view>
</view>
</template>
<script>
export default {
components: {},
data () {
return {
};
},
onLoad () {
setTimeout(() => {
uni.reLaunch({
url: '/pages/ticket/index'
});
}, 1000);
},
onShow () {
},
methods: {
},
};
</script>
<style lang="scss" scope>
page {
background: url("../static/bg-start.png") no-repeat;
background-size: 100% 100%;
background-attachment: fixed;
height: 100vh;
box-sizing: border-box;
}
</style>