index.vue 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  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/message/message')">
  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: #07A68D;">{{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: #f00;">{{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 report">
  72. <view class="list-block-til u-font-18">问题上报</view>
  73. <view class="list-block-con u-flex u-flex-wrap u-row-between">
  74. <view class="list-block-item"
  75. @click="openPage('pages/report/payeeReport/payeeReportList')">
  76. <image class="img" src="../../static/img/report-payee.png" mode="widthFix"></image>
  77. <view class="txt">收费员问题</view>
  78. </view>
  79. <view class="list-block-item"
  80. @click="openPage('pages/report/otherReport/otherReportList')">
  81. <image class="img" src="../../static/img/report-other.png" mode="widthFix"></image>
  82. <view class="txt">其他问题</view>
  83. </view>
  84. <view class="list-block-item"
  85. @click="openPage('pages/report/emergencyReport/emergencyReportList')">
  86. <image class="img" src="../../static/img/report-emergency.png" mode="widthFix"></image>
  87. <view class="txt">应急处置登记</view>
  88. </view>
  89. </view>
  90. </view>
  91. </view>
  92. </template>
  93. <script>
  94. export default {
  95. data() {
  96. return {
  97. newsTotal:'',
  98. noticeList:[],
  99. devicemsg:[],
  100. deviceStatisData:[],
  101. deviceTypeListData:[],
  102. }
  103. },
  104. onLoad() {
  105. },
  106. onShow() {
  107. // this.deviceTypeList();
  108. this.deviceStatis();
  109. this.getUnreadTotal();
  110. },
  111. methods: {
  112. openPage(path,param) {
  113. this.$u.route({
  114. url: path,
  115. params:{
  116. param:param
  117. }
  118. })
  119. },
  120. deviceStatis(){
  121. this.$u.api.getDeviceStatis().then(res=>{
  122. if(res.code==200){
  123. this.deviceStatisData = res.data;
  124. // console.log('getDeviceStatis',res);
  125. }else{
  126. uni.showToast({
  127. icon:'none',
  128. title:res.msg
  129. })
  130. }
  131. console.log('res',res);
  132. }).catch(err=>{
  133. console.log('err',err);
  134. })
  135. },
  136. deviceTypeList(){
  137. this.$u.api.getDeviceTypeList().then(res=>{
  138. if(res.code==200){
  139. this.deviceTypeListData = res.data;
  140. // console.log('getDeviceStatis',res);
  141. }else{
  142. uni.showToast({
  143. icon:'none',
  144. title:res.msg
  145. })
  146. }
  147. console.log('res',res);
  148. }).catch(err=>{
  149. console.log('err',err);
  150. })
  151. },
  152. getUnreadTotal(){
  153. let that = this;
  154. this.$u.api.getUnreadMsgTotal().then(res=>{
  155. if(res.code==200){
  156. this.newsTotal = res.data.noRedNum;
  157. }else{
  158. uni.showToast({
  159. icon:'none',
  160. title:res.msg
  161. })
  162. }
  163. console.log('res',res);
  164. }).catch(err=>{
  165. console.log('err',err);
  166. })
  167. },
  168. }
  169. }
  170. </script>
  171. <style>
  172. page{background: #F6F6F6;}
  173. </style>
  174. <style lang="scss" scoped>
  175. .header-wrap{
  176. overflow: hidden;
  177. .header{
  178. position: relative;
  179. box-sizing: border-box;
  180. height: 260rpx;
  181. padding: 48rpx 24rpx 98rpx;
  182. color: #fff;
  183. border-radius: 0 0 50% 50%;
  184. &::before{
  185. width: 140%; height: 100%; position: absolute; left: -20%; top: 0; content: ''; border-radius: 0 0 50% 50%;
  186. background: linear-gradient(180deg, #4466D8 0%, #8274F8 100%);
  187. background: url(../../static/img/index-header-bg.png) no-repeat;
  188. }
  189. .header-title{
  190. font-size: 50rpx;
  191. font-weight: 400;
  192. color: #FFFFFF;
  193. line-height: 70rpx;
  194. letter-spacing: 2rpx;
  195. margin-bottom: 3rpx;
  196. .message{
  197. position: relative;
  198. float: right;
  199. cursor: pointer;
  200. .badge{
  201. }
  202. }
  203. }
  204. .header-con{
  205. font-size: 28rpx;
  206. font-weight: 400;
  207. color: #FFFFFF;
  208. line-height: 40rpx;
  209. letter-spacing: 1rpx;
  210. }
  211. .header-item{
  212. position: relative;
  213. }
  214. }
  215. }
  216. .statistics{
  217. position: relative;
  218. margin: -80rpx 24rpx 24rpx;
  219. padding: 43rpx 30rpx 43rpx;
  220. border-radius: 10rpx;
  221. background-color: #fff;
  222. .count{
  223. font-size: 86rpx;
  224. font-weight: 400;
  225. color: #3171CF;
  226. line-height: 100rpx;
  227. letter-spacing: 3rpx;
  228. }
  229. .name{
  230. font-size: 26rpx;
  231. font-weight: 400;
  232. color: #7D7D7D;
  233. line-height: 37rpx;
  234. letter-spacing: 1px;
  235. }
  236. }
  237. .notice{
  238. margin: 20rpx 0;
  239. padding: 0 30rpx;
  240. background-color: #fff;
  241. }
  242. .list-block.report{
  243. .list-block-item{width: 30%;}
  244. }
  245. </style>