Immediatecollection.vue 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425
  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. <view class="u-listdata">
  37. <view style="padding:10rpx 0 0 30rpx">
  38. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  39. </view>
  40. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  41. <u-list-item v-for="(item, index) in indexList" :key="index">
  42. <view class="companylist" @click="seedetail(item)">
  43. <!-- <view class="settled" v-if="item.isSettled==0">
  44. 已催费
  45. </view>
  46. <view class="outstanding" v-if="item.isSettled==1">
  47. 未催费
  48. </view> -->
  49. <view class="settled" :style="{
  50. 'background-color': item.isExpedit == 1 ? '#09C700' : '#FA5555',
  51. }">
  52. {{ item.isExpedit == 1 ? "已催费" : "未催费" }}
  53. </view>
  54. <h3>{{item.tenantName}}</h3>
  55. <view class="Currentamount">
  56. 欠费金额: <span>¥{{item.amount}}</span>
  57. </view>
  58. <view class="Currentamount">
  59. 计费周期: {{item.costCycle}}
  60. </view>
  61. <view class="Currentamount">
  62. 欠费天数:¥{{item.arrearDay}}
  63. </view>
  64. <view class="Currentamount">
  65. 欠费类型: {{item.billType}}
  66. </view>
  67. <view class="Currentamount">
  68. 联系电话: {{item.phone}}
  69. </view>
  70. <view class="Callfee" v-if="item.isExpedit==1" @click.stop="handleClick(item.id)">
  71. 催费
  72. </view>
  73. </view>
  74. </u-list-item>
  75. </u-list>
  76. </view>
  77. <u-picker :show="showtype" :columns="columnstype" keyName="label" @confirm="confirmtype" @cancel='canceltype'>
  78. </u-picker>
  79. <u-picker :show="showtypes" :columns="columnstypes" keyName="dictLabel" @confirm="confirmtypes"
  80. @cancel='canceltypes'>
  81. </u-picker>
  82. <u-notify ref="uNotify" :show="showdct" message="服务器请求失败"></u-notify>
  83. </view>
  84. </template>
  85. <script>
  86. // import {
  87. // isEmpty,
  88. // getDictDataList
  89. // } from "@/utils/index";
  90. export default {
  91. components: {},
  92. data() {
  93. const currentDate = this.getDate({
  94. format: 'yyyy-mm'
  95. })
  96. return {
  97. totalnumber: 0,
  98. setyesno: true,
  99. indexList: [],
  100. dataList: [],
  101. dataForm: {
  102. arrearDay: "", //欠费天数
  103. billType: "", //账单类型
  104. cycle: currentDate, //欠费周期
  105. isExpedit: "", //是否催费0否1是
  106. order: "",
  107. orderField: "",
  108. tenantName: "", //租客名称
  109. page: 1,
  110. limit: 10,
  111. },
  112. showtypes: false,
  113. showtype: false,
  114. showdct: false,
  115. mytitle: '',
  116. alldata: [],
  117. loading: false,
  118. columns: [],
  119. pd: true,
  120. columnData: [],
  121. myday: '',
  122. mytype: '全部',
  123. mytypes: "全部",
  124. showPicker: false,
  125. PayTypedata:[],
  126. myday: currentDate,
  127. columnstype: [
  128. [{
  129. label: '全部',
  130. id: ''
  131. }, {
  132. label: '水费',
  133. id: 'Water'
  134. },
  135. {
  136. label: '电费',
  137. id: 'Elec'
  138. },
  139. {
  140. label: '物业费',
  141. id: 'PropertyFee'
  142. }
  143. ]
  144. ],
  145. columnstypes: [],
  146. }
  147. },
  148. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  149. onLoad() {
  150. let getDictDataList = uni.getStorageSync('getDictDataList');
  151. for (let i = 0; i < getDictDataList.length; i++) {
  152. if (getDictDataList[i].dictType == "ArrearageDay") {
  153. this.columnstypes = [getDictDataList[i].dataList]
  154. }
  155. if (getDictDataList[i].dictType == 'PayType') {
  156. this.PayTypedata = getDictDataList[i].dataList;
  157. }
  158. }
  159. this.getalldata();
  160. // this.loadmore();
  161. },
  162. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  163. onReady() {
  164. // 微信小程序需要用此写法
  165. },
  166. //监听页面隐藏
  167. onHide() {},
  168. //监听窗口尺寸变化
  169. onResize() {},
  170. //监听页面卸载
  171. onUnload() {},
  172. //监听用户下拉动作,一般用于下拉刷新
  173. onPullDownRefresh() {},
  174. methods: {
  175. seedetail(e) {
  176. // console.log('222',e.tenantName)
  177. // console.log('111111111111111111',faltesdata)
  178. uni.navigateTo({
  179. url: `/pages/index/Immediatecollection/Chargedetails/Chargedetails?companyOrgId=${e.tenantName}`
  180. })
  181. },
  182. handleClick(e) {
  183. let Temporarydata = [e];
  184. let stringdata = JSON.stringify(Temporarydata);
  185. let finallydata = stringdata.replace(/"/g, '');
  186. this.$api.post('/expeditrecord/charge', finallydata)
  187. .then(res => {
  188. if (res.data.code == 0) {
  189. uni.showToast({
  190. title: '催费成功',
  191. icon: 'none',
  192. duration: 1500
  193. })
  194. } else {
  195. uni.showToast({
  196. title: res.data.msg,
  197. icon: 'none',
  198. duration: 1500
  199. })
  200. }
  201. this.dataForm.page = 1;
  202. this.indexList = [];
  203. this.getalldata();
  204. })
  205. },
  206. scrolltolower() {
  207. if (this.pd) {
  208. this.getalldata();
  209. } else {
  210. return
  211. }
  212. },
  213. typechanges() {
  214. this.showtypes = true;
  215. },
  216. getalldata() {
  217. this.$api.get('/expeditrecord/apppage', this.dataForm)
  218. .then(res => {
  219. this.totalnumber = res.data.data.total;
  220. if (res.data.data.list.length != 0) {
  221. function transform(a, b) {
  222. loop: for (let i = 0; i < a.length; i++) {
  223. for (let j = 0; j < b.length; j++) {
  224. if (a[i].billType == b[j].dictValue) {
  225. a[i].billType = b[j].dictLabel;
  226. continue loop;
  227. }
  228. }
  229. a[i].billType = a[i].billType;
  230. }
  231. return a;
  232. }
  233. res.data.data.list = transform(res.data.data.list, this.PayTypedata)
  234. this.indexList.push(...res.data.data.list);
  235. this.dataForm.page = this.dataForm.page + 1;
  236. this.pd = true;
  237. } else {
  238. uni.showToast({
  239. title: '暂无更多数据了',
  240. icon: 'none',
  241. duration: 1500
  242. })
  243. this.pd = false;
  244. }
  245. })
  246. },
  247. canceltype() {
  248. this.showtype = false;
  249. },
  250. confirmtype(e) {
  251. this.showtype = false;
  252. this.mytype = e.value[0].label;
  253. this.dataForm.billType = e.value[0].id;
  254. this.dataForm.page = 1;
  255. this.indexList=[];
  256. this.getalldata();
  257. },
  258. confirmtypes(e) {
  259. // console.log('22222', e.value[0])
  260. this.showtypes = false;
  261. this.mytypes = e.value[0].dictLabel;
  262. this.dataForm.arrearDay = e.value[0].dictValue;
  263. this.dataForm.page = 1;
  264. this.indexList=[];
  265. this.getalldata();
  266. },
  267. canceltypes() {
  268. this.showtypes = false;
  269. },
  270. typechange() {
  271. this.showtype = true;
  272. },
  273. dateChange(e) {
  274. // console.log('3333',e)
  275. this.myday = e.target.value;
  276. this.dataForm.cycle = e.target.value;
  277. this.dataForm.page = 1;
  278. this.indexList=[];
  279. this.getalldata();
  280. },
  281. getDate(type) {
  282. const date = new Date();
  283. let year = date.getFullYear();
  284. let month = date.getMonth() + 1;
  285. if (type === 'start') {
  286. year = year - 60;
  287. } else if (type === 'end') {
  288. year = year + 2;
  289. }
  290. month = month > 9 ? month : '0' + month;
  291. // day = day > 9 ? day : '0' + day;
  292. return `${year}-${month}`;
  293. },
  294. }
  295. }
  296. </script>
  297. <style lang="scss">
  298. .Currentamount {
  299. padding-left: 30rpx;
  300. height: 50rpx;
  301. line-height: 50rpx;
  302. color: #BCB3A7;
  303. span {
  304. color: #FA5555;
  305. padding-left: 9rpx;
  306. }
  307. }
  308. .Callfee {
  309. width: 100rpx;
  310. height: 45rpx;
  311. text-align: center;
  312. line-height: 45rpx;
  313. color: #5C8FFF;
  314. border: 1px solid #5C8FFF;
  315. font-size: 22rpx;
  316. position: absolute;
  317. bottom: 10rpx;
  318. right: 10px;
  319. font-weight: bold;
  320. }
  321. .companylist {
  322. margin: 20rpx 30rpx;
  323. background: #fff;
  324. height: 340rpx;
  325. border-radius: 10px;
  326. position: relative;
  327. h3 {
  328. height: 70rpx;
  329. line-height: 70rpx;
  330. padding-left: 30rpx;
  331. }
  332. }
  333. .settled {
  334. background-color: #09C700;
  335. width: 100rpx;
  336. height: 40rpx;
  337. text-align: center;
  338. line-height: 40rpx;
  339. color: #fff;
  340. font-size: 14rpx;
  341. position: absolute;
  342. top: 0px;
  343. right: 0px;
  344. border-top-right-radius: 10rpx;
  345. border-bottom-left-radius: 10rpx;
  346. }
  347. .outstanding {
  348. background-color: #FA5555;
  349. width: 100rpx;
  350. height: 40rpx;
  351. text-align: center;
  352. line-height: 40rpx;
  353. color: #fff;
  354. font-size: 14rpx;
  355. position: absolute;
  356. top: 0px;
  357. right: 0px;
  358. border-top-right-radius: 10rpx;
  359. border-bottom-left-radius: 10rpx;
  360. }
  361. .billall {}
  362. .topbill {
  363. display: flex;
  364. justify-content: space-around;
  365. align-items: center;
  366. height: 100rpx;
  367. background-color: #e6e6e6;
  368. }
  369. .topbilledit {
  370. display: flex;
  371. justify-content: space-around;
  372. align-items: center;
  373. }
  374. .changetime1 {
  375. padding-right: 10rpx;
  376. }
  377. </style>