loading.vue 482 B

12345678910111213141516171819202122232425262728
  1. <template>
  2. <page-meta :root-font-size="getRootFontSize"></page-meta>
  3. <view class="container"><image :src="$util.img('public/uniapp/cashier/start_logo.png')" mode="heightFix"></image></view>
  4. </template>
  5. <script>
  6. export default {
  7. data() {
  8. return {};
  9. }
  10. };
  11. </script>
  12. <style lang="scss">
  13. .container {
  14. width: 100vw;
  15. height: 100vh;
  16. background: #fff;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. justify-content: center;
  21. image {
  22. height: 80%;
  23. }
  24. }
  25. </style>