aboutUs.vue 972 B

1234567891011121314151617181920212223242526272829303132
  1. <template>
  2. <view class="content">
  3. <fxyk-navbar :isSearch="false" title="关于我们"/>
  4. <u-image class="u-m-t-60" style="margin-left:288rpx;" width="177rpx" height="177rpx" :fade="false" src="/static/images/logo.png"></u-image>
  5. <view class="word text-center" style="margin-top:90rpx;">业扩</view>
  6. <view class="word text-center" style="margin-top:12rpx;margin-bottom:56rpx;">V1.0.0</view>
  7. <view style="padding:0 100rpx;">本项目主要是针对10千伏及以下业扩过程管 理,实现设计委托、初设评审、物资管理、现 场施工、竣工验收、工程结算等时限及环节全 过程管理。</view>
  8. </view>
  9. </template>
  10. <script>
  11. </script>
  12. <style lang="scss" scoped>
  13. page {
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .content {
  18. width: 100%;
  19. height: 100%;
  20. min-height: 100vh;
  21. background-color: $yk-bg-color;
  22. }
  23. .word {
  24. font-size: 29rpx;
  25. font-family: SimSun;
  26. font-weight: 400;
  27. line-height: 40rpx;
  28. color: #000000;
  29. }
  30. </style>