更新0911

This commit is contained in:
xyc 2025-09-11 13:37:14 +08:00
parent 3c71424ed7
commit 58fc3068b2
2 changed files with 14 additions and 5 deletions

View File

@ -64,7 +64,11 @@
<view class="user_right">
<view class="user_kar" v-for="(item,index) in items.children" :key="index">
<view class="">{{ item.projectName }}</view>
<view class="num_">{{ item.count }}</view>
<view>
<view class="num_">{{ item.count }}</view>
<view class="num_1">{{ item.percentage }}%</view>
</view>
</view>
</view>
</view>
@ -224,10 +228,6 @@
value
} = this.tapList[index];
console.log(value);
// this.queryParams.datetimeRange = [
// this.formatDate(firstDay),
// this.formatDate(now)
// ];
this.queryParams.datetimeRange = getDateRange(value);
this.getStaffCount();
},
@ -463,4 +463,8 @@
font-size: 28rpx;
color: #2F353B;
}
.num_1 {
color: #0357FF;
}
</style>

View File

@ -32,6 +32,7 @@
<view class="wr_boxs" v-for="(item,index) in baseDataInfo.goodsStatistics" :key="index"
@click="selectGoodsTitle(item.goodsTitle)">
<view class="num_">{{item.totalCount}}</view>
<view class="num_1">{{item.percentage}}%</view>
<view class="size_">{{item.goodsTitle}}</view>
</view>
</view>
@ -266,6 +267,10 @@
color: #2F353B;
}
.num_1 {
color: #0357FF;
}
.num_2 {
font-weight: bold;
font-size: 40rpx;