1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071 |
- <template>
- <view class="container">
- <view class="logoContent">
- <view class="logoBorder">
- <image class="logoImg" src="/static/logo.png"></image>
- </view>
- </view>
- <view class="textContent">
- <view>智享亿家作为中国出色的垃圾分类专家和平台,致力于改变中国社区环保现状,通过多年的耕耘和积累,打造的城市垃圾分类一体化智能解决方案已获得咸阳、西安航天等多地市的环保垃圾处理资格,并成为全国住建部在咸阳市的环保模范单位。</view>
- </view>
- </view>
- </template>
- <script>
- export default {
- onLoad() {
- // 开启分享
- uni.showShareMenu({
- withShareTicket: true,
- menus: ['shareAppMessage', 'shareTimeline']
- })
- },
- }
- </script>
- <style lang="less">
- page{
- background: #FFFFFF;
- }
- .container{
- font-size: 32rpx;
- padding:0 50rpx;
- text-align: center;
- color:#666;
- .logoContent{
- .logoBorder{
- width:200rpx;
- height:200rpx;
- border:2px solid #eee;
- border-radius: 20rpx;
- margin:50rpx 0 15rpx 0;
- display: inline-block;
- position: relative;
- .logoImg{
- width:180rpx;
- height:180rpx;
- position: absolute;
- top:0;
- left:0;
- right:0;
- bottom:0;
- margin:auto;
- }
- }
- }
- .textContent{
- text-align: left;
- margin-top: 30rpx;
- font-size: 32rpx;
- .tetxTitle{
- margin-bottom: 10rpx;
- font-size: 32rpx;
- }
- > view{
- padding: 16upx 0;
- line-height: 50upx;
- text-indent: 60rpx;
- }
- }
- }
- </style>
|