inbuild.vue 817 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <template>
  2. <view>
  3. <view class="tip-wrap">
  4. <image class="empty-img" src="../../static/img/empty.png" mode="widthFix"></image>
  5. <!-- <view class="msg">
  6. {{msg}}
  7. </view> -->
  8. <view class="tip">
  9. {{tip}}
  10. </view>
  11. </view>
  12. </view>
  13. </template>
  14. <script>
  15. export default{
  16. data(){
  17. return{
  18. tip:'此功能正在建设中',
  19. msg:''
  20. }
  21. },
  22. onLoad(page){
  23. this.msg = page.msg;
  24. },
  25. onShow(){
  26. },
  27. methods:{
  28. }
  29. }
  30. </script>
  31. <style lang="scss" scoped>
  32. page{background-color: #F4F4F4;}
  33. .tip-wrap{text-align: center;margin-top: 20vh;}
  34. .msg{font-size: 36rpx;color: #444;margin-bottom: 24rpx;}
  35. .tip{font-size: 40rpx;color: #737373;line-height: 56px;letter-spacing: 2px;font-weight: 400;}
  36. .empty-img{width: 253rpx;margin-bottom: 52rpx;}
  37. // @import './inbuild.scss'
  38. </style>