Inspectionrecord.vue 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473
  1. <template>
  2. <view class="billall">
  3. <u-cell-group class="toptemplate">
  4. <u-cell :title="mytitle" @click="floorchange">
  5. <u-icon slot="icon" size="40" color="#fff" name="map"></u-icon>
  6. <u-icon slot="right-icon" size="40" color="#fff" name="search"></u-icon>
  7. </u-cell>
  8. </u-cell-group>
  9. <view class="topbill">
  10. <view class="topbilledit" @click="xunjianchange">
  11. <view class="changetime1">
  12. {{xjlx}}
  13. </view>
  14. <view class="changetime2">
  15. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  16. </view>
  17. </view>
  18. <view class="topbilledit" @click="typechange">
  19. <view class="changetime1">
  20. {{xjry}}
  21. </view>
  22. <view class="changetime2">
  23. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  24. </view>
  25. </view>
  26. </view>
  27. <!-- 列表 -->
  28. <!-- <t-table>
  29. <t-tr>
  30. <t-th>序号</t-th>
  31. <t-th>姓名</t-th>
  32. <t-th>年龄</t-th>
  33. <t-th>爱好</t-th>
  34. <t-th>操作</t-th>
  35. </t-tr>
  36. <t-tr v-for="item in tableList" :key="item.id">
  37. <t-td>{{ item.id + 1 }}</t-td>
  38. <t-td>{{ item.name }}</t-td>
  39. <t-td>{{ item.age }}</t-td>
  40. <t-td>{{ item.hobby }}</t-td>
  41. <t-td align="left"> <u-button @click="edit(item)" size="small" type="primary" :plain="true" text="编辑"></u-button></t-td>
  42. </t-tr>
  43. </t-table> -->
  44. <view class="u-listdata">
  45. <view style="padding:10rpx 0 0 30rpx">
  46. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  47. </view>
  48. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  49. <u-list-item v-for="(item, index) in indexList" :key="index">
  50. <view class="companylist" @click="seedetail(item)">
  51. <view class="settled" v-if="item.status==1">
  52. 已结清
  53. </view>
  54. <view class="outstanding" v-if="item.status==0">
  55. 未结清
  56. </view>
  57. <h3>{{item.name}}</h3>
  58. <view class="Currentamount">
  59. 本期金额: <span>¥{{item.feeTotal}}</span>
  60. </view>
  61. <view class="Currentamount">
  62. 欠费天数: {{item.elecAmount}}
  63. </view>
  64. <view class="Currentamount">
  65. 账户余额:¥{{item.balance}}
  66. </view>
  67. <view class="Currentamount">
  68. 联系电话: {{item.tel}}
  69. </view>
  70. <view class="Callfee" v-if="item.status==0" @click.stop="handleClick(item.id)">
  71. 催费
  72. </view>
  73. </view>
  74. </u-list-item>
  75. </u-list>
  76. </view>
  77. <u-picker :show="showtypexunjian" :columns="columnstypexunjian" keyName="dictLabel" @confirm="confirmxunjian"
  78. @cancel='cancelxunjian'>
  79. </u-picker>
  80. <u-picker :show="showtype" :columns="columnstype" keyName="label" @confirm="confirmtype" @cancel='canceltype'>
  81. </u-picker>
  82. <u-picker :show="showfloor" ref="uPicker" :loading="loading" @confirm="confirmfloor" @cancel='cancelfloor'
  83. :columns="columns" keyName="orgName" @change="changeHandler"></u-picker>
  84. <u-notify ref="uNotify" :show="showdct" message="服务器请求失败"></u-notify>
  85. </view>
  86. </template>
  87. <script>
  88. // import tTable from '@/components/t-table/t-table.vue';
  89. // import tTh from '@/components/t-table/t-th.vue';
  90. // import tTr from '@/components/t-table/t-tr.vue';
  91. import cellGroup from '../../../uni_modules/uview-ui/libs/config/props/cellGroup';
  92. // import tTd from '@/components/t-table/t-td.vue';
  93. export default {
  94. components: {
  95. // tTable,
  96. // tTh,
  97. // tTr,
  98. // tTd
  99. },
  100. data() {
  101. const currentDate = this.getDate({
  102. format: 'yyyy-mm'
  103. })
  104. return {
  105. totalnumber: 0,
  106. showtypexunjian: false,
  107. setyesno: true,
  108. // tableList: [{
  109. // id: 0,
  110. // name: '张三',
  111. // age: '19',
  112. // hobby: '游泳'
  113. // },
  114. // {
  115. // id: 1,
  116. // name: '李四',
  117. // age: '21',
  118. // hobby: '绘画'
  119. // },
  120. // ],
  121. indexList: [],
  122. xjlx: '巡检类型',
  123. dataList: [],
  124. dataForm: {
  125. projectId: "",
  126. buildingId: "",
  127. storeyId: "",
  128. cycle: "",
  129. status: "",
  130. page: 1,
  131. limit: 10,
  132. },
  133. showtype: false,
  134. showdct: false,
  135. mytitle: '',
  136. alldata: [],
  137. showfloor: false,
  138. loading: false,
  139. columns: [],
  140. columnData: [],
  141. pd: true,
  142. myday: '',
  143. xjry: '巡检人员',
  144. showPicker: false,
  145. myday: currentDate,
  146. columnstypexunjian: [],
  147. columnstype: [
  148. [{
  149. label: '张三',
  150. id: ''
  151. }, {
  152. label: '李四',
  153. id: 0
  154. },
  155. {
  156. label: '王五',
  157. id: 1
  158. }
  159. ]
  160. ],
  161. }
  162. },
  163. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  164. onLoad() {
  165. let getDictDataList = uni.getStorageSync('getDictDataList');
  166. for (let i = 0; i < getDictDataList.length; i++) {
  167. if (getDictDataList[i].dictType == 'ReviewType') {
  168. console.log(getDictDataList[i].dataList,"1231313135646");
  169. let pushdata={
  170. dictLabel: "全部",
  171. dictValue:"",
  172. }
  173. getDictDataList[i].dataList.unshift(pushdata)
  174. this.columnstypexunjian = [getDictDataList[i].dataList]
  175. }
  176. }
  177. this.getfloor();
  178. // this.loadmore();
  179. },
  180. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  181. onReady() {
  182. // 微信小程序需要用此写法
  183. },
  184. //监听页面隐藏
  185. onHide() {},
  186. //监听窗口尺寸变化
  187. onResize() {},
  188. //监听页面卸载
  189. onUnload() {},
  190. //监听用户下拉动作,一般用于下拉刷新
  191. onPullDownRefresh() {},
  192. methods: {
  193. seedetail(e) {
  194. console.log('222', e)
  195. },
  196. handleClick(e) {
  197. console.log('111111111111111111', e)
  198. },
  199. scrolltolower() {
  200. if(this.pd){
  201. this.getalldata();
  202. }else{
  203. return
  204. }
  205. },
  206. loadmore() {
  207. // for (let i = 0; i < 30; i++) {
  208. // this.indexList.push({
  209. // url: this.urls[uni.$u.random(0, this.urls.length - 1)]
  210. // })
  211. // }
  212. },
  213. xunjianchange() {
  214. this.showtypexunjian = true;
  215. },
  216. cancelxunjian() {
  217. this.showtypexunjian = false;
  218. },
  219. confirmxunjian(e) {
  220. this.xjlx = e.value[0].dictLabel;
  221. // this.dataForm.cycle = e.value[0].id;
  222. // this.dataForm.page = 1;
  223. // this.getalldata();
  224. this.showtypexunjian = false;
  225. },
  226. getalldata() {
  227. this.$api.get('/circuitrecord/page', this.dataForm)
  228. .then(res => {
  229. this.totalnumber = res.data.data.total;
  230. // console.log('111111111111111111',res.data.data.list)
  231. if (res.data.data.list.length != 0) {
  232. this.indexList.push(...res.data.data.list);
  233. this.dataForm.page = this.dataForm.page + 1;
  234. this.pd = true;
  235. } else {
  236. uni.showToast({
  237. title: '暂无更多数据了',
  238. icon: 'none',
  239. duration: 1500
  240. })
  241. this.pd = false;
  242. //this.jfnodata=true
  243. }
  244. })
  245. },
  246. // edit(item) {
  247. // console.log('111111111111111111', item)
  248. // },
  249. canceltype() {
  250. this.showtype = false;
  251. },
  252. confirmtype(e) {
  253. // console.log('111111111111111111', e.value[0])
  254. this.showtype = false;
  255. this.xjry = e.value[0].label;
  256. this.dataForm.cycle = e.value[0].id;
  257. this.dataForm.page = 1;
  258. this.getalldata();
  259. },
  260. typechange() {
  261. this.showtype = true;
  262. },
  263. dateChange(e) {
  264. this.myday = e.target.value;
  265. this.dataForm.cycle = e.target.value;
  266. this.dataForm.page = 1;
  267. this.getalldata();
  268. },
  269. getDate(type) {
  270. const date = new Date();
  271. let year = date.getFullYear();
  272. let month = date.getMonth() + 1;
  273. if (type === 'start') {
  274. year = year - 60;
  275. } else if (type === 'end') {
  276. year = year + 2;
  277. }
  278. month = month > 9 ? month : '0' + month;
  279. // day = day > 9 ? day : '0' + day;
  280. return `${year}-${month}`;
  281. },
  282. getfloor() {
  283. this.$api.get('/control/getOrgStructureTree/', {})
  284. .then(res => {
  285. if (res.data.code == 0) {
  286. this.dataForm.projectId = res.data.data[0].orgId;
  287. this.mytitle = res.data.data[0].orgName;
  288. this.alldata = res.data.data[0].childrenList;
  289. //console.log('111111111111111111', res.data.data[0].childrenList)
  290. this.columns = [
  291. res.data.data[0].childrenList,
  292. res.data.data[0].childrenList[0].childrenList
  293. ]
  294. let allfloor = [];
  295. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  296. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  297. }
  298. // console.log('111111111111111111',allfloor)
  299. this.columnData = allfloor;
  300. this.dataForm.page = 1;
  301. this.getalldata();
  302. } else {
  303. this.showdct = true
  304. }
  305. })
  306. },
  307. floorchange() {
  308. this.showfloor = true;
  309. },
  310. changeHandler(e) {
  311. const {
  312. columnIndex,
  313. index,
  314. // 微信小程序无法将picker实例传出来,只能通过ref操作
  315. picker = this.$refs.uPicker
  316. } = e
  317. if (columnIndex === 0) {
  318. this.loading = true
  319. picker.setColumnValues(1, this.columnData[index])
  320. this.loading = false
  321. }
  322. this.getalldata();
  323. },
  324. confirmfloor(e) {
  325. console.log('222222', e.value)
  326. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  327. this.dataForm.buildingId = e.value[0].orgId;
  328. this.dataForm.storeyId = e.value[1].orgId;
  329. this.showfloor = false;
  330. this.getalldata();
  331. },
  332. cancelfloor() {
  333. this.showfloor = false;
  334. },
  335. }
  336. }
  337. </script>
  338. <style lang="scss">
  339. .Currentamount {
  340. padding-left: 30rpx;
  341. height: 50rpx;
  342. line-height: 50rpx;
  343. color: #BCB3A7;
  344. span {
  345. color: #FA5555;
  346. padding-left: 9rpx;
  347. }
  348. }
  349. .Callfee {
  350. width: 100rpx;
  351. height: 45rpx;
  352. text-align: center;
  353. line-height: 45rpx;
  354. color: #5C8FFF;
  355. border: 1px solid #5C8FFF;
  356. font-size: 22rpx;
  357. position: absolute;
  358. bottom: 10rpx;
  359. right: 10px;
  360. font-weight: bold;
  361. }
  362. .companylist {
  363. margin: 20rpx 30rpx;
  364. background: #fff;
  365. height: 280rpx;
  366. border-radius: 10px;
  367. position: relative;
  368. h3 {
  369. height: 70rpx;
  370. line-height: 70rpx;
  371. padding-left: 30rpx;
  372. }
  373. }
  374. .settled {
  375. background-color: #09C700;
  376. width: 100rpx;
  377. height: 40rpx;
  378. text-align: center;
  379. line-height: 40rpx;
  380. color: #fff;
  381. font-size: 14rpx;
  382. position: absolute;
  383. top: 0px;
  384. right: 0px;
  385. border-top-right-radius: 10rpx;
  386. border-bottom-left-radius: 10rpx;
  387. }
  388. .outstanding {
  389. background-color: #FA5555;
  390. width: 100rpx;
  391. height: 40rpx;
  392. text-align: center;
  393. line-height: 40rpx;
  394. color: #fff;
  395. font-size: 14rpx;
  396. position: absolute;
  397. top: 0px;
  398. right: 0px;
  399. border-top-right-radius: 10rpx;
  400. border-bottom-left-radius: 10rpx;
  401. }
  402. .billall {}
  403. .topbill {
  404. display: flex;
  405. justify-content: space-around;
  406. align-items: center;
  407. height: 100rpx;
  408. background-color: #e6e6e6;
  409. }
  410. .topbilledit {
  411. display: flex;
  412. justify-content: space-around;
  413. align-items: center;
  414. }
  415. .changetime1 {
  416. padding-right: 10rpx;
  417. }
  418. </style>