fix: bug#11108、10690、10754、10736、11118

This commit is contained in:
JiangQiming 2023-03-28 16:07:50 +08:00
parent a1614752f2
commit f8006832e1
4 changed files with 45 additions and 17 deletions

View File

@ -80,25 +80,53 @@ const createChart = () => {
// minInterval: 1, // minInterval: 1,
}, },
series: [ 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: '播放数量(人次)', name: '播放数量(人次)',
data: sData, data: sData,
type: 'bar',
barWidth: 16,
itemStyle: {
color: '#2f54eb',
},
},
{
name: '播放数量(人次)',
type: 'line', type: 'line',
symbol: 'circle',
showSymbol: false,
smooth: true, smooth: true,
lineStyle: { symbolSize: 0, //
color: '#a5fff9', 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,
}, },
], ],
}; };

View File

@ -135,7 +135,7 @@ const aggPlayingFooter = ref<Footer[]>([]);
const aggPlayingTotal = ref(0); const aggPlayingTotal = ref(0);
const getAggPlayingData = () => { const getAggPlayingData = () => {
dashboardApi.aggPlaying().then((res) => { dashboardApi.aggPlaying().then((res) => {
aggTotal.value = res.result.playingTotal; aggPlayingTotal.value = res.result.playingTotal;
aggPlayingFooter.value = [ aggPlayingFooter.value = [
{ {
title: '播放人数', title: '播放人数',

View File

@ -65,7 +65,7 @@
<div> <div>
<j-image <j-image
:preview="false" :preview="false"
:src="getImage('/apply/provider3.png')" :src="getImage('/apply/provider4.png')"
/> />
<p>微信网站应用</p> <p>微信网站应用</p>
</div> </div>
@ -74,7 +74,7 @@
<div> <div>
<j-image <j-image
:preview="false" :preview="false"
:src="getImage('/apply/provider4.png')" :src="getImage('/apply/provider3.png')"
/> />
<p>钉钉企业内部应用</p> <p>钉钉企业内部应用</p>
</div> </div>

View File

@ -5,7 +5,7 @@
<LeftTree @change="(id) => (departmentId = id)" /> <LeftTree @change="(id) => (departmentId = id)" />
</div> </div>
<div class="right"> <div class="right">
<j-tabs v-model:activeKey="activeKey"> <j-tabs v-model:activeKey="activeKey" destroyInactiveTabPane>
<j-tab-pane key="product" tab="产品"> <j-tab-pane key="product" tab="产品">
<Product <Product
:parentId="departmentId" :parentId="departmentId"