fix: bug#11108、10690、10754、10736、11118
This commit is contained in:
parent
a1614752f2
commit
f8006832e1
|
@ -80,25 +80,53 @@ const createChart = () => {
|
|||
// minInterval: 1,
|
||||
},
|
||||
series: [
|
||||
// {
|
||||
// name: '播放数量(人次)',
|
||||
// data: sData,
|
||||
// type: 'bar',
|
||||
// barWidth: 16,
|
||||
// itemStyle: {
|
||||
// color: '#2f54eb',
|
||||
// },
|
||||
// },
|
||||
// {
|
||||
// name: '播放数量(人次)',
|
||||
// type: 'line',
|
||||
// symbol: 'circle',
|
||||
// showSymbol: false,
|
||||
// smooth: true,
|
||||
// lineStyle: {
|
||||
// color: '#a5fff9',
|
||||
// },
|
||||
// data: sData,
|
||||
// },
|
||||
{
|
||||
name: '播放数量(人次)',
|
||||
data: sData,
|
||||
type: 'bar',
|
||||
barWidth: 16,
|
||||
itemStyle: {
|
||||
color: '#2f54eb',
|
||||
},
|
||||
},
|
||||
{
|
||||
name: '播放数量(人次)',
|
||||
type: 'line',
|
||||
symbol: 'circle',
|
||||
showSymbol: false,
|
||||
smooth: true,
|
||||
lineStyle: {
|
||||
color: '#a5fff9',
|
||||
symbolSize: 0, // 拐点大小
|
||||
color: '#ADC6FF',
|
||||
areaStyle: {
|
||||
color: {
|
||||
type: 'linear',
|
||||
x: 0,
|
||||
y: 0,
|
||||
x2: 0,
|
||||
y2: 1,
|
||||
colorStops: [
|
||||
{
|
||||
offset: 0,
|
||||
color: '#ADC6FF', // 100% 处的颜色
|
||||
},
|
||||
{
|
||||
offset: 1,
|
||||
color: '#FFFFFF', // 0% 处的颜色
|
||||
},
|
||||
],
|
||||
global: false, // 缺省为 false
|
||||
},
|
||||
},
|
||||
data: sData,
|
||||
},
|
||||
],
|
||||
};
|
||||
|
|
|
@ -135,7 +135,7 @@ const aggPlayingFooter = ref<Footer[]>([]);
|
|||
const aggPlayingTotal = ref(0);
|
||||
const getAggPlayingData = () => {
|
||||
dashboardApi.aggPlaying().then((res) => {
|
||||
aggTotal.value = res.result.playingTotal;
|
||||
aggPlayingTotal.value = res.result.playingTotal;
|
||||
aggPlayingFooter.value = [
|
||||
{
|
||||
title: '播放人数',
|
||||
|
|
|
@ -65,7 +65,7 @@
|
|||
<div>
|
||||
<j-image
|
||||
:preview="false"
|
||||
:src="getImage('/apply/provider3.png')"
|
||||
:src="getImage('/apply/provider4.png')"
|
||||
/>
|
||||
<p>微信网站应用</p>
|
||||
</div>
|
||||
|
@ -74,7 +74,7 @@
|
|||
<div>
|
||||
<j-image
|
||||
:preview="false"
|
||||
:src="getImage('/apply/provider4.png')"
|
||||
:src="getImage('/apply/provider3.png')"
|
||||
/>
|
||||
<p>钉钉企业内部应用</p>
|
||||
</div>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
<LeftTree @change="(id) => (departmentId = id)" />
|
||||
</div>
|
||||
<div class="right">
|
||||
<j-tabs v-model:activeKey="activeKey">
|
||||
<j-tabs v-model:activeKey="activeKey" destroyInactiveTabPane>
|
||||
<j-tab-pane key="product" tab="产品">
|
||||
<Product
|
||||
:parentId="departmentId"
|
||||
|
|
Loading…
Reference in New Issue