companybill.vue 9.1 KB

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