home.vue 791 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <view>
  3. <cu-custom ref="Dustom"
  4. bgImage="https://yostest175549.obs.cn-east-2.myhuaweicloud.com:443/202306151686796745663B52544232.png">
  5. <block slot="backText">返回</block>
  6. <block slot="content">
  7. </block>
  8. </cu-custom>
  9. 首页
  10. <view style="width:20px;height: 100vh;background-color: red;">
  11. </view>
  12. <view style="width:50px;height: 100vh;background-color: red;">
  13. </view>
  14. <view style="width:120px;height: 100vh;background-color: red;">
  15. </view>
  16. <view style="height: calc(16.533vw + env(safe-area-inset-bottom) / 2);" />
  17. </view>
  18. </template>
  19. <script>
  20. export default {
  21. name: 'Home',
  22. data() {
  23. return {
  24. };
  25. },
  26. mounted() {
  27. const Dustom = this.$refs.Dustom;
  28. Dustom.CustomBar = Dustom.CustomBar + 66;
  29. },
  30. }
  31. </script>
  32. <style lang="scss"></style>