companybill.vue 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450
  1. <template>
  2. <view class="">
  3. <view class="topname">
  4. <view class="topname1" @click="goback">
  5. <u-icon name="arrow-left" color="#000000" size="36"></u-icon>
  6. </view>
  7. <view class="topname2">
  8. {{ this.fatherparameter.name}}
  9. </view>
  10. </view>
  11. <view class="subsection">
  12. <u-subsection :list="list" :current="current" @change="sectionChange"></u-subsection>
  13. </view>
  14. <!-- 列表 -->
  15. <!-- 账单明细 -->
  16. <view class="" v-show="cdshow==true">
  17. <!-- 日期选择器 -->
  18. <view class="topbilledit">
  19. <view class="changetime1">
  20. <picker mode="date" :value="dataForm.costCycle" fields="month" @change="dateChange">
  21. <view class="selestDate">{{dataForm.costCycle}}</view>
  22. </picker>
  23. </view>
  24. <view class="changetime2">
  25. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  26. </view>
  27. </view>
  28. <view class="nodata" v-if="nodata==true" >
  29. 暂无数据
  30. </view>
  31. <view class="yesdata" v-if="nodata==false">
  32. <view class="onerecord">
  33. 共有 <span>1</span>条记录
  34. </view>
  35. <view class="records">
  36. <view class="records1">
  37. 待支付
  38. </view>
  39. <view class="Currentamount">
  40. 物业费: <span>¥{{zddata.amount}}</span>
  41. </view>
  42. <view class="Currentamount">
  43. 管理费:¥ {{zddata.glf}}
  44. </view>
  45. <view class="Currentamount">
  46. 中央空调使用费:¥ {{zddata.ktf}}
  47. </view>
  48. <view class="Currentamount">
  49. 电梯费:¥ {{zddata.dtf}}
  50. </view>
  51. </view>
  52. </view>
  53. </view>
  54. <!-- 缴费记录 -->
  55. <view class="" v-show="cdshow==false">
  56. <view class="topbilledit" @click="typechange">
  57. <view class="changetime1">
  58. {{expensedata}}
  59. </view>
  60. <view class="changetime2">
  61. <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
  62. </view>
  63. </view>
  64. <!-- 列表 -->
  65. <view class="nodata" v-if="jfnodata==true" >
  66. 暂无数据
  67. </view>
  68. <view class="u-listdata" v-if="jfnodata==false">
  69. <view style="padding:10rpx 0 0 30rpx">
  70. 共有 <span style="color: red">{{totalnumber}}</span>条记录
  71. </view>
  72. <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
  73. <u-list-item v-for="(item, index) in indexList" :key="index">
  74. <view class="companylist" >
  75. <view class="settled" v-if="item.status==1">
  76. 预存
  77. </view>
  78. <h3>{{item.tenantInfo.name}}</h3>
  79. <view class="Currentamount1">
  80. 扣缴金额: <span>¥{{item.amount}}</span>
  81. </view>
  82. <view class="Currentamount1">
  83. 账户余额: {{item.surplus}}
  84. </view>
  85. <view class="Currentamount1">
  86. 租户电话:¥{{item.tenantInfo.tel}}
  87. </view>
  88. <view class="Currentamount1">
  89. 操作人: {{item.creator}}
  90. </view>
  91. <view class="Currentamount1">
  92. 扣缴时间: {{item.createDate}}
  93. </view>
  94. </view>
  95. </u-list-item>
  96. </u-list>
  97. </view>
  98. </view>
  99. <u-picker :show="showtype" :columns="columnstype" keyName="dictLabel" @confirm="confirmtype" @cancel='canceltype'>
  100. </u-picker>
  101. </view>
  102. </template>
  103. <script>
  104. // import {
  105. // isEmpty,
  106. // getDictDataList
  107. // } from "@/utils/index";
  108. export default {
  109. data() {
  110. return {
  111. totalnumber:0,
  112. jfnodata:false,
  113. showtype: false,
  114. cdshow: true,
  115. fatherparameter: {},
  116. expensedata:'全部',
  117. list: ['账单明细', '缴费记录', ],
  118. current: 0,
  119. dataForm: {
  120. tenantId: "",
  121. costCycle: "",
  122. type: "",
  123. page: 1,
  124. limit: 10,
  125. },
  126. indexList: [],
  127. payStatusList: [],
  128. zddata:{
  129. amount:'',
  130. dtf:'',
  131. ktf:'',
  132. glf:'',
  133. },
  134. nodata:true,
  135. pd:true,
  136. columnstype: [],
  137. jfpost: {
  138. tenantId: "",
  139. costCycle: "",
  140. type: "",
  141. page: 1,
  142. limit: 10,
  143. },
  144. }
  145. },
  146. //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
  147. onLoad: function(options) { //option为object类型,会序列化上个页面传递的参数
  148. // console.log(options); //打印出上个页面传递的参数。
  149. this.fatherparameter = JSON.parse(decodeURIComponent(options.para));
  150. let getDictDataList=uni.getStorageSync('getDictDataList');
  151. console.log('111111111111111111',getDictDataList)
  152. for(let i=0;i<getDictDataList.length;i++){
  153. if(getDictDataList[i].dictType=='PayType'){
  154. this.columnstype=[getDictDataList[i].dataList]
  155. }
  156. if(getDictDataList[i].dictType=='PayStatus'){
  157. this.payStatusList=[getDictDataList[i].dataList]
  158. }
  159. }
  160. this.dataForm.tenantId = this.fatherparameter.id;
  161. this.dataForm.costCycle = this.fatherparameter.cycle;
  162. this.dataForm.page = 1;
  163. this.jfpost.tenantId = this.fatherparameter.id;
  164. this.jfpost.costCycle = this.fatherparameter.cycle;
  165. this.jfpost.page = 1;
  166. this.getalldata();
  167. // this.getPayStatusList();
  168. //this.getPayTypeList();
  169. },
  170. //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
  171. onReady() {},
  172. //监听页面隐藏
  173. onHide() {},
  174. //监听窗口尺寸变化
  175. onResize() {},
  176. //监听页面卸载
  177. onUnload() {},
  178. //监听用户下拉动作,一般用于下拉刷新
  179. onPullDownRefresh() {},
  180. methods: {
  181. // getPayTypeList() {
  182. // this.columnstype=[getDictDataList("PayType")]
  183. // },
  184. // getPayStatusList() {
  185. // this.payStatusList = getDictDataList("PayStatus");
  186. // // console.log('0000', this.payStatusList)
  187. // },
  188. goback() {
  189. uni.navigateBack({
  190. delta: 1
  191. });
  192. },
  193. canceltype() {
  194. this.showtype = false;
  195. },
  196. confirmtype(e) {
  197. console.log('111111111111111111', e.value[0])
  198. this.showtype = false;
  199. this.expensedata = e.value[0].dictLabel;
  200. if( e.value[0].dictLabel=='全部'){
  201. this.jfpost.type= '';
  202. } else{
  203. this.jfpost.type= e.value[0].dictValue;
  204. }
  205. this.indexList=[];
  206. this.jfpost.page = 1;
  207. this.getjfdata();
  208. },
  209. typechange() {
  210. this.showtype = true;
  211. },
  212. sectionChange(index) {
  213. this.current = index;
  214. if (index == 0) {
  215. this.cdshow = true;
  216. this.dataForm.page = 1;
  217. this.getalldata();
  218. } else {
  219. this.cdshow = false;
  220. this.jfpost.page = 1;
  221. this.indexList=[];
  222. this.getjfdata();
  223. }
  224. },
  225. scrolltolower() {
  226. if(this.pd){
  227. this.getjfdata();
  228. }else{
  229. return
  230. }
  231. },
  232. getjfdata(){
  233. this.$api.get('/payrecord/page', this.jfpost)
  234. .then(res => {
  235. this.totalnumber=res.data.data.total;
  236. // console.log('111111111111111111',res.data.data.list)
  237. if (res.data.data.list.length != 0) {
  238. this.indexList.push(...res.data.data.list);
  239. this.jfpost.page = this.jfpost.page + 1;
  240. this.pd=true;
  241. this.jfnodata=false;
  242. } else {
  243. uni.showToast({
  244. title:'暂无更多数据了',
  245. icon: 'none',
  246. duration: 1500
  247. })
  248. this.pd=false;
  249. //this.jfnodata=true
  250. }
  251. })
  252. },
  253. dateChange(e) {
  254. this.myday = e.target.value;
  255. this.dataForm.costCycle = e.target.value;
  256. this.jfpost.costCycle = e.target.value;
  257. this.dataForm.page = 1;
  258. this.getalldata();
  259. },
  260. getalldata() {
  261. this.$api.post('/billinfo/billDetail', this.dataForm)
  262. .then(res => {
  263. //console.log('111111111111111111', res.data)
  264. // this.indexList = [];
  265. // this.indexList = res.data.data;
  266. // console.log('222222', this.indexList)
  267. if(res.data.data.length==0){
  268. // console.log('111111111111111111',)
  269. this.zddata={};
  270. this.nodata=true;
  271. }else{
  272. this.zddata.amount=res.data.data[0].amount;
  273. this.zddata.glf=res.data.data[0].billLists[0].amount;
  274. this.zddata.ktf=res.data.data[0].billLists[1].amount;
  275. this.zddata.dtf=res.data.data[0].billLists[2].amount;
  276. this.nodata=false;
  277. }
  278. })
  279. },
  280. }
  281. }
  282. </script>
  283. <style lang="scss">
  284. .nodata{
  285. text-align: center;
  286. padding-top: 400rpx;
  287. }
  288. .yesdata{
  289. }
  290. .companylist {
  291. margin: 20rpx 30rpx;
  292. background: #fff;
  293. height: 280rpx;
  294. border-radius: 10px;
  295. position: relative;
  296. h3 {
  297. height: 70rpx;
  298. line-height: 70rpx;
  299. padding-left: 30rpx;
  300. }
  301. }
  302. .settled {
  303. background-color: #09C700;
  304. width: 100rpx;
  305. height: 40rpx;
  306. text-align: center;
  307. line-height: 40rpx;
  308. color: #fff;
  309. font-size: 14rpx;
  310. position: absolute;
  311. top: 0px;
  312. right: 0px;
  313. border-top-right-radius: 10rpx;
  314. border-bottom-left-radius: 10rpx;
  315. }
  316. .Currentamount {
  317. padding-left: 30rpx;
  318. height: 50rpx;
  319. line-height: 50rpx;
  320. color: #BCB3A7;
  321. span {
  322. color: #FA5555;
  323. padding-left: 9rpx;
  324. }
  325. }
  326. .Currentamount1 {
  327. padding-left: 30rpx;
  328. height: 40rpx;
  329. line-height: 40rpx;
  330. color: #BCB3A7;
  331. span {
  332. color: #FA5555;
  333. padding-left: 9rpx;
  334. }
  335. }
  336. .records1{
  337. background-color: #FA5555;
  338. width: 100rpx;
  339. height: 40rpx;
  340. text-align: center;
  341. line-height: 40rpx;
  342. color: #fff;
  343. font-size: 14rpx;
  344. position: absolute;
  345. top: 0px;
  346. right: 0px;
  347. border-top-right-radius: 10rpx;
  348. border-bottom-left-radius: 10rpx;
  349. }
  350. .records{
  351. display: flex;
  352. flex-direction: column;
  353. // justify-content: center;
  354. position: relative;
  355. width: 690rpx;
  356. height: 210rpx;
  357. background: #fff;
  358. margin: 0 auto;
  359. border-radius: 9rpx;
  360. }
  361. .onerecord{
  362. width: 750rpx;
  363. height: 90rpx;
  364. line-height: 90rpx;
  365. padding-left: 30rpx;
  366. color: #999;
  367. span{
  368. color: red;
  369. }
  370. }
  371. .topbilledit {
  372. display: flex;
  373. justify-content: center;
  374. align-items: center;
  375. background: #fff;
  376. height: 60rpx;
  377. }
  378. .changetime2 {
  379. padding-left: 10rpx;
  380. }
  381. .subsection {
  382. padding: 30rpx;
  383. background: #fff;
  384. margin-top: 30rpx;
  385. }
  386. .topname {
  387. height: 44px;
  388. width: 750rpx;
  389. display: flex;
  390. align-items: center;
  391. }
  392. .topname1 {
  393. width: 50rpx;
  394. padding-left: 10rpx;
  395. }
  396. .topname2 {
  397. width: 700rpx;
  398. text-align: center;
  399. font-weight: bold;
  400. }
  401. </style>