Immediatecollection.vue 9.1 KB

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