|
@@ -13,7 +13,7 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<!-- 标签弹出层 -->
|
|
|
- <u-popup v-model="popShow" duration="10" mode="top" :negative-top="188" border-radius="16">
|
|
|
+ <u-popup v-model="popShow" length="80%" duration="10" mode="top" :negative-top="188" border-radius="32">
|
|
|
<u-navbar title="扣费记录" title-color="#101010" >
|
|
|
|
|
|
</u-navbar>
|
|
@@ -28,10 +28,16 @@
|
|
|
</view>
|
|
|
</view>
|
|
|
<view class="tabs-options">
|
|
|
- <view class="item" v-for="(item, index) in tenantList" :key="index"
|
|
|
+ <view class="item" v-for="(item, index) in tenantList"
|
|
|
+ :class="{
|
|
|
+ 'item-index' : item.id==formData.tenantId
|
|
|
+ }"
|
|
|
+ :key="index"
|
|
|
@click="merchantChange(item,index)">
|
|
|
{{item.name}}
|
|
|
</view>
|
|
|
+ <u-divider nonetext="没有找到相关内容"
|
|
|
+ border-color="#CFD2D5">已经到底了</u-divider>
|
|
|
</view>
|
|
|
</u-popup>
|
|
|
<!-- 折线图
|
|
@@ -338,8 +344,10 @@
|
|
|
this.tabsFrom.show2Text='全部时间'
|
|
|
this.tabsFrom.show2Index='';
|
|
|
|
|
|
-
|
|
|
+ var date=new Date()
|
|
|
this.formData.startDate=date.getFullYear()+"-"+(date.getMonth() + 1) +"-1"
|
|
|
+ this.formData.endDate=""
|
|
|
+
|
|
|
this.queryMonth=date.getFullYear()+"年"+(date.getMonth() + 1)+"月"
|
|
|
this.deductionRecord()
|
|
|
},
|
|
@@ -632,13 +640,19 @@
|
|
|
}
|
|
|
|
|
|
.tabs-options {
|
|
|
- display: flex;
|
|
|
- padding: 24rpx 32rpx 0;
|
|
|
+ //display: flex;
|
|
|
+ padding: 24rpx 32rpx ;
|
|
|
flex-wrap: wrap;
|
|
|
|
|
|
.item {
|
|
|
- width: 25%;
|
|
|
- margin-bottom: 40rpx;
|
|
|
+ //width: 25%;
|
|
|
+ color:rgb(119, 119, 119);
|
|
|
+ margin-bottom: 24rpx;
|
|
|
+ font-size: 32rpx;
|
|
|
+ }
|
|
|
+ .item-index{
|
|
|
+ color: rgb(51, 51, 51);
|
|
|
+ font-weight: bold;
|
|
|
}
|
|
|
}
|
|
|
|