Immediatecollection.vue 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428
  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 :itemHeight="80" :show="showtype" :columns="columnstype" keyName="label" @confirm="confirmtype" @cancel='canceltype'>
  72. </u-picker>
  73. <u-picker :itemHeight="80" :show="showtypes" :columns="columnstypes" keyName="dictLabel" @confirm="confirmtypes"
  74. @cancel='canceltypes'>
  75. </u-picker>
  76. <u-notify ref="uNotify" 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. this.$refs.uNotify.success('催费成功')
  189. } else {
  190. // uni.showToast({
  191. // title: res.data.msg,
  192. // icon: 'none',
  193. // duration: 1500
  194. // })
  195. this.$refs.uNotify.error(res.data.msg)
  196. }
  197. let that=this;
  198. setTimeout(function(){
  199. that.dataForm.page = 1;
  200. that.indexList = [];
  201. that.getalldata();
  202. },1000);
  203. })
  204. },
  205. scrolltolower() {
  206. if (this.pd) {
  207. this.getalldata();
  208. } else {
  209. return
  210. }
  211. },
  212. typechanges() {
  213. this.showtypes = true;
  214. },
  215. getalldata() {
  216. this.$api.get('/expeditrecord/apppage', this.dataForm)
  217. .then(res => {
  218. this.totalnumber = res.data.data.total;
  219. if (res.data.data.list.length != 0) {
  220. function transform(a, b) {
  221. loop: for (let i = 0; i < a.length; i++) {
  222. for (let j = 0; j < b.length; j++) {
  223. if (a[i].billType == b[j].dictValue) {
  224. a[i].billType = b[j].dictLabel;
  225. continue loop;
  226. }
  227. }
  228. a[i].billType = a[i].billType;
  229. }
  230. return a;
  231. }
  232. res.data.data.list = transform(res.data.data.list, this.PayTypedata)
  233. this.indexList.push(...res.data.data.list);
  234. this.dataForm.page = this.dataForm.page + 1;
  235. this.pd = true;
  236. } else {
  237. uni.showToast({
  238. title: '暂无更多数据了',
  239. icon: 'none',
  240. duration: 1500
  241. })
  242. this.pd = false;
  243. }
  244. })
  245. },
  246. canceltype() {
  247. this.showtype = false;
  248. },
  249. confirmtype(e) {
  250. this.showtype = false;
  251. this.mytype = e.value[0].label;
  252. this.dataForm.billType = e.value[0].id;
  253. this.dataForm.page = 1;
  254. this.indexList=[];
  255. this.getalldata();
  256. },
  257. confirmtypes(e) {
  258. // console.log('22222', e.value[0])
  259. this.showtypes = false;
  260. this.mytypes = e.value[0].dictLabel;
  261. this.dataForm.arrearDay = e.value[0].dictValue;
  262. this.dataForm.page = 1;
  263. this.indexList=[];
  264. this.getalldata();
  265. },
  266. canceltypes() {
  267. this.showtypes = false;
  268. },
  269. typechange() {
  270. this.showtype = true;
  271. },
  272. dateChange(e) {
  273. // console.log('3333',e)
  274. this.myday = e.target.value;
  275. this.dataForm.cycle = e.target.value;
  276. this.dataForm.page = 1;
  277. this.indexList=[];
  278. this.getalldata();
  279. },
  280. getDate(type) {
  281. const date = new Date();
  282. let year = date.getFullYear();
  283. let month = date.getMonth();
  284. if (type === 'start') {
  285. year = year - 60;
  286. } else if (type === 'end') {
  287. year = year + 2;
  288. }
  289. month = month > 9 ? month : '0' + month;
  290. // day = day > 9 ? day : '0' + day;
  291. return `${year}-${month}`;
  292. },
  293. }
  294. }
  295. </script>
  296. <style lang="scss">
  297. .Currentamount {
  298. padding-left: 30rpx;
  299. height: 50rpx;
  300. line-height: 50rpx;
  301. color: #BCB3A7;
  302. span {
  303. color: #FA5555;
  304. padding-left: 9rpx;
  305. }
  306. }
  307. .Callfee {
  308. width: 100rpx;
  309. height: 45rpx;
  310. text-align: center;
  311. line-height: 45rpx;
  312. color: #5C8FFF;
  313. border: 1px solid #5C8FFF;
  314. font-size: 22rpx;
  315. position: absolute;
  316. bottom: 10rpx;
  317. right: 10px;
  318. font-weight: bold;
  319. }
  320. .companylist {
  321. margin: 20rpx 30rpx;
  322. background: #fff;
  323. height: 340rpx;
  324. border-radius: 10px;
  325. position: relative;
  326. h3 {
  327. height: 70rpx;
  328. line-height: 70rpx;
  329. padding-left: 30rpx;
  330. }
  331. }
  332. .settled {
  333. background-color: #09C700;
  334. width: 100rpx;
  335. height: 40rpx;
  336. text-align: center;
  337. line-height: 40rpx;
  338. color: #fff;
  339. font-size: 14rpx;
  340. position: absolute;
  341. top: 0px;
  342. right: 0px;
  343. border-top-right-radius: 10rpx;
  344. border-bottom-left-radius: 10rpx;
  345. }
  346. .outstanding {
  347. background-color: #FA5555;
  348. width: 100rpx;
  349. height: 40rpx;
  350. text-align: center;
  351. line-height: 40rpx;
  352. color: #fff;
  353. font-size: 14rpx;
  354. position: absolute;
  355. top: 0px;
  356. right: 0px;
  357. border-top-right-radius: 10rpx;
  358. border-bottom-left-radius: 10rpx;
  359. }
  360. .billall {}
  361. .topbill {
  362. display: flex;
  363. justify-content: space-around;
  364. align-items: center;
  365. height: 100rpx;
  366. background-color: #e6e6e6;
  367. }
  368. .topbilledit {
  369. display: flex;
  370. justify-content: space-around;
  371. align-items: center;
  372. }
  373. .changetime1 {
  374. padding-right: 10rpx;
  375. }
  376. </style>