1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- <template>
- <view class="pages">
- <image class="main-img" src="../../static/main.png"></image>
- </view>
- </template>
- <script>
- import { systemInfo } from "@/mixin.js";
- import tabbar from "../../components/tabbar.vue";
- export default {
- components:{
- tabbar,
- // cartfixed
- },
- mixins:[systemInfo],
- data() {
- return {
- staticUrl:this.$commonConfig.staticUrl,
- }
- },
- computed: {
- },
- onShow() {
-
- },
- beforeRouteLeave() {
-
- },
- onLoad(query) {
- },
- onReady() {
-
- },
- onUnload() {
-
- },
- methods: {
- }
- }
- </script>
- <style>
- page{
- background-color: #fff;
- }
- </style>
- <style lang="scss" scoped>
- .main-img{
- display: block;
- width: 100%;
- height: 100vh;
- height: 100dvh;
- }
- </style>
|