index.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. <template>
  2. <view class="wrap">
  3. <view class="header-wrap">
  4. <view class="header f-padding">
  5. <view class="header-item header-title">
  6. 欢迎登录
  7. <view class="message" @click="openPage('pages/center/news/news')">
  8. <u-icon name="bell"></u-icon>
  9. <u-badge type="error" class="badge" :count="newsTotal" :offset='[-10,-10]'></u-badge>
  10. </view>
  11. </view>
  12. <view class="header-item header-con">{{vuex_user.officerName}}</view>
  13. </view>
  14. </view>
  15. <view class="statistics">
  16. <!-- 设备状态 1-已离线 2-运行中 4-保养中 -->
  17. <u-row justify="center">
  18. <u-col span="4" text-align="center" @click="openPage('pages/equipmentList/equipmentList','')">
  19. <view class="count" style="color: #0074DD;">{{deviceStatisData.totalNum||'0'}}</view>
  20. <view class="name">总设备数</view>
  21. </u-col>
  22. <u-col span="4" text-align="center" @click="openPage('pages/equipmentList/equipmentList','1')">
  23. <view class="count" style="color: #f00;">{{deviceStatisData.onlineNum||'0'}}</view>
  24. <view class="name">正常</view>
  25. </u-col>
  26. <u-col span="4" text-align="center" @click="openPage('pages/equipmentList/equipmentList','0')">
  27. <view class="count" style="color: #07A68D;">{{deviceStatisData.exceptionNum||'0'}}</view>
  28. <view class="name">异常</view>
  29. </u-col>
  30. </u-row>
  31. </view>
  32. <view class="list-block equipment">
  33. <view class="list-block-til u-font-18">设备信息</view>
  34. <!-- <view class="list-block-con u-flex u-flex-wrap u-row-left" v-if="deviceTypeListData.length>0">
  35. <view class="list-block-item"
  36. @click="openPage('pages/deviceList/deviceList',item.id)"
  37. v-for="item in deviceTypeListData" :key="item.id">
  38. <image class="img" :src="item.deviceTypeImgUrl||''" mode="widthFix"></image>
  39. <view class="txt">{{item.deviceTypeName}}</view>
  40. </view>
  41. </view>
  42. <u-empty text="暂无内容" mode="list" v-else></u-empty> -->
  43. <view class="list-block-con u-flex u-flex-wrap u-row-left">
  44. <view class="list-block-item"
  45. @click="openPage('pages/deviceList/deviceList','1')" >
  46. <image class="img" src="../../static/img/dici.png" mode="widthFix"></image>
  47. <view class="txt">地磁</view>
  48. </view>
  49. <view class="list-block-item"
  50. @click="openPage('pages/deviceList/deviceList','2')" >
  51. <image class="img" src="../../static/img/cheweisuo.png" mode="widthFix"></image>
  52. <view class="txt">车位锁</view>
  53. </view>
  54. <view class="list-block-item"
  55. @click="openPage('pages/deviceList/deviceList','3')" >
  56. <image class="img" src="../../static/img/daozha.png" mode="widthFix"></image>
  57. <view class="txt">道闸</view>
  58. </view>
  59. </view>
  60. </view>
  61. <view class="list-block">
  62. <view class="list-block-til u-font-18">考勤管理</view>
  63. <view class="list-block-con u-flex u-flex-wrap u-row-left">
  64. <view class="list-block-item"
  65. @click="openPage('pages/clockIn/clockIn')">
  66. <image class="img" src="../../static/img/daka.png" mode="widthFix"></image>
  67. <view class="txt">打卡</view>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="list-block">
  72. <view class="list-block-til u-font-18">问题上报</view>
  73. <view class="list-block-con u-flex u-flex-wrap u-row-left">
  74. <view class="list-block-item"
  75. @click="openPage('pages/report/report')">
  76. <image class="img" src="../../static/img/report.png" mode="widthFix"></image>
  77. <view class="txt">问题上报</view>
  78. </view>
  79. </view>
  80. </view>
  81. </view>
  82. </template>
  83. <script>
  84. export default {
  85. data() {
  86. return {
  87. newsTotal:'',
  88. noticeList:[],
  89. devicemsg:[],
  90. deviceStatisData:[],
  91. deviceTypeListData:[],
  92. }
  93. },
  94. onLoad() {
  95. },
  96. onShow() {
  97. // this.deviceTypeList();
  98. this.deviceStatis();
  99. // this.getUnreadTotal();
  100. },
  101. methods: {
  102. openPage(path,param) {
  103. this.$u.route({
  104. url: path,
  105. params:{
  106. param:param
  107. }
  108. })
  109. },
  110. deviceStatis(){
  111. this.$u.api.getDeviceStatis().then(res=>{
  112. if(res.code==200){
  113. this.deviceStatisData = res.data;
  114. // console.log('getDeviceStatis',res);
  115. }else{
  116. uni.showToast({
  117. icon:'none',
  118. title:res.msg
  119. })
  120. }
  121. console.log('res',res);
  122. }).catch(err=>{
  123. console.log('err',err);
  124. })
  125. },
  126. deviceTypeList(){
  127. this.$u.api.getDeviceTypeList().then(res=>{
  128. if(res.code==200){
  129. this.deviceTypeListData = res.data;
  130. // console.log('getDeviceStatis',res);
  131. }else{
  132. uni.showToast({
  133. icon:'none',
  134. title:res.msg
  135. })
  136. }
  137. console.log('res',res);
  138. }).catch(err=>{
  139. console.log('err',err);
  140. })
  141. },
  142. getUnreadTotal(){
  143. let that = this;
  144. this.$u.api.unreadTotal().then(res=>{
  145. if(res.code==200){
  146. this.newsTotal = res.data.noReadCount;
  147. }else{
  148. uni.showToast({
  149. icon:'none',
  150. title:res.msg
  151. })
  152. }
  153. console.log('res',res);
  154. }).catch(err=>{
  155. console.log('err',err);
  156. })
  157. },
  158. }
  159. }
  160. </script>
  161. <style lang="scss" scoped>
  162. page{background-color: #F6F6F6;}
  163. .header-wrap{
  164. overflow: hidden;
  165. .header{
  166. position: relative;
  167. box-sizing: border-box;
  168. height: 260rpx;
  169. padding: 48rpx 24rpx 98rpx;
  170. color: #fff;
  171. border-radius: 0 0 50% 50%;
  172. &::before{
  173. width: 140%; height: 100%; position: absolute; left: -20%; top: 0; content: ''; border-radius: 0 0 50% 50%;
  174. background: linear-gradient(180deg, #4466D8 0%, #8274F8 100%);
  175. background: url(../../static/img/index-header-bg.png) no-repeat;
  176. }
  177. .header-title{
  178. font-size: 50rpx;
  179. font-weight: 400;
  180. color: #FFFFFF;
  181. line-height: 70rpx;
  182. letter-spacing: 2rpx;
  183. margin-bottom: 3rpx;
  184. .message{
  185. position: relative;
  186. float: right;
  187. cursor: pointer;
  188. .badge{
  189. }
  190. }
  191. }
  192. .header-con{
  193. font-size: 28rpx;
  194. font-weight: 400;
  195. color: #FFFFFF;
  196. line-height: 40rpx;
  197. letter-spacing: 1rpx;
  198. }
  199. .header-item{
  200. position: relative;
  201. }
  202. }
  203. }
  204. .statistics{
  205. position: relative;
  206. margin: -80rpx 24rpx 24rpx;
  207. padding: 43rpx 30rpx 43rpx;
  208. border-radius: 10rpx;
  209. background-color: #fff;
  210. .count{
  211. font-size: 86rpx;
  212. font-weight: 400;
  213. color: #3171CF;
  214. line-height: 100rpx;
  215. letter-spacing: 3rpx;
  216. }
  217. .name{
  218. font-size: 26rpx;
  219. font-weight: 400;
  220. color: #7D7D7D;
  221. line-height: 37rpx;
  222. letter-spacing: 1px;
  223. }
  224. }
  225. .notice{
  226. margin: 20rpx 0;
  227. padding: 0 30rpx;
  228. background-color: #fff;
  229. }
  230. </style>