about.vue 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. <template>
  2. <view class="u-page">
  3. <view class="u-demo-block">
  4. <view class="u-demo-block__content">
  5. <view class="album">
  6. <view class="album__avatar">
  7. <br><br><br>
  8. <image style="left: 10%;"
  9. src="../../../static/appxz.png"
  10. ></image>
  11. </view>
  12. <br>
  13. <u--text
  14. text="梦想是人类潜在的意愿,是驱动科技的一种动力,必须要有。但只是想肯定不行,千里之行,始于足下,实施才是开始。"
  15. type="html"
  16. bold
  17. size="27"
  18. ></u--text>
  19. </view>
  20. </view>
  21. </view>
  22. <br><br><br><br><br><br><br>
  23. <view style="margin-left: 40%;">版本号:{{version}}</view>
  24. </view>
  25. </template>
  26. <script>
  27. export default {
  28. data() {
  29. return {
  30. desc: 'uView UI,是全面兼容nvue的uni-app生态框架,全面的组件和便捷的工具会让您信手拈来,如鱼得水。',
  31. desc1: `
  32. <p>&#12288;&#12288;梦想是人类潜在的意愿,是驱动科技的一种动力,必须要有。
  33. 但只是想肯定不行,千里之行,始于足下,实施才是开始。</p>
  34. <br><br><br><br><br><br><br><br>
  35. &#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;&#12288;开发作者:小鱼
  36. `,
  37. version:''
  38. }
  39. },
  40. onLoad() {
  41. this.version=uni.getSystemInfoSync().appWgtVersion
  42. },
  43. }
  44. </script>
  45. <style lang="scss" scoped>
  46. .u-content {
  47. margin-top: 100rpx;
  48. color: $u-content-color;
  49. font-size: 32rpx;
  50. line-height: 1.8;
  51. // 标签形式无效
  52. p {
  53. color: $u-tips-color;
  54. }
  55. }
  56. </style>