about.vue 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. <template>
  2. <view>
  3. <view class="d-flex f-column a-center top">
  4. <image src="../../static/logo.png" mode=""></image>
  5. <view class="main-color-text f-weight-bold m2">欢迎使用设备管理系统!</view>
  6. </view>
  7. <view class="f-weight-bold name text-center">公司简介</view>
  8. <view class="f-size-28 text-color-6 px3">
  9. 蓝湖是冰岛最大的温泉。从冰岛首都雷克雅未克市向东南方向驱车1小时左右,就可到达冰岛著名的地热温泉——蓝湖。有些游客慕名而来,更
  10. </view>
  11. <view class="d-flex j-between mx3 py2 border-bottom" style="margin-top: 50rpx" @tap="phone">
  12. <view class="f-size-30 text-color-3">客服电话</view>
  13. <view class="d-flex a-center">
  14. <view class="ml-2 main-color-text"> 15685653265 </view>
  15. </view>
  16. </view>
  17. <u-link href="http://www.baidu.com">
  18. <view class="d-flex j-between mx3 py2 border-bottom">
  19. <view class="f-size-30 text-color-3">公司网址</view>
  20. <view class="d-flex a-center">
  21. <view class="ml-2 main-color-text"> www.baidu.com </view>
  22. </view>
  23. </view>
  24. </u-link>
  25. <view class="d-flex j-between mx3 py2 border-bottom">
  26. <view class="f-size-30 text-color-3">版本号</view>
  27. <view class="d-flex a-center">
  28. <view class="ml-2 text-color-6"> V1.0.0 </view>
  29. </view>
  30. </view>
  31. </view>
  32. </template>
  33. <script>
  34. export default {
  35. data() {
  36. return {};
  37. },
  38. methods: {
  39. //
  40. phone() {
  41. uni.makePhoneCall({
  42. phoneNumber: '15623652563'
  43. });
  44. }
  45. }
  46. };
  47. </script>
  48. <style scoped lang="less">
  49. .top {
  50. font-size: 28rpx;
  51. padding-top: 130rpx;
  52. image {
  53. width: 170rpx;
  54. height: 123rpx;
  55. }
  56. }
  57. .name {
  58. font-size: 42rpx;
  59. color: #333333;
  60. margin: 60rpx 0;
  61. }
  62. </style>