index.vue 381 B

12345678910111213141516171819202122232425
  1. <template>
  2. <view class="loadingP">
  3. <image src="@/static/other/loadingIcon.png" mode="" class="loadingPic"></image>
  4. <view class="loadingTxt">
  5. 页面加载中...
  6. </view>
  7. </view>
  8. </template>
  9. <script>
  10. export default {
  11. name: "loadingPage",
  12. // props: ['show'],
  13. data() {
  14. return {
  15. };
  16. }
  17. }
  18. </script>
  19. <style lang="scss" scoped>
  20. @import "./index.scss";
  21. </style>