36 lines
501 B
Vue
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>
|