This commit is contained in:
ylj20011123 2025-10-24 16:06:12 +08:00
parent 7cc6a538e7
commit 6c38e982b3
5 changed files with 368 additions and 135 deletions

View File

@ -73,7 +73,8 @@
<view class="chart-content">
<view class="line-chart-container">
<QiunDataCharts type="line" :opts="timeDistributionOpts" :chartData="timeDistributionChartData"
:canvas2d="true" :inScrollView="true" canvasId="timeDistributionChart" />
:canvas2d="true" :inScrollView="true" canvasId="timeDistributionChart"
tooltipFormat="timeDistributionChartData" />
</view>
</view>
</view>
@ -87,7 +88,21 @@
<view class="chart-content">
<view class="map-chart-container">
<QiunDataCharts type="pie" :opts="regionDistributionOpts" :chartData="regionDistributionData" :canvas2d="true"
:inScrollView="true" canvasId="regionDistributionChart" />
:inScrollView="true" canvasId="regionDistributionChart" tooltipFormat="regionDistributionData" />
<!-- 自定义可滚动图例 -->
<view class="custom-region-legend">
<scroll-view class="legend-scroll" scroll-x="true" show-scrollbar="false">
<view class="legend-items">
<view v-for="(item, index) in regionLegendData" :key="index" class="legend-item"
@tap="onLegendTap(index)">
<view class="legend-color" :style="{ backgroundColor: item.color }"></view>
<text class="legend-name">{{ item.name }}</text>
<text class="legend-value">{{ item.percentage }}%</text>
</view>
</view>
</scroll-view>
</view>
</view>
</view>
</view>
@ -96,12 +111,12 @@
<view class="chart-card">
<view class="chart-header">
<text class="chart-title">商品销售量分析</text>
<text class="chart-subtitle">TOP 10 热销商品销量</text>
<text class="chart-subtitle">TOP 5 热销商品销量</text>
</view>
<view class="chart-content">
<view class="bar-chart-container">
<QiunDataCharts type="column" :opts="salesVolumeOpts" :chartData="salesVolumeChartData" :canvas2d="true"
:inScrollView="true" canvasId="salesVolumeChart" />
:inScrollView="true" canvasId="salesVolumeChart" tooltipFormat="SalesRankingOfProducts"/>
</view>
</view>
</view>
@ -191,6 +206,14 @@ export default {
//
timeDistributionOpts() {
// y
const allData = [
...this.timeDistributionData.transactionData.map(item => Number(item) || 0),
...this.timeDistributionData.amountData.map(item => Number(item) || 0)
]
const maxValue = Math.max(...allData)
const yAxisMax = this.calculateYAxisMax(maxValue)
return {
color: ['#576EFF', '#52C41A'],
padding: [15, 15, 15, 15],
@ -204,15 +227,12 @@ export default {
yAxis: {
gridType: 'dash',
dashLength: 2,
data: [
{
min: 0
},
{
min: 0,
position: 'right'
}
]
data: [{
min: 0,
max: yAxisMax,
// 使splitNumber
splitNumber: 6
}]
},
extra: {
line: {
@ -224,36 +244,77 @@ export default {
}
},
//
colorPalette() {
return [
'#576EFF', '#52C41A', '#FAAD14', '#FF4D4F', '#722ED1',
'#13C2C2', '#EB2F96', '#F5222D', '#FA8C16', '#A0D911',
'#52C41A', '#1890FF', '#722ED1', '#EB2F96', '#13C2C2',
'#FAAD14', '#F5222D', '#FA8C16', '#A0D911', '#52C41A',
'#1890FF', '#722ED1', '#EB2F96', '#13C2C2', '#FAAD14',
'#F5222D', '#FA8C16', '#A0D911', '#52C41A', '#1890FF'
]
},
//
regionDistributionData() {
//
const total = this.regionData.reduce((sum, item) => sum + Number(item.value), 0)
return {
series: [{
data: this.regionData.map(item => ({
data: this.regionData.map((item, index) => ({
name: item.name,
value: item.value
value: Number(item.value),
color: this.colorPalette[index % this.colorPalette.length], //
data: {
percentage: (Number(item.value) / total * 100),
originalIndex: index //
}
}))
}]
}
},
//
regionLegendData() {
//
const total = this.regionData.reduce((sum, item) => sum + Number(item.value), 0)
return this.regionData.map((item, index) => ({
name: item.name,
value: Number(item.value),
percentage: ((Number(item.value) / total * 100).toFixed(1)),
color: this.colorPalette[index % this.colorPalette.length], //
originalIndex: index //
})).sort((a, b) => b.value - a.value) //
},
//
regionDistributionOpts() {
return {
padding: [5, 5, 5, 5],
dataLabel: true,
dataLabel: false,
legend: {
show: true
show: false // 使
},
extra: {
pie: {
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: 0,
labelWidth: 15,
border: false,
borderWidth: 3,
borderWidth: 2,
borderColor: '#FFFFFF'
}
},
// tooltip
tooltip: {
format: (item) => {
const legendItem = this.regionLegendData.find(legend => legend.name === item.name)
const percentage = legendItem ? legendItem.percentage : '0.0'
return `${item.name}: ${this.formatMoney(item.value)}元 (${percentage}%)`
}
}
}
},
@ -262,10 +323,10 @@ export default {
salesVolumeChartData() {
return {
categories: this.salesVolumeData.map(item =>
item.name.length > 6 ? item.name.substring(0, 6) + '...' : item.name
this.formatXAxisLabel(item.name)
),
series: [{
name: '销量',
name: '销量',
data: this.salesVolumeData.map(item => item.value)
}]
}
@ -273,35 +334,58 @@ export default {
//
salesVolumeOpts() {
// 6100
const maxSales = Math.max(...this.salesVolumeData.map(item => item.value));
const roundedMax = Math.ceil(maxSales / 100) * 100; // 100
const yAxisInterval = Math.ceil(roundedMax / 5); // 56
const finalInterval = Math.ceil(yAxisInterval / 100) * 100; // 100
const finalMax = finalInterval * 5; //
// Y
const yAxisData = [];
for (let i = 0; i <= 5; i++) {
yAxisData.push(i * finalInterval);
}
return {
color: ['#576EFF'],
padding: [15, 15, 15, 15],
legend: {
show: true,
color: ['#576EFF']
},
padding: [20, 15, 35, 15], // paddingX
dataLabel: false,
enableScroll: true,
enableScroll: false,
xAxis: {
itemCount: 4,
scrollShow: true,
itemCount: 5, //
scrollAlign: 'right',
scrollColor: '#576EFF',
scrollBackgroundColor: 'rgba(87, 110, 255, 0.1)',
scrollWidth: 4,
scrollHeight: 8
scrollHeight: 8,
rotate: 30, // 30
fontSize: 12, //
margin: 15 // 线
},
yAxis: {
gridType: 'dash',
dashLength: 2,
data: [{
min: 0
min: 0,
max: finalMax,
data: yAxisData
}]
},
categoriesReal: this.salesVolumeData.map(item => item.name),
extra: {
column: {
type: 'group',
width: 30,
width: 12, // ProductReport
activeBgColor: '#000000',
activeBgOpacity: 0.08,
linearType: 'custom',
barBorderCircle: true
barBorderCircle: true,
linearType: 'none',
linearOpacity: 0
}
}
}
@ -370,6 +454,44 @@ export default {
//
this.hanleGetShopSalesVolumeData()
},
// y6100
calculateYAxisMax(maxValue) {
if (maxValue === 0) return 600 //
// 6100500
// 500 -> [0,100,200,300,400,500]
const baseInterval = 100
const tickCount = 6
//
const idealInterval = Math.ceil(maxValue / (tickCount - 1) / baseInterval) * baseInterval
// y = × (-1)
const yAxisMax = idealInterval * (tickCount - 1)
return yAxisMax
},
//
onLegendTap(index) {
//
const tappedLegend = this.regionLegendData[index]
console.log('点击图例:', tappedLegend)
//
uni.showToast({
title: `${tappedLegend.name}: ${tappedLegend.percentage}%`,
icon: 'none'
})
},
// X
formatXAxisLabel(name) {
if (!name) return '';
// 4
return name.length > 4 ? name.substring(0, 4) + '...' : name;
},
//
async hanleGetShopSalesVolumeData() {
const req = {
@ -472,10 +594,15 @@ export default {
if (list && list.length > 0) {
list.forEach((item) => {
let hour = Number(item.name)
if (hour % 4 === 0 || hour === 0) {
// x40
if (hour === 0 || hour % 4 === 0) {
categories.push(`${item.name}`)
} else {
categories.push('') //
}
// let hour = Number(item.name) < 10 ? `0${item.name}:00` : `${item.name}:00`
//
transactionData.push(item.data)
amountData.push(item.key)
})
@ -485,12 +612,8 @@ export default {
transactionData: transactionData,
amountData: amountData
}
//
// timeDistributionData: {
// categories: ['00:00', '02:00', '04:00', '06:00', '08:00', '10:00', '12:00', '14:00', '16:00', '18:00', '20:00', '22:00'],
// transactionData: [234, 156, 89, 123, 567, 1234, 2345, 1876, 1567, 2890, 2456, 1876],
// amountData: [12345, 8234, 4567, 6789, 34567, 67890, 123456, 98765, 82345, 156789, 123456, 98765]
// }
// 24x704812162024
//
},
formatNumber(num) {
return num.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ",")
@ -756,6 +879,64 @@ export default {
.bar-chart-container {
width: 100%;
}
//
.custom-region-legend {
margin-top: 20rpx;
width: 100%;
.legend-scroll {
width: 100%;
white-space: nowrap;
.legend-items {
display: inline-flex;
gap: 16rpx;
padding: 0 8rpx;
.legend-item {
display: flex;
align-items: center;
gap: 8rpx;
padding: 8rpx 12rpx;
background: rgba(0, 0, 0, 0.02);
border-radius: 8rpx;
border: 1rpx solid rgba(0, 0, 0, 0.1);
white-space: nowrap;
transition: all 0.2s ease;
&:active {
background: rgba(87, 110, 255, 0.1);
border-color: #576EFF;
transform: scale(0.95);
}
.legend-color {
width: 16rpx;
height: 16rpx;
border-radius: 4rpx;
flex-shrink: 0;
}
.legend-name {
font-size: 24rpx;
color: @text-secondary;
max-width: 120rpx;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.legend-value {
font-size: 24rpx;
color: @text-primary;
font-weight: 600;
flex-shrink: 0;
}
}
}
}
}
}
}
}

View File

@ -11,19 +11,16 @@
<!-- 对比分析切换 -->
<view class="analysis-tabs">
<view class="tab-item"
:class="{ active: activeAnalysisType === 'compare' }"
@click="switchAnalysisType('compare')">
<view class="tab-item" :class="{ active: activeAnalysisType === 'compare' }"
@click="switchAnalysisType('compare')">
<text class="tab-text">对比分析</text>
</view>
<view class="tab-item"
:class="{ active: activeAnalysisType === 'yearOverYear' }"
@click="switchAnalysisType('yearOverYear')">
<view class="tab-item" :class="{ active: activeAnalysisType === 'yearOverYear' }"
@click="switchAnalysisType('yearOverYear')">
<text class="tab-text">同比分析</text>
</view>
<view class="tab-item"
:class="{ active: activeAnalysisType === 'monthOverMonth' }"
@click="switchAnalysisType('monthOverMonth')">
<view class="tab-item" :class="{ active: activeAnalysisType === 'monthOverMonth' }"
@click="switchAnalysisType('monthOverMonth')">
<text class="tab-text">环比分析</text>
</view>
</view>
@ -64,14 +61,8 @@
</view>
<view class="chart-content">
<view class="bar-chart-container">
<QiunDataCharts
type="column"
:opts="regionRevenueChartOpts"
:chartData="regionRevenueChartData"
:canvas2d="true"
:inScrollView="true"
canvasId="regionRevenueChart"
/>
<QiunDataCharts type="column" :opts="regionRevenueChartOpts" :chartData="regionRevenueChartData"
:canvas2d="true" :inScrollView="true" canvasId="regionRevenueChart" />
</view>
</view>
</view>
@ -84,21 +75,8 @@
</view>
<view class="chart-content">
<view class="pie-chart-container">
<QiunDataCharts
type="pie"
:opts="distributionChartOpts"
:chartData="distributionChartData"
:canvas2d="true"
:inScrollView="true"
canvasId="distributionChart"
/>
<view class="pie-legend">
<view class="legend-item" v-for="(item, index) in distributionData" :key="index">
<view class="legend-color" :style="{ backgroundColor: item.color }"></view>
<text class="legend-name">{{ item.name }}</text>
<text class="legend-value">{{ item.count }}({{ item.percentage }}%)</text>
</view>
</view>
<QiunDataCharts type="pie" :opts="distributionChartOpts" :chartData="distributionChartData" :canvas2d="true"
:inScrollView="true" canvasId="distributionChart" />
</view>
</view>
</view>
@ -116,29 +94,40 @@
<text class="region-name">{{ region.name }}区域</text>
<view class="overall-score">
<text class="score-label">综合评分</text>
<text class="score-value">{{ Math.round((region.traffic + region.vehicles + region.revenue + region.profit + region.growth) / 5) }}</text>
<text class="score-value">{{ Math.round((region.traffic + region.vehicles + region.revenue +
region.profit + region.growth) / 5) }}</text>
</view>
</view>
<view class="metrics-grid">
<view class="metric-box">
<text class="metric-label">客流量</text>
<text :class="['metric-score', region.traffic >= 85 ? 'high' : region.traffic >= 70 ? 'medium-high' : region.traffic >= 55 ? 'medium' : region.traffic >= 40 ? 'medium-low' : 'low']">{{ region.traffic }}</text>
<text
:class="['metric-score', region.traffic >= 85 ? 'high' : region.traffic >= 70 ? 'medium-high' : region.traffic >= 55 ? 'medium' : region.traffic >= 40 ? 'medium-low' : 'low']">{{
region.traffic }}</text>
</view>
<view class="metric-box">
<text class="metric-label">车流量</text>
<text :class="['metric-score', region.vehicles >= 85 ? 'high' : region.vehicles >= 70 ? 'medium-high' : region.vehicles >= 55 ? 'medium' : region.vehicles >= 40 ? 'medium-low' : 'low']">{{ region.vehicles }}</text>
<text
:class="['metric-score', region.vehicles >= 85 ? 'high' : region.vehicles >= 70 ? 'medium-high' : region.vehicles >= 55 ? 'medium' : region.vehicles >= 40 ? 'medium-low' : 'low']">{{
region.vehicles }}</text>
</view>
<view class="metric-box">
<text class="metric-label">营业额</text>
<text :class="['metric-score', region.revenue >= 85 ? 'high' : region.revenue >= 70 ? 'medium-high' : region.revenue >= 55 ? 'medium' : region.revenue >= 40 ? 'medium-low' : 'low']">{{ region.revenue }}</text>
<text
:class="['metric-score', region.revenue >= 85 ? 'high' : region.revenue >= 70 ? 'medium-high' : region.revenue >= 55 ? 'medium' : region.revenue >= 40 ? 'medium-low' : 'low']">{{
region.revenue }}</text>
</view>
<view class="metric-box">
<text class="metric-label">利润率</text>
<text :class="['metric-score', region.profit >= 85 ? 'high' : region.profit >= 70 ? 'medium-high' : region.profit >= 55 ? 'medium' : region.profit >= 40 ? 'medium-low' : 'low']">{{ region.profit }}</text>
<text
:class="['metric-score', region.profit >= 85 ? 'high' : region.profit >= 70 ? 'medium-high' : region.profit >= 55 ? 'medium' : region.profit >= 40 ? 'medium-low' : 'low']">{{
region.profit }}</text>
</view>
<view class="metric-box">
<text class="metric-label">增长率</text>
<text :class="['metric-score', region.growth >= 85 ? 'high' : region.growth >= 70 ? 'medium-high' : region.growth >= 55 ? 'medium' : region.growth >= 40 ? 'medium-low' : 'low']">{{ region.growth }}</text>
<text
:class="['metric-score', region.growth >= 85 ? 'high' : region.growth >= 70 ? 'medium-high' : region.growth >= 55 ? 'medium' : region.growth >= 40 ? 'medium-low' : 'low']">{{
region.growth }}</text>
</view>
</view>
</view>
@ -178,14 +167,8 @@
</view>
<view class="chart-content">
<view class="stacked-bar-container">
<QiunDataCharts
type="column"
:opts="typeAnalysisChartOpts"
:chartData="typeAnalysisChartData"
:canvas2d="true"
:inScrollView="true"
canvasId="typeAnalysisChart"
/>
<QiunDataCharts type="column" :opts="typeAnalysisChartOpts" :chartData="typeAnalysisChartData"
:canvas2d="true" :inScrollView="true" canvasId="typeAnalysisChart" />
</view>
<view class="type-legend">
<view class="legend-item">
@ -220,16 +203,14 @@
<text class="region-name">{{ item.regionName }}</text>
</view>
<view class="area-badges">
<text class="type-badge"
:class="item.serviceType === 'A类' ? 'type-a' :
item.serviceType === 'B类' ? 'type-b' :
item.serviceType === 'C类' ? 'type-c' : ''">
<text class="type-badge" :class="item.serviceType === 'A类' ? 'type-a' :
item.serviceType === 'B类' ? 'type-b' :
item.serviceType === 'C类' ? 'type-c' : ''">
{{ item.serviceType }}
</text>
<text class="status-badge"
:class="item.operationalStatus === '正常运营' ? 'success' :
item.operationalStatus === '升级改造' ? 'warning' :
item.operationalStatus === '暂停营业' ? 'error' : 'info'">
<text class="status-badge" :class="item.operationalStatus === '正常运营' ? 'success' :
item.operationalStatus === '升级改造' ? 'warning' :
item.operationalStatus === '暂停营业' ? 'error' : 'info'">
{{ item.operationalStatus }}
</text>
</view>
@ -246,10 +227,9 @@
</view>
<view class="metric-item">
<text class="metric-label">利润率</text>
<text class="metric-value profit-rate"
:class="item.profitRate >= 15 ? 'high' :
item.profitRate >= 10 ? 'positive' :
item.profitRate >= 5 ? 'neutral' : 'negative'">
<text class="metric-value profit-rate" :class="item.profitRate >= 15 ? 'high' :
item.profitRate >= 10 ? 'positive' :
item.profitRate >= 5 ? 'neutral' : 'negative'">
{{ formatProfit(item.profitRate) }}
</text>
</view>
@ -263,6 +243,7 @@
<script>
import QiunDataCharts from './qiun-data-charts/components/qiun-data-charts/qiun-data-charts.vue'
import request from "@/util/index.js";
export default {
components: {
@ -276,17 +257,8 @@ export default {
regionCount: 16,
serviceAreaCount: 42,
avgRevenue: 3425,
//
distributionData: [
{ name: '昆明', count: 8, percentage: 19, color: '#576EFF' },
{ name: '曲靖', count: 6, percentage: 14, color: '#52C41A' },
{ name: '大理', count: 7, percentage: 17, color: '#FAAD14' },
{ name: '红河', count: 5, percentage: 12, color: '#FF7875' },
{ name: '昭通', count: 4, percentage: 10, color: '#B37FEB' },
{ name: '其他', count: 12, percentage: 28, color: '#666666' }
],
distributionData: [],
//
regionData: [
{
@ -325,7 +297,6 @@ export default {
serviceAreas: 4
}
],
//
heatmapData: [
{
@ -369,7 +340,6 @@ export default {
growth: 75
}
],
//
typeData: [
{
@ -403,7 +373,6 @@ export default {
typeC: 1
}
],
//
detailData: [
{
@ -463,7 +432,7 @@ export default {
series: [
{
name: this.activeAnalysisType === 'compare' ? '本期' :
this.activeAnalysisType === 'yearOverYear' ? '今年' : '本月',
this.activeAnalysisType === 'yearOverYear' ? '今年' : '本月',
data: this.regionData.map(item => item.totalRevenue)
},
...(this.activeAnalysisType !== 'compare' ? [{
@ -515,7 +484,7 @@ export default {
series: [{
data: this.distributionData.map(item => ({
name: item.name,
value: item.count
value: item.value
}))
}]
}
@ -524,11 +493,10 @@ export default {
//
distributionChartOpts() {
return {
color: this.distributionData.map(item => item.color),
padding: [5, 5, 5, 5],
dataLabel: true,
legend: {
show: false
show: true
},
extra: {
pie: {
@ -599,12 +567,46 @@ export default {
}
}
},
onReady() {
//
this.handleGetAllData()
},
methods: {
//
handleGetAllData() {
//
this.handleGetServiceAreaData()
},
//
async handleGetServiceAreaData() {
const req = {
ProvinceCode: "530000",
StatisticsType: 1000,
ShowWholePower: true
}
const data = await request.$apiGet(
"EShangApiMain/BaseInfo/GetServerpartTree",
req
);
let list = data.Result_Data.List
console.log('服务区区域分布数据', list);
let res = []
if (list && list.length > 0) {
list.forEach((item) => {
if (item.children && item.children.length > 0) {
res.push({ name: item.label, value: item.children && item.children.length > 0 ? item.children.length : 0 })
}
})
}
console.log('dadasd', res);
this.distributionData = res
},
switchAnalysisType(type) {
this.activeAnalysisType = type;
},
getAnalysisTypeName() {
const names = {
compare: '对比',
@ -767,17 +769,41 @@ export default {
&.regions {
background: linear-gradient(135deg, #576EFF, #7C8FFF);
&::after { content: '🗺️'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24rpx; }
&::after {
content: '🗺️';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24rpx;
}
}
&.service-areas {
background: linear-gradient(135deg, #52C41A, #73D13D);
&::after { content: '🏪'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24rpx; }
&::after {
content: '🏪';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24rpx;
}
}
&.avg-revenue {
background: linear-gradient(135deg, #FAAD14, #FFC53D);
&::after { content: '📊'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 24rpx; }
&::after {
content: '📊';
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
font-size: 24rpx;
}
}
}
@ -903,9 +929,17 @@ export default {
height: 12rpx;
border-radius: 2rpx;
&.type-a { background: #576EFF; }
&.type-b { background: #52C41A; }
&.type-c { background: #FAAD14; }
&.type-a {
background: #576EFF;
}
&.type-b {
background: #52C41A;
}
&.type-c {
background: #FAAD14;
}
}
.legend-text {

View File

@ -260,7 +260,15 @@ export default {
},
xAxis: {
disableGrid: true,
type: 'category'
type: 'category',
rotateLabel: false, //
fontSize: 14,
fontColor: '#666',
// x
boundaryGap: 'center',
axisLine: {
show: true
}
},
yAxis: {
gridType: 'dash',
@ -308,11 +316,17 @@ export default {
let orderData = [] //
let amountData = [] //
if (list && list.length > 0) {
list.forEach((item, index) => {
list.forEach((item) => {
const day = parseInt(item.StatisticsDate.split('/')[2])
if (day % 5 === 0 || day === 1) {
// x51
if (day === 1 || day % 5 === 0) {
categories.push(day + '日')
} else {
categories.push('') //
}
//
orderData.push(item.TicketCount)
amountData.push(item.SellAmount)
})
@ -322,12 +336,8 @@ export default {
orderData: orderData,
amountData: amountData
}
//
// trendData: {
// categories: ['1', '5', '10', '15', '20', '25', '30'],
// orderData: [1234, 1567, 1890, 2345, 1789, 2123, 2456],
// amountData: [234567, 345678, 456789, 567890, 478901, 589012, 678901]
// }
// 30x6
//
},
formatNumber(num) {

View File

@ -95,16 +95,24 @@ const cfu = {
"option": {},
//下面是自定义format配置因除H5端外的其他端无法通过props传递函数只能通过此属性对应下标的方式来替换
"formatter": {
"ShopTypeNumberRate": function (item, category, index, opts) {
"regionDistributionData": function (item, category, index, opts) {
console.log('', item);
console.log('', category);
console.log('', index);
console.log('', opts);
return `${item.name}${item.data.toLocaleString()}`
},
"timeDistributionChartData": function (item, category, index, opts) {
return `${index}时:${item.name} ${item.data}${item.name === '客单量' ? '单' : '元'}`
},
"ShopTypeNumberRate": function (item, category, index, opts) {
return `${item.name}${item.data}`
},
"tradingTrendData": function (item, category, index, opts) {
return `${category}${item.name} ${item.data}${item.name === '订单量' ? '笔' : '元'}`
return `${index + 1}${item.name} ${item.data}${item.name === '订单量' ? '笔' : '元'}`
},
"ShopTypeDistribution": function (item, category, index, opts) {
return `${item.name}${item.data}`

View File

@ -3,7 +3,7 @@
<scroll-view scroll-y @scroll="handleScroll" class="digital-dashboard" :scroll-into-view="scrollIntoView"
:scroll-with-animation="true">
<!-- Tab切换区域 -->
<view class="tab-container">
<scroll-view scroll-x class="tab-container">
<view class="tab-list">
<view v-for="(tab, index) in tabList" :key="index" :id="`tab-${index}`" class="tab-item"
:class="{ active: activeTab === index }" @click="switchTab(index)">
@ -11,7 +11,7 @@
<view class="tab-indicator" v-if="activeTab === index"></view>
</view>
</view>
</view>
</scroll-view>
<!-- 右侧悬浮导航栏 -->
<view class="side-navigation" v-if="currentNavItems && currentNavItems.length > 0"
@ -183,7 +183,7 @@ export default {
},
data() {
return {
activeTab:2,
activeTab: 0,
tabList: [
{ name: '经营数据分析', key: 'business' },
{ name: '供应链数据分析', key: 'supply' },