Withholdingrecord.vue 9.8 KB

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