Inspectionrecord.vue 9.5 KB

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