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