Tenantbill.vue 9.8 KB

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