You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
501 B
Vue

11 months ago
<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>