提交 c58bfa51 authored 作者: matian's avatar matian

bug fixes

上级 1d05ffae
...@@ -18,8 +18,9 @@ const init = () => { ...@@ -18,8 +18,9 @@ const init = () => {
text: '各系统数据\n' + '比例分析', text: '各系统数据\n' + '比例分析',
x: 'center', x: 'center',
textStyle: { textStyle: {
color: '#dbbb95', color: '#333333',
fontSize: 16 fontSize: 16,
lineHeight: 20
}, },
top: '40%' top: '40%'
}, },
...@@ -27,7 +28,7 @@ const init = () => { ...@@ -27,7 +28,7 @@ const init = () => {
{ {
top: 'bottom', top: 'bottom',
x: 'center', x: 'center',
left: '20%', left: '30%',
orient: 'vertical', orient: 'vertical',
data: [{ name: 'ZWS客户' }, { name: '院校客户' }, { name: '渠道客户' }] //水平排列。(vertical为垂直排列}} data: [{ name: 'ZWS客户' }, { name: '院校客户' }, { name: '渠道客户' }] //水平排列。(vertical为垂直排列}}
}, },
......
...@@ -11,12 +11,22 @@ onMounted(() => { ...@@ -11,12 +11,22 @@ onMounted(() => {
const option = { const option = {
xAxis: { xAxis: {
type: 'category', type: 'category',
data: props.lineList?.map((item: any) => item.date) data: props.lineList?.map((item: any) => item.date),
axisLine: {
lineStyle: {
type: 'dashed' // 坐标轴线线的类型(solid实线类型;dashed虚线类型;dotted点状类型)
}
},
axisTick: {
lineStyle: {
color: '#FFF' // 刻度线的颜色
}
}
}, },
tooltip: { tooltip: {
trigger: 'axis', trigger: 'axis',
axisPointer: { axisPointer: {
type: 'cross', // type: 'cross',
label: { label: {
backgroundColor: '#aa1941' backgroundColor: '#aa1941'
} }
...@@ -62,7 +72,7 @@ onMounted(() => { ...@@ -62,7 +72,7 @@ onMounted(() => {
symbol: 'none', symbol: 'none',
areaStyle: { areaStyle: {
color: '#da7559', color: '#da7559',
opacity: 0.04 opacity: 0.01
} }
}, },
{ {
......
...@@ -41,7 +41,7 @@ const handleView = () => { ...@@ -41,7 +41,7 @@ const handleView = () => {
<div v-permission="'customer-xiaoe-view'"> <div v-permission="'customer-xiaoe-view'">
<el-button <el-button
type="primary" type="primary"
@click="router.push({ path: '/user/xaioe/detail', query: { id: zwsInfo?.other_system_customer?.xiaoe } })" @click="router.push({ path: '/user/xiaoe/detail', query: { id: zwsInfo?.other_system_customer?.xiaoe } })"
v-if="zwsInfo?.other_system_customer?.xiaoe !== null" v-if="zwsInfo?.other_system_customer?.xiaoe !== null"
>小鹅通渠道</el-button >小鹅通渠道</el-button
> >
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论