diff --git a/src/layout/Layout.vue b/src/layout/Layout.vue
index 038ac6b..db816d9 100644
--- a/src/layout/Layout.vue
+++ b/src/layout/Layout.vue
@@ -53,11 +53,7 @@ export default defineComponent({
onClick={handleClickOutside}
>
) : undefined}
-
{renderLayout()}
-
-
-
)
}
diff --git a/src/views/Login/components/QrCodeForm.vue b/src/views/Login/components/QrCodeForm.vue
index 4d04794..267817e 100644
--- a/src/views/Login/components/QrCodeForm.vue
+++ b/src/views/Login/components/QrCodeForm.vue
@@ -31,20 +31,14 @@
\ No newline at end of file
diff --git a/src/views/oparetion/emty.vue b/src/views/oparetion/emty.vue
index 221223b..8236984 100644
--- a/src/views/oparetion/emty.vue
+++ b/src/views/oparetion/emty.vue
@@ -1,4 +1,8 @@
-
+
diff --git a/src/views/screen/compenonts/leftwrapper.vue b/src/views/screen/compenonts/leftwrapper.vue
index c5f39f8..b82f531 100644
--- a/src/views/screen/compenonts/leftwrapper.vue
+++ b/src/views/screen/compenonts/leftwrapper.vue
@@ -6,7 +6,7 @@
-
+
@@ -31,7 +31,7 @@ const row1Options = ref({
xAxis: {
type: 'value',
max: (v) => {
- return Math.floor(v.max + (v.max % 10))
+ return Math.floor(v.max * 1.1 + 1)
},
axisTick: {
show: false
@@ -77,7 +77,7 @@ const row1Options = ref({
}
},
splitLine: {
- show: true,
+ show: false,
lineStyle: {
color: 'rgba(255,255,255,0.2)'
}
@@ -85,11 +85,20 @@ const row1Options = ref({
},
tooltip: {
show: true,
- trigger: 'item',
+ trigger: 'axis',
backgroundColor: 'rgba(29,183,57,0.91)',
borderColor: 'transparent',
- formatter: (v) => {
- return `${v.data[2].name}
任务数:${v.data[0]}
企业数:${v.data[1]}`
+ formatter: (v: any) => {
+ return v.map((i: any) => {
+ return `${i.data[2].name}: 任务数:${i.data[0]} 企业数:${i.data[1]}`
+ }).join('
')
+ },
+ axisPointer: {
+ type: 'shadow',
+ axis: 'x',
+ label: {
+ backgroundColor: 'rgba(29,183,57,0.91)'
+ }
},
textStyle: {
color: '#fff'
@@ -199,7 +208,7 @@ const row3Options: any = ref({
show: false
},
axisLabel: {
- show:false,
+ show: false,
color: '#fff',
fontSize: 12
}
diff --git a/src/views/screen/compenonts/rightwrapper.vue b/src/views/screen/compenonts/rightwrapper.vue
index 21ccf69..5a2fff4 100644
--- a/src/views/screen/compenonts/rightwrapper.vue
+++ b/src/views/screen/compenonts/rightwrapper.vue
@@ -191,8 +191,9 @@ const row2Options: any = ref({
},
labelLine: {
show: true,
- length: 2
+ length: 5
},
+ roseType: true,
data: []
},
{
@@ -203,6 +204,9 @@ const row2Options: any = ref({
label: {
show: false
},
+ emphasis: {
+ disabled:true
+ },
labelLine: {
show: false
},
@@ -457,7 +461,6 @@ let timer: any = null
// 右二
const rightThird = async () => {
list.value = await ScreenApi.getRightThird(queryParams.value)
- console.log(list.value)
timer = setInterval(() => {
unref(listRef).scrollTop += 1
if (unref(listRef).scrollTop >= unref(listRef).scrollHeight) {