index.vue 719 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <template>
  2. <view class="pages">
  3. <image class="main-img" src="../../static/main.png"></image>
  4. </view>
  5. </template>
  6. <script>
  7. import { systemInfo } from "@/mixin.js";
  8. import tabbar from "../../components/tabbar.vue";
  9. export default {
  10. components:{
  11. tabbar,
  12. // cartfixed
  13. },
  14. mixins:[systemInfo],
  15. data() {
  16. return {
  17. staticUrl:this.$commonConfig.staticUrl,
  18. }
  19. },
  20. computed: {
  21. },
  22. onShow() {
  23. },
  24. beforeRouteLeave() {
  25. },
  26. onLoad(query) {
  27. },
  28. onReady() {
  29. },
  30. onUnload() {
  31. },
  32. methods: {
  33. }
  34. }
  35. </script>
  36. <style>
  37. page{
  38. background-color: #fff;
  39. }
  40. </style>
  41. <style lang="scss" scoped>
  42. .main-img{
  43. display: block;
  44. width: 100%;
  45. height: 100vh;
  46. height: 100dvh;
  47. }
  48. </style>