123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- <template>
- <view class="tabPage" :style="{'min-height':h+'px', 'padding-top':mt+'px'}">
- <cus-header title='首页' :titleStyle="{color:'transparent'}" :showback='false' bgColor='transparent'></cus-header>
- <image class="topbg" :src="imgBase+'home/home_top_bg.png'" mode="widthFix"></image>
- <div class="header">
- <div class="top">
- <div class="left">
- <div class="title">
- <text>谷锐特</text>
- <u-icon name="arrow-right" color="#FFFFFF" size="32"></u-icon>
- </div>
- <div class="tip">{{time}},天气{{weatherInfo.weather||''}}</div>
- </div>
- <div class="right" @tap="tuTurn('/pages/my/info')">
- <image :src="avatar"></image>
- </div>
- </div>
- <div class="weather">
- <div class="item line">
- <div class="text">{{deviceNum}}<span></span></div>
- <p>运行设备</p>
- </div>
- <div class="item line">
- <div class="text">{{weatherInfo.temperature||''}}<span>℃</span></div>
- <p>温度</p>
- </div>
- <div class="item">
- <div class="text">{{weatherInfo.humidity||''}}<span>%</span></div>
- <p>湿度</p>
- </div>
- </div>
- </div>
- <div class="boxs">
- <div class="box" @tap="tuTurn('/pagesHome/video/index')">
- <image :src="imgBase+'home/home_icon_spjk.png'"></image>
- <text>视频监控</text>
- </div>
- <div class="box" @tap="tuTurn('/pagesHome/airConditioner/index')">
- <image :src="imgBase+'home/home_icon_zhkt.png'"></image>
- <text>智慧空调</text>
- </div>
- <div class="box" @tap="tuTurn('/pagesHome/entranceGuard/index')">
- <image :src="imgBase+'home/home_icon_mjgl.png'"></image>
- <text>门禁管理</text>
- </div>
- <div class="box" @tap="tuTurn('/pagesHome/energyMeter/index')">
- <image :src="imgBase+'home/home_icon_db.png'"></image>
- <text>电表</text>
- </div>
- <div class="box" @tap="tuTurn('/pagesHome/energyConsumption/index')">
- <image :src="imgBase+'home/home_icon_nhfx.png'"></image>
- <text>能耗分析</text>
- </div>
- <div class="box" @tap="tuTurn('/pagesHome/employee/index')">
- <image :src="imgBase+'home/home_icon_yggl.png'"></image>
- <text>员工管理</text>
- </div>
- </div>
- <Tabbar :tabbarIndex="0"></Tabbar>
- </view>
- </template>
- <script>
- var amapFile = require('@/utils/amap-wx.130.js');
- var myAmapFun = new amapFile.AMapWX({key:'f83be04fc5f239edfa9f1201e4bc7c47'});
- import Tabbar from '@/components/CusTabbar/index.vue'
- export default {
- components:{
- Tabbar
- },
- data(){
- return {
- avatar:this.$imgBase+'home/home_avator.png',
- time:'早上好',
- deviceNum:0,
- weatherInfo:{}
- }
- },
- onShow() {
- this.avatar = JSON.parse(uni.getStorageSync('userInfo')||'{}')?.headUrl;
- },
- onLoad() {
- this.getTime();
- this.getWeather();
- },
- methods:{
- getTime(){
- let hours = new Date().getHours()+1;
- if(hours<=8) this.time = '早上好';
- else if(hours<=11) this.time = '上午好';
- else if(hours<=13) this.time = '中午好';
- else if(hours<=18) this.time = '下午好';
- else if(hours<=24) this.time = '晚上好';
- },
- getWeather(){
- myAmapFun.getWeather({
- success:res=>{
- this.weatherInfo = res.liveData;
- }
- })
- },
- tuTurn(url){
- if(!url) return
- uni.navigateTo({ url });
- }
- }
- }
- </script>
- <style scoped lang="less">
- .tabPage{
- width: 100%;
- padding: 0 0 188rpx;
- box-sizing: border-box;
- background: #F4F8FB;
-
- .topbg{
- width: 100%;
- position: fixed;
- top: 0;
- left: 0;
- z-index: 0;
- }
-
- .header{
- width: 100%;
- position: relative;
-
- .top{
- width: 100%;
- padding: 26rpx 40rpx 0;
- box-sizing: border-box;
- display: flex;
- align-items: center;
- justify-content: space-between;
- .left{
- .title{
- display: flex;
- align-items: center;
- text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 48rpx;
- color: #FFFFFF;
- line-height: 48rpx;
- text-align: left;
- letter-spacing: 2rpx;
- margin-right: 20rpx;
- }
- }
- .tip{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 30rpx;
- text-align: left;
- margin-top: 20rpx;
- }
- }
- .right{
- width: 90rpx;
- height: 90rpx;
- background: #FFFFFF;
- padding: 2rpx;
- box-sizing: border-box;
- border-radius: 50%;
- image{
- width: 100%;
- height: 100%;
- border-radius: 50%;
- }
- }
- }
-
- .weather{
- width: 100%;
- margin-top: 50rpx;
- display: flex;
- .item{
- width: calc(100% / 3);
- display: flex;
- flex-direction: column;
- align-items: center;
- position: relative;
- &::after{
- content: '';
- width: 1rpx;
- height: 64rpx;
- background: #CCCCCC;
- position: absolute;
- top:10rpx;
- right: 0;
- }
- .text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 44rpx;
- color: #FFFFFF;
- line-height: 44rpx;
- span{
- font-weight: 400;
- font-size: 20rpx;
- }
- }
- p{
- font-family: PingFangSC, PingFang SC;
- font-weight: 400;
- font-size: 24rpx;
- color: #FFFFFF;
- line-height: 24rpx;
- text-align: center;
- margin-top: 16rpx;
- }
- }
- }
- }
-
- .boxs{
- width: calc(100% - 48rpx);
- margin: 38rpx 24rpx 0;
- display: flex;
- justify-content: space-between;
- flex-wrap: wrap;
- position: relative;
- .box{
- width: calc(50% - 11rpx);
- padding: 40rpx 22rpx;
- box-sizing: border-box;
- background: #FFFFFF;
- border-radius: 8rpx;
- display: flex;
- align-items: center;
- margin-top: 20rpx;
- image{
- width: 90rpx;
- height: 88rpx;
- }
- text{
- font-family: PingFang-SC, PingFang-SC;
- font-weight: bold;
- font-size: 30rpx;
- color: #333333;
- line-height: 30rpx;
- padding-left: 24rpx;
- }
- }
- }
- }
- </style>
|