Immediatecollection.vue 11 KB

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