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,
},
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,
},
],
};

View File

@ -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: '播放人数',

View File

@ -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>

View File

@ -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"