index.vue 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469
  1. <template>
  2. <view class="content">
  3. <view class="Homepage_header"
  4. v-if="$has('app:InspectionRecord')&&$has('app:OnlineReport')&&$has('app:WithholdingRecord')">
  5. <view class="Homepage_suspension">
  6. <view class="Suspension">
  7. <view class="online" @click="Onlinewarranty" v-if="$has('app:InspectionRecord')">
  8. <view>
  9. <!-- <img :src="srcxianshang1" alt="" style="margin-left: 5rpx;"> -->
  10. <u--image mode="widthFix" :src="srcxianshang1" width="80rpx" height="80rpx"></u--image>
  11. </view>
  12. <view style="font-size: 28rpx;color: #697081;">线上报修</view>
  13. </view>
  14. <view class="online" @click="Inspectionrecord" v-if="$has('app:OnlineReport')">
  15. <view>
  16. <u--image mode="widthFix" :src="srcxianshang2" width="80rpx" height="80rpx"></u--image>
  17. </view>
  18. <view style="font-size: 28rpx;color: #697081;">巡检记录</view>
  19. </view>
  20. <view class="online" @click="Withholdingrecord" v-if="$has('app:WithholdingRecord')">
  21. <view>
  22. <u--image mode="widthFix" :src="srcxianshang3" width="80rpx" height="80rpx"></u--image>
  23. </view>
  24. <view style="font-size: 28rpx;color: #697081;">扣缴记录</view>
  25. </view>
  26. </view>
  27. </view>
  28. </view>
  29. <!-- <view class="kongbai">
  30. </view> -->
  31. <view class="pending1">
  32. <view class="pending_middle">
  33. <view class="all">
  34. <view class="work">
  35. <span style="font-size: 30rpx;font-weight: bold;">实时巡检</span>
  36. </view>
  37. <view class="processing">
  38. <view class="immediately" @click="Immediateinspection">
  39. <span style="font-size: 25rpx; color: #5c8fff; ">立即巡检</span>
  40. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  41. </view>
  42. </view>
  43. </view>
  44. <view class="wait">
  45. <view>
  46. <view style="font-size: 26rpx;color: #697081;">今日待巡检</view>
  47. <view style="text-align: center;font-size: 32rpx;color: #0C1935;padding-top: 15rpx;">
  48. {{inspectionInfoList.todayTotalNum}}</view>
  49. </view>
  50. <view>
  51. <view style="font-size: 26rpx;color: #697081;">今日已巡检</view>
  52. <view style="text-align: center;font-size: 32rpx;color: #0C1935;padding-top: 15rpx;">
  53. {{inspectionInfoList.todayNum}}</view>
  54. </view>
  55. </view>
  56. </view>
  57. </view>
  58. <view class="pending" v-if="$has('app:Tobeassigned')&&$has('app:Toberepaired')&&$has('app:hasrepaired')">
  59. <view class="pending_middle">
  60. <view class="all" v-if="$has('app:WorkorderTobeDone')">
  61. <view class="work">
  62. <span style="font-size: 30rpx;font-weight: bold;">工单待办</span>
  63. </view>
  64. <view class="processing">
  65. <view class="immediately" @click="Workordertodone">
  66. <span style="font-size: 25rpx; color: #5c8fff; ">立即处理</span>
  67. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  68. </view>
  69. </view>
  70. </view>
  71. <view class="wait">
  72. <view v-if="$has('app:Tobeassigned')">
  73. <view style="font-size: 26rpx;color: #697081;">待指派</view>
  74. <view style="text-align: center;font-size: 32rpx;color: #0C1935;padding-top: 15rpx;">
  75. {{workList[1]}}</view>
  76. </view>
  77. <view v-if="$has('app:Toberepaired')">
  78. <view style="font-size: 26rpx;color: #697081;">待维修</view>
  79. <view style="text-align: center;font-size: 32rpx;color: #0C1935;padding-top: 15rpx;">
  80. {{workList[2]}}</view>
  81. </view>
  82. <view v-if="$has('app:hasrepaired')">
  83. <view style="font-size: 26rpx;color: #697081;">已维修</view>
  84. <view style="text-align: center;font-size: 32rpx;color: #0C1935;padding-top: 15rpx;">
  85. {{workList[3]}}</view>
  86. </view>
  87. </view>
  88. </view>
  89. </view>
  90. <view class="equipment" v-if="$has('app:EquipmentException')">
  91. <view class="pending_middle">
  92. <view class="all" v-if="$has('app:LookatImmediately')">
  93. <view class="work">
  94. <span style="font-size: 30rpx;font-weight: bold;">设备异常</span>
  95. </view>
  96. <view class="processing">
  97. <view class="immediately" @click="EquipmentException">
  98. <span style="font-size: 25rpx; color: #5c8fff; ">立即查看</span>
  99. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  100. </view>
  101. </view>
  102. </view>
  103. <view class="wait">
  104. <view>
  105. <view style="font-size: 26rpx;color: #697081;">异常总数</view>
  106. <view style="text-align: center;font-size: 32rpx;color: #FA5555;padding-top: 15rpx;">
  107. {{deviceArr.AirConditioner}}</view>
  108. </view>
  109. <view>
  110. <view style="font-size: 26rpx;color: #697081;">空调异常</view>
  111. <view style="text-align: center;font-size: 32rpx;color: #FA5555;padding-top: 15rpx;">
  112. {{deviceArr.Ammeter}}</view>
  113. </view>
  114. <view>
  115. <view style="font-size: 26rpx;color: #697081;">水表异常</view>
  116. <view style="text-align: center;font-size: 32rpx;color: #FA5555;padding-top: 15rpx;">
  117. {{deviceArr.WaterMeter}}</view>
  118. </view>
  119. <view>
  120. <view style="font-size: 26rpx;color: #697081;">电表异常</view>
  121. <view style="text-align: center;font-size: 32rpx;color: #FA5555;padding-top: 15rpx;">
  122. {{deviceArr.Relay}}</view>
  123. </view>
  124. </view>
  125. </view>
  126. </view>
  127. <!-- 管理员界面 -->
  128. <view class="arrears" v-if="$has('app:ArrearstobeCollected')">
  129. <view class="pending_middle">
  130. <view class="all" v-if="$has('app:ImmediateCollection')">
  131. <view class="work">
  132. <span style="font-size: 30rpx;font-weight: bold;">欠费待收</span>
  133. </view>
  134. <view class="processing">
  135. <view class="immediately" @click="Immediatecollection">
  136. <span style="font-size: 25rpx; color: #5c8fff; ">立即催收</span>
  137. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  138. </view>
  139. </view>
  140. </view>
  141. <t-table style="background-color: #fff;margin-top: 10rpx;">
  142. <t-tr>
  143. <t-th>欠费类型</t-th>
  144. <t-th>欠费租户数</t-th>
  145. <t-th>累计欠费(元)</t-th>
  146. </t-tr>
  147. <t-tr v-for="item in tableList" :key="item.name">
  148. <t-td>{{ item.name }}</t-td>
  149. <t-td>{{ item.tenant }}</t-td>
  150. <t-td>{{ item.arrears }}</t-td>
  151. </t-tr>
  152. </t-table>
  153. </view>
  154. </view>
  155. <!-- 租户界面 -->
  156. <view class="arrears1" v-if="$has('app:BillPending')">
  157. <view class="pending_middle">
  158. <view class="all" v-if="$has('app:ImmediatePayment')">
  159. <view class="work">
  160. <span style="font-size: 30rpx;font-weight: bold;">账单待缴</span>
  161. </view>
  162. <view class="processing">
  163. <view class="immediately" @click="BillPending">
  164. <span style="font-size: 25rpx; color: #5c8fff; ">立即缴费</span>
  165. <u-icon name="arrow-right" color="#5c8fff" size="16rpx"></u-icon>
  166. </view>
  167. </view>
  168. </view>
  169. <t-table style="background-color: #fff;margin-top: 10rpx;">
  170. <t-tr>
  171. <t-th>欠费类型</t-th>
  172. <t-th>本期待缴金额(元)</t-th>
  173. <t-th>累计待缴金额(元)</t-th>
  174. </t-tr>
  175. <t-tr v-for="item in tableList" :key="item.name">
  176. <t-td>{{ item.name }}</t-td>
  177. <t-td>{{ item.currentAmount }}</t-td>
  178. <t-td>{{ item.cumulativeAmount }}</t-td>
  179. </t-tr>
  180. </t-table>
  181. </view>
  182. </view>
  183. </view>
  184. </template>
  185. <script>
  186. import tTable from '@/components/t-table/t-table.vue';
  187. import tTh from '@/components/t-table/t-th.vue';
  188. import tTr from '@/components/t-table/t-tr.vue';
  189. import tTd from '@/components/t-table/t-td.vue';
  190. export default {
  191. components: {
  192. tTable,
  193. tTh,
  194. tTr,
  195. tTd
  196. },
  197. data() {
  198. return {
  199. srcxianshang1: require('@/static/index/repair-online.svg'),
  200. srcxianshang2: require('@/static/index/check-review.svg'),
  201. srcxianshang3: require('@/static/index/reduce-record.svg'),
  202. tableList: [],
  203. tabbardata: 0,
  204. workList: {}, //工单代办
  205. deviceArr: {}, //设备异常数据
  206. getuserInfo: {},
  207. inspectionInfoList: {},
  208. }
  209. },
  210. onLoad() {
  211. this.getalldata();
  212. this.getuserInfo = uni.getStorageSync('getuserInfo');
  213. },
  214. onPullDownRefresh() {
  215. // console.log('我下拉刷新页面了!!!!!!!!!!!!!!!', )
  216. this.getalldata();
  217. },
  218. methods: {
  219. getalldata() {
  220. this.$api.get('/home/homedata', {})
  221. .then(res => {
  222. uni.stopPullDownRefresh() //刷新数据之后停止刷新效果
  223. //console.log('111111111111111111', res.data.data)
  224. this.workList = res.data.data.workOrder;
  225. this.deviceArr = res.data.data.equip.maps;
  226. this.inspectionInfoList = res.data.data.inspectionInfo;
  227. this.tableList = res.data.data.billPaymentList.map(item => {
  228. let json = {};
  229. if (item.payType == 'Water') {
  230. item.payType = '水费'
  231. } else if (item.payType == 'Elec') {
  232. item.payType = '电费'
  233. } else if (item.payType == 'PropertyFee') {
  234. item.payType = '物业费'
  235. }
  236. json.name = item.payType;
  237. json.tenant = item.arrearageNum;
  238. json.arrears = item.arrearageAmount;
  239. json.currentAmount = item.currentAmount;
  240. json.cumulativeAmount = item.cumulativeAmount;
  241. return json
  242. })
  243. })
  244. },
  245. BillPending() {
  246. // console.log('111111111111111111',this.getuserInfo)
  247. uni.navigateTo({
  248. url: '/pages/index/BillPending/BillPending?info=' + encodeURIComponent(JSON.stringify(this.getuserInfo))
  249. });
  250. },
  251. Immediatecollection() {
  252. uni.navigateTo({
  253. url: '/pages/index/Immediatecollection/Immediatecollection'
  254. })
  255. },
  256. Workordertodone() {
  257. uni.navigateTo({
  258. url: '/pages/index/Workordertodone/Workordertodone'
  259. })
  260. },
  261. EquipmentException() {
  262. uni.navigateTo({
  263. url: '/pages/index/EquipmentException/EquipmentException'
  264. })
  265. },
  266. Onlinewarranty() {
  267. uni.navigateTo({
  268. url: '/pages/index/Onlinewarranty/Onlinewarranty'
  269. })
  270. },
  271. Immediateinspection() {
  272. uni.navigateTo({
  273. url: '/pages/index/Immediateinspection/Immediateinspection'
  274. })
  275. },
  276. Inspectionrecord() {
  277. uni.navigateTo({
  278. url: '/pages/index/Inspectionrecord/Inspectionrecord'
  279. })
  280. },
  281. Withholdingrecord() {
  282. uni.navigateTo({
  283. url: '/pages/index/Withholdingrecord/Withholdingrecord'
  284. })
  285. },
  286. }
  287. }
  288. </script>
  289. <style lang="scss">
  290. * {
  291. margin: 0;
  292. padding: 0;
  293. list-style: none;
  294. text-decoration: none;
  295. }
  296. .online {
  297. display: flex;
  298. flex-direction: column;
  299. justify-content: center;
  300. align-items: center;
  301. }
  302. .Homepage_header {
  303. width: 750rpx;
  304. height: 200rpx;
  305. background-color: #5c8fff;
  306. border-radius: 0px 0px 16px 16px;
  307. position: relative;
  308. display: flex;
  309. align-items: center;
  310. justify-content: center;
  311. }
  312. .kongbai {
  313. height: 100rpx;
  314. width: 750rpx;
  315. }
  316. .Homepage_suspension {
  317. width: 690rpx;
  318. height: 200rpx;
  319. background-color: #fff;
  320. display: flex;
  321. align-items: center;
  322. justify-content: space-between;
  323. position: absolute;
  324. top: 100rpx;
  325. border-radius: 10rpx;
  326. }
  327. .Suspension {
  328. width: 690rpx;
  329. // height: 200rpx;
  330. display: flex;
  331. align-items: center;
  332. justify-content: space-around;
  333. }
  334. .pending1 {
  335. width: 750rpx;
  336. height: 220rpx;
  337. // background-color: #ccc;
  338. display: flex;
  339. align-items: center;
  340. justify-content: center;
  341. position: relative;
  342. margin-top: 120rpx;
  343. }
  344. .pending {
  345. width: 750rpx;
  346. height: 260rpx;
  347. // background-color: #ccc;
  348. display: flex;
  349. align-items: center;
  350. justify-content: center;
  351. position: relative;
  352. }
  353. .pending_middle {
  354. width: 690rpx;
  355. // height: 100px;
  356. // background-color: #fff;
  357. }
  358. .all {
  359. width: 100%;
  360. display: flex;
  361. align-items: center;
  362. justify-content: space-between;
  363. }
  364. .work {
  365. // padding-left: 20rpx;
  366. // padding-top: 2rpx;
  367. }
  368. .wait {
  369. width: 690rpx;
  370. display: flex;
  371. align-items: center;
  372. background-color: #fff;
  373. justify-content: space-around;
  374. padding-top: 30rpx;
  375. text-align: center;
  376. height: 140rpx;
  377. margin-top: 10rpx;
  378. border-radius: 10rpx;
  379. }
  380. .immediately {
  381. display: flex;
  382. // padding-top: 2rpx;
  383. }
  384. .equipment {
  385. width: 750rpx;
  386. // height: 200rpx;
  387. display: flex;
  388. align-items: center;
  389. justify-content: center;
  390. position: relative;
  391. top: 20rpx;
  392. }
  393. .arrears {
  394. // width: 750rpx;
  395. // height: 350rpx;
  396. display: flex;
  397. flex: 1;
  398. align-items: center;
  399. justify-content: center;
  400. position: relative;
  401. top: 50rpx;
  402. }
  403. .arrears1 {
  404. // width: 750rpx;
  405. // height: 350rpx;
  406. display: flex;
  407. flex: 1;
  408. align-items: center;
  409. justify-content: center;
  410. position: relative;
  411. top: 80rpx;
  412. margin-bottom: 30rpx;
  413. }
  414. .type {
  415. display: flex;
  416. align-items: center;
  417. justify-content: space-around;
  418. text-align: center;
  419. flex: 1;
  420. margin-top: 10rpx;
  421. font-size: 30rpx;
  422. }
  423. tr {
  424. background-color: #fff;
  425. }
  426. </style>