| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- <template>
- <view>
- <view class="line"></view>
- <view class="logo-box">
- <image src="../../../static/logo.png" mode="widthFix"></image>
- <view class="version">
- <view>
- 云飞物联网
- </view>
- <view>
- V3.0.0
- </view>
- </view>
- </view>
- <view class="line"></view>
- <view class="part">
- <view class="info-item">
- <text class="tit">技术支持</text>
- <text class="val">河南云飞科技发展有限公司</text>
- </view>
- <view class="divide"></view>
- <view class="info-item">
- <text class="tit">关注微信</text>
- <text class="val">河南云飞科技发展有限公司</text>
- </view>
- </view>
- <view class="line"></view>
- <view class="part">
- <view class="info-item">
- <text class="tit">公司官网</text>
- <text class="val">www.hnyfkj.cn</text>
- </view>
- <view class="divide"></view>
- <view class="info-item">
- <text class="tit">业务合作</text>
- <text class="val">400-690-7990</text>
- </view>
- <view class="divide"></view>
- <view class="info-item">
- <text class="tit">公司邮箱</text>
- <text class="val">hnyf826@163.com</text>
- </view>
- </view>
- <view class="line"></view>
- <view class="part">
- <view class="info-item">
- <text class="tit">版本更新</text>
- <view class="iconfont icon-shipin"></view>
- </view>
- </view>
- <view class="bottom">
- ©河南云飞科技发展有限公司
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
-
- }
- },
- methods: {
-
- }
- }
- </script>
- <style lang="scss">
- page {
- background:$uni-bg-color-grey;
- }
- .line{
- height:16rpx;
- width:100%;
- background:$uni-bg-color-grey;
- }
- .bottom{
- height:200rpx;
- line-height:200rpx;
- font-size:8px;
- text-align: center;
- }
- .logo-box{
- background:#fff;
- text-align: center;
- padding:100rpx 0;
- image{
- width:100rpx;
- }
- .version{
- font-size:24rpx;
- margin-top:20rpx;
- }
- }
- .part{
- background:#fff;
- padding:0 40rpx;
- .divide{
- width:100%;
- height:1px;
- background:$uni-bg-color-grey;
- }
- .info-item{
- display:flex;
- justify-content: space-between;
- line-height:100rpx;
- .tit{font-size:14px}
- .val{
- font-size:12px;
- color:#666;
- }
- }
- }
- </style>
|