123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450 |
- <template>
- <view class="">
- <view class="topname">
- <view class="topname1" @click="goback">
- <u-icon name="arrow-left" color="#000000" size="36"></u-icon>
- </view>
- <view class="topname2">
- {{ this.fatherparameter.name}}
- </view>
- </view>
- <view class="subsection">
- <u-subsection :list="list" :current="current" @change="sectionChange"></u-subsection>
- </view>
-
- <!-- 列表 -->
- <!-- 账单明细 -->
- <view class="" v-show="cdshow==true">
- <!-- 日期选择器 -->
- <view class="topbilledit">
- <view class="changetime1">
- <picker mode="date" :value="dataForm.costCycle" fields="month" @change="dateChange">
- <view class="selestDate">{{dataForm.costCycle}}</view>
- </picker>
- </view>
- <view class="changetime2">
- <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
- </view>
- </view>
-
- <view class="nodata" v-if="nodata==true" >
- 暂无数据
- </view>
- <view class="yesdata" v-if="nodata==false">
- <view class="onerecord">
- 共有 <span>1</span>条记录
- </view>
- <view class="records">
- <view class="records1">
- 待支付
- </view>
- <view class="Currentamount">
- 物业费: <span>¥{{zddata.amount}}</span>
- </view>
- <view class="Currentamount">
- 管理费:¥ {{zddata.glf}}
- </view>
- <view class="Currentamount">
- 中央空调使用费:¥ {{zddata.ktf}}
- </view>
- <view class="Currentamount">
- 电梯费:¥ {{zddata.dtf}}
- </view>
- </view>
- </view>
- </view>
- <!-- 缴费记录 -->
- <view class="" v-show="cdshow==false">
- <view class="topbilledit" @click="typechange">
- <view class="changetime1">
- {{expensedata}}
- </view>
- <view class="changetime2">
- <u-icon name="arrow-down-fill" color="#666666" size="20"></u-icon>
- </view>
- </view>
- <!-- 列表 -->
- <view class="nodata" v-if="jfnodata==true" >
- 暂无数据
- </view>
- <view class="u-listdata" v-if="jfnodata==false">
- <view style="padding:10rpx 0 0 30rpx">
- 共有 <span style="color: red">{{totalnumber}}</span>条记录
- </view>
-
- <u-list @scrolltolower="scrolltolower" :pagingEnabled='true'>
- <u-list-item v-for="(item, index) in indexList" :key="index">
-
- <view class="companylist" >
- <view class="settled" v-if="item.status==1">
- 预存
- </view>
- <h3>{{item.tenantInfo.name}}</h3>
- <view class="Currentamount1">
- 扣缴金额: <span>¥{{item.amount}}</span>
- </view>
- <view class="Currentamount1">
- 账户余额: {{item.surplus}}
- </view>
- <view class="Currentamount1">
- 租户电话:¥{{item.tenantInfo.tel}}
- </view>
- <view class="Currentamount1">
- 操作人: {{item.creator}}
- </view>
- <view class="Currentamount1">
- 扣缴时间: {{item.createDate}}
- </view>
- </view>
-
- </u-list-item>
- </u-list>
-
- </view>
- </view>
- <u-picker :show="showtype" :columns="columnstype" keyName="dictLabel" @confirm="confirmtype" @cancel='canceltype'>
- </u-picker>
- </view>
- </template>
- <script>
- // import {
- // isEmpty,
- // getDictDataList
- // } from "@/utils/index";
- export default {
- data() {
- return {
- totalnumber:0,
- jfnodata:false,
- showtype: false,
- cdshow: true,
- fatherparameter: {},
- expensedata:'全部',
- list: ['账单明细', '缴费记录', ],
- current: 0,
- dataForm: {
- tenantId: "",
- costCycle: "",
- type: "",
- page: 1,
- limit: 10,
- },
- indexList: [],
- payStatusList: [],
- zddata:{
- amount:'',
- dtf:'',
- ktf:'',
- glf:'',
- },
- nodata:true,
- pd:true,
- columnstype: [],
- jfpost: {
- tenantId: "",
- costCycle: "",
- type: "",
- page: 1,
- limit: 10,
- },
-
- }
- },
- //监听页面加载,其参数为上个页面传递的数据,参数类型为 Object(用于页面传参
- onLoad: function(options) { //option为object类型,会序列化上个页面传递的参数
- // console.log(options); //打印出上个页面传递的参数。
- this.fatherparameter = JSON.parse(decodeURIComponent(options.para));
-
- let getDictDataList=uni.getStorageSync('getDictDataList');
- console.log('111111111111111111',getDictDataList)
- for(let i=0;i<getDictDataList.length;i++){
- if(getDictDataList[i].dictType=='PayType'){
- this.columnstype=[getDictDataList[i].dataList]
- }
- if(getDictDataList[i].dictType=='PayStatus'){
- this.payStatusList=[getDictDataList[i].dataList]
- }
- }
-
- this.dataForm.tenantId = this.fatherparameter.id;
- this.dataForm.costCycle = this.fatherparameter.cycle;
- this.dataForm.page = 1;
-
-
- this.jfpost.tenantId = this.fatherparameter.id;
- this.jfpost.costCycle = this.fatherparameter.cycle;
- this.jfpost.page = 1;
-
- this.getalldata();
- // this.getPayStatusList();
- //this.getPayTypeList();
- },
- //监听页面初次渲染完成。注意如果渲染速度快,会在页面进入动画完成前触发
- onReady() {},
- //监听页面隐藏
- onHide() {},
- //监听窗口尺寸变化
- onResize() {},
- //监听页面卸载
- onUnload() {},
- //监听用户下拉动作,一般用于下拉刷新
- onPullDownRefresh() {},
- methods: {
-
- // getPayTypeList() {
- // this.columnstype=[getDictDataList("PayType")]
- // },
-
- // getPayStatusList() {
- // this.payStatusList = getDictDataList("PayStatus");
- // // console.log('0000', this.payStatusList)
- // },
- goback() {
- uni.navigateBack({
- delta: 1
- });
- },
-
-
- canceltype() {
- this.showtype = false;
- },
- confirmtype(e) {
- console.log('111111111111111111', e.value[0])
- this.showtype = false;
- this.expensedata = e.value[0].dictLabel;
- if( e.value[0].dictLabel=='全部'){
- this.jfpost.type= '';
- } else{
- this.jfpost.type= e.value[0].dictValue;
- }
-
-
- this.indexList=[];
- this.jfpost.page = 1;
- this.getjfdata();
- },
- typechange() {
- this.showtype = true;
- },
- sectionChange(index) {
- this.current = index;
- if (index == 0) {
- this.cdshow = true;
- this.dataForm.page = 1;
- this.getalldata();
- } else {
- this.cdshow = false;
- this.jfpost.page = 1;
- this.indexList=[];
- this.getjfdata();
- }
- },
- scrolltolower() {
- if(this.pd){
- this.getjfdata();
- }else{
- return
- }
- },
- getjfdata(){
- this.$api.get('/payrecord/page', this.jfpost)
- .then(res => {
- this.totalnumber=res.data.data.total;
- // console.log('111111111111111111',res.data.data.list)
- if (res.data.data.list.length != 0) {
- this.indexList.push(...res.data.data.list);
- this.jfpost.page = this.jfpost.page + 1;
- this.pd=true;
- this.jfnodata=false;
- } else {
- uni.showToast({
- title:'暂无更多数据了',
- icon: 'none',
- duration: 1500
- })
- this.pd=false;
- //this.jfnodata=true
- }
-
- })
- },
-
-
- dateChange(e) {
- this.myday = e.target.value;
- this.dataForm.costCycle = e.target.value;
- this.jfpost.costCycle = e.target.value;
-
- this.dataForm.page = 1;
- this.getalldata();
- },
- getalldata() {
- this.$api.post('/billinfo/billDetail', this.dataForm)
- .then(res => {
- //console.log('111111111111111111', res.data)
- // this.indexList = [];
- // this.indexList = res.data.data;
- // console.log('222222', this.indexList)
- if(res.data.data.length==0){
- // console.log('111111111111111111',)
- this.zddata={};
- this.nodata=true;
- }else{
- this.zddata.amount=res.data.data[0].amount;
- this.zddata.glf=res.data.data[0].billLists[0].amount;
- this.zddata.ktf=res.data.data[0].billLists[1].amount;
- this.zddata.dtf=res.data.data[0].billLists[2].amount;
- this.nodata=false;
- }
- })
- },
- }
- }
- </script>
- <style lang="scss">
- .nodata{
- text-align: center;
- padding-top: 400rpx;
-
- }
- .yesdata{
-
- }
- .companylist {
- margin: 20rpx 30rpx;
- background: #fff;
- height: 280rpx;
- border-radius: 10px;
- position: relative;
-
- h3 {
- height: 70rpx;
- line-height: 70rpx;
- padding-left: 30rpx;
- }
- }
- .settled {
- background-color: #09C700;
- width: 100rpx;
- height: 40rpx;
- text-align: center;
- line-height: 40rpx;
- color: #fff;
- font-size: 14rpx;
- position: absolute;
- top: 0px;
- right: 0px;
- border-top-right-radius: 10rpx;
- border-bottom-left-radius: 10rpx;
- }
- .Currentamount {
- padding-left: 30rpx;
- height: 50rpx;
- line-height: 50rpx;
- color: #BCB3A7;
-
- span {
- color: #FA5555;
- padding-left: 9rpx;
- }
- }
-
- .Currentamount1 {
- padding-left: 30rpx;
- height: 40rpx;
- line-height: 40rpx;
- color: #BCB3A7;
-
- span {
- color: #FA5555;
- padding-left: 9rpx;
- }
- }
-
- .records1{
- background-color: #FA5555;
- width: 100rpx;
- height: 40rpx;
- text-align: center;
- line-height: 40rpx;
- color: #fff;
- font-size: 14rpx;
- position: absolute;
- top: 0px;
- right: 0px;
- border-top-right-radius: 10rpx;
- border-bottom-left-radius: 10rpx;
- }
- .records{
- display: flex;
- flex-direction: column;
- // justify-content: center;
- position: relative;
- width: 690rpx;
- height: 210rpx;
- background: #fff;
- margin: 0 auto;
- border-radius: 9rpx;
- }
- .onerecord{
- width: 750rpx;
- height: 90rpx;
- line-height: 90rpx;
- padding-left: 30rpx;
- color: #999;
- span{
- color: red;
- }
- }
- .topbilledit {
- display: flex;
- justify-content: center;
- align-items: center;
- background: #fff;
- height: 60rpx;
- }
- .changetime2 {
- padding-left: 10rpx;
- }
- .subsection {
- padding: 30rpx;
- background: #fff;
- margin-top: 30rpx;
- }
- .topname {
- height: 44px;
- width: 750rpx;
- display: flex;
- align-items: center;
- }
- .topname1 {
- width: 50rpx;
- padding-left: 10rpx;
- }
- .topname2 {
- width: 700rpx;
- text-align: center;
- font-weight: bold;
- }
- </style>
|