Tenantbill.vue 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426
  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. label: '全部',
  143. id: ''
  144. }, {
  145. label: '未结清',
  146. id: 0
  147. },
  148. {
  149. label: '已结清',
  150. id: 1
  151. }
  152. ]
  153. ],
  154. }
  155. },
  156. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  157. onLoad() {
  158. this.getfloor();
  159. // this.loadmore();
  160. },
  161. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  162. onReady() {
  163. // 微信小程序需要用此写法
  164. },
  165. //监听页面隐藏
  166. onHide() {},
  167. //监听窗口尺寸变化
  168. onResize() {},
  169. //监听页面卸载
  170. onUnload() {},
  171. //监听用户下拉动作,一般用于下拉刷新
  172. onPullDownRefresh() {},
  173. methods: {
  174. seedetail(e){
  175. console.log('222',e)
  176. },
  177. handleClick(e){
  178. console.log('111111111111111111',e)
  179. },
  180. scrolltolower() {
  181. // this.loadmore()
  182. this.dataForm.page = this.dataForm.page + 1;
  183. console.log('111111111111111111', this.dataForm.page)
  184. this.$api.get('/billinfo/paypage', this.dataForm)
  185. .then(res => {
  186. if (res.data.data.list.length != 0) {
  187. this.indexList.push(...res.data.data.list);
  188. } else {
  189. uni.showToast({
  190. title:'暂无更多数据了',
  191. icon: 'none',
  192. duration: 1500
  193. })
  194. }
  195. console.log('111111111111111111', this.indexList)
  196. })
  197. },
  198. loadmore() {
  199. // for (let i = 0; i < 30; i++) {
  200. // this.indexList.push({
  201. // url: this.urls[uni.$u.random(0, this.urls.length - 1)]
  202. // })
  203. // }
  204. },
  205. getalldata() {
  206. this.$api.get('/billinfo/paypage', this.dataForm)
  207. .then(res => {
  208. this.indexList = [];
  209. this.indexList = res.data.data.list;
  210. })
  211. },
  212. // edit(item) {
  213. // console.log('111111111111111111', item)
  214. // },
  215. canceltype() {
  216. this.showtype = false;
  217. },
  218. confirmtype(e) {
  219. // console.log('111111111111111111', e.value[0])
  220. this.showtype = false;
  221. this.mytype = e.value[0].label;
  222. this.dataForm.cycle = e.value[0].id;
  223. this.dataForm.page=1;
  224. this.getalldata();
  225. },
  226. typechange() {
  227. this.showtype = true;
  228. },
  229. dateChange(e) {
  230. this.myday = e.target.value;
  231. this.dataForm.cycle = e.target.value;
  232. this.dataForm.page=1;
  233. this.getalldata();
  234. },
  235. getDate(type) {
  236. const date = new Date();
  237. let year = date.getFullYear();
  238. let month = date.getMonth() + 1;
  239. if (type === 'start') {
  240. year = year - 60;
  241. } else if (type === 'end') {
  242. year = year + 2;
  243. }
  244. month = month > 9 ? month : '0' + month;
  245. // day = day > 9 ? day : '0' + day;
  246. return `${year}-${month}`;
  247. },
  248. getfloor() {
  249. this.$api.get('/control/getOrgStructureTree/', {})
  250. .then(res => {
  251. if (res.data.code == 0) {
  252. this.dataForm.projectId = res.data.data[0].orgId;
  253. this.mytitle = res.data.data[0].orgName;
  254. this.alldata = res.data.data[0].childrenList;
  255. //console.log('111111111111111111', res.data.data[0].childrenList)
  256. this.columns = [
  257. res.data.data[0].childrenList,
  258. res.data.data[0].childrenList[0].childrenList
  259. ]
  260. let allfloor = [];
  261. for (let i = 0; i < res.data.data[0].childrenList.length; i++) {
  262. allfloor.push(res.data.data[0].childrenList[i].childrenList)
  263. }
  264. // console.log('111111111111111111',allfloor)
  265. this.columnData = allfloor;
  266. this.dataForm.page=1;
  267. this.getalldata();
  268. } else {
  269. this.showdct = true
  270. }
  271. })
  272. },
  273. floorchange() {
  274. this.showfloor = true;
  275. },
  276. changeHandler(e) {
  277. const {
  278. columnIndex,
  279. index,
  280. // 微信小程序无法将picker实例传出来,只能通过ref操作
  281. picker = this.$refs.uPicker
  282. } = e
  283. if (columnIndex === 0) {
  284. this.loading = true
  285. picker.setColumnValues(1, this.columnData[index])
  286. this.loading = false
  287. }
  288. this.getalldata();
  289. },
  290. confirmfloor(e) {
  291. console.log('222222', e.value)
  292. this.mytitle = e.value[0].orgName + e.value[1].orgName;
  293. this.dataForm.buildingId = e.value[0].orgId;
  294. this.dataForm.storeyId = e.value[1].orgId;
  295. this.showfloor = false;
  296. this.getalldata();
  297. },
  298. cancelfloor() {
  299. this.showfloor = false;
  300. },
  301. }
  302. }
  303. </script>
  304. <style lang="scss">
  305. .Currentamount {
  306. padding-left: 30rpx;
  307. height: 50rpx;
  308. line-height: 50rpx;
  309. color: #BCB3A7;
  310. span {
  311. color: #FA5555;
  312. padding-left: 9rpx;
  313. }
  314. }
  315. .Callfee{
  316. width: 100rpx;
  317. height: 45rpx;
  318. text-align: center;
  319. line-height:45rpx;
  320. color: #5C8FFF;
  321. border: 1px solid #5C8FFF;
  322. font-size: 22rpx;
  323. position: absolute;
  324. bottom: 10rpx;
  325. right: 10px;
  326. font-weight: bold;
  327. }
  328. .companylist {
  329. margin: 20rpx 30rpx;
  330. background: #fff;
  331. height: 280rpx;
  332. border-radius: 10px;
  333. position: relative;
  334. h3 {
  335. height: 70rpx;
  336. line-height: 70rpx;
  337. padding-left: 30rpx;
  338. }
  339. }
  340. .settled {
  341. background-color: #09C700;
  342. width: 100rpx;
  343. height: 40rpx;
  344. text-align: center;
  345. line-height: 40rpx;
  346. color: #fff;
  347. font-size: 14rpx;
  348. position: absolute;
  349. top: 0px;
  350. right: 0px;
  351. border-top-right-radius: 10rpx;
  352. border-bottom-left-radius: 10rpx;
  353. }
  354. .outstanding {
  355. background-color: #FA5555;
  356. width: 100rpx;
  357. height: 40rpx;
  358. text-align: center;
  359. line-height: 40rpx;
  360. color: #fff;
  361. font-size: 14rpx;
  362. position: absolute;
  363. top: 0px;
  364. right: 0px;
  365. border-top-right-radius: 10rpx;
  366. border-bottom-left-radius: 10rpx;
  367. }
  368. .billall {}
  369. .topbill {
  370. display: flex;
  371. justify-content: space-around;
  372. align-items: center;
  373. height: 100rpx;
  374. background-color: #e6e6e6;
  375. }
  376. .topbilledit {
  377. display: flex;
  378. justify-content: space-around;
  379. align-items: center;
  380. }
  381. .changetime1 {
  382. padding-right: 10rpx;
  383. }
  384. </style>