|
|
|
@ -8,24 +8,13 @@
|
|
|
|
|
</TitleBox> |
|
|
|
|
<TitleBox title="资质许可状态"> |
|
|
|
|
<section class="list-container"> |
|
|
|
|
<section |
|
|
|
|
class="position-absolute inset-0 overflow-y-auto flex flex-col gap-12px list" |
|
|
|
|
ref="listRef" |
|
|
|
|
> |
|
|
|
|
<section |
|
|
|
|
class="flex justify-between font-size-14px" |
|
|
|
|
v-for="(row, index) in list" |
|
|
|
|
:key="index" |
|
|
|
|
> |
|
|
|
|
<section class="position-absolute inset-0 overflow-y-auto flex flex-col gap-12px list" ref="listRef"> |
|
|
|
|
<section class="flex justify-between font-size-14px" v-for="(row, index) in list" :key="index"> |
|
|
|
|
<span>{{ row.name }}</span> |
|
|
|
|
<section class="color-#56CA00"> |
|
|
|
|
逾期 |
|
|
|
|
<count-to |
|
|
|
|
:start-val="0" |
|
|
|
|
:end-val="row.count" |
|
|
|
|
:duration="1000" |
|
|
|
|
:options="{ separator: ',', decimal: 0 }" |
|
|
|
|
/> |
|
|
|
|
<count-to :start-val="0" :end-val="row.count" :duration="1000" |
|
|
|
|
:options="{ separator: ',', decimal: 0 }" /> |
|
|
|
|
天 |
|
|
|
|
</section> |
|
|
|
|
</section> |
|
|
|
@ -183,7 +172,7 @@ const row1Options = ref({
|
|
|
|
|
}) |
|
|
|
|
const list: any = ref([]) |
|
|
|
|
const color = ['#56CA00', '#FFE700', '#16B1FF'] |
|
|
|
|
const row2Options:any = ref({ |
|
|
|
|
const row2Options: any = ref({ |
|
|
|
|
series: [ |
|
|
|
|
{ |
|
|
|
|
type: 'pie', |
|
|
|
@ -414,17 +403,29 @@ const row3Options = ref({
|
|
|
|
|
const row1Chart = ref() |
|
|
|
|
const row2Chart = ref() |
|
|
|
|
const row3Chart = ref() |
|
|
|
|
|
|
|
|
|
const initChart = () => {} |
|
|
|
|
const listRef = ref() |
|
|
|
|
const initChart = () => { |
|
|
|
|
rightFirst() |
|
|
|
|
// rightSecond() |
|
|
|
|
rightFourth() |
|
|
|
|
rightThird() |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const queryParams: any = ref() |
|
|
|
|
|
|
|
|
|
//右一 |
|
|
|
|
const rightFirst = async () => { |
|
|
|
|
const data: any = await ScreenApi.getRightFirst(queryParams.value) |
|
|
|
|
row1Options.value.xAxis.data = data.map((i) => i.name) |
|
|
|
|
row1Options.value.series[0].data = data.map((i) => i.value) |
|
|
|
|
row1Options.value.series[1].data = data.map((i) => i.taskValue) |
|
|
|
|
// const data: any = await ScreenApi.getRightFirst(queryParams.value) |
|
|
|
|
// row1Options.value.xAxis.data = data.map((i) => i.name) |
|
|
|
|
// row1Options.value.series[0].data = data.map((i) => i.value) |
|
|
|
|
// row1Options.value.series[1].data = data.map((i) => i.taskValue) |
|
|
|
|
row1Options.value.series[0].data = new Array(5).fill(1).map(i=>{ |
|
|
|
|
return Math.floor(Math.random()*100) |
|
|
|
|
}) |
|
|
|
|
row1Options.value.series[1].data = new Array(5).fill(1).map(i=>{ |
|
|
|
|
return Math.floor(Math.random()*100) |
|
|
|
|
}) |
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
//右二 |
|
|
|
@ -453,17 +454,30 @@ const rightSecond = async () => {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
let timer: any = null |
|
|
|
|
// 右三 |
|
|
|
|
const rightThird = async () => { |
|
|
|
|
list.value = await ScreenApi.getRightThird(queryParams.value) |
|
|
|
|
timer = setInterval(() => { |
|
|
|
|
unref(listRef).scrollTop += 1; |
|
|
|
|
if (unref(listRef).scrollTop >= unref(listRef).scrollHeight) { |
|
|
|
|
unref(listRef).scrollTop = 0; |
|
|
|
|
} |
|
|
|
|
}, 200); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// 右四 |
|
|
|
|
const rightFourth = async () => { |
|
|
|
|
const data = await ScreenApi.getRightFourth(queryParams.value) |
|
|
|
|
row3Options.value.xAxis.data = data.map((i) => i.name) |
|
|
|
|
row3Options.value.series[0].data = data.map((i) => i.enforcementGrowthRate) |
|
|
|
|
row3Options.value.series[1].data = data.map((i) => i.taskGrowthRate) |
|
|
|
|
// const data = await ScreenApi.getRightFourth(queryParams.value) |
|
|
|
|
// row3Options.value.xAxis.data = data.map((i) => i.name) |
|
|
|
|
// row3Options.value.series[0].data = data.map((i) => i.enforcementGrowthRate) |
|
|
|
|
// row3Options.value.series[1].data = data.map((i) => i.taskGrowthRate) |
|
|
|
|
row3Options.value.series[0].data = new Array(5).fill(1).map(i=>{ |
|
|
|
|
return Math.floor(Math.random()*100) |
|
|
|
|
}) |
|
|
|
|
row3Options.value.series[1].data = new Array(5).fill(1).map(i=>{ |
|
|
|
|
return Math.floor(Math.random()*100) |
|
|
|
|
}) |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
const handlerResize = () => { |
|
|
|
@ -474,10 +488,6 @@ const handlerResize = () => {
|
|
|
|
|
|
|
|
|
|
onMounted(() => { |
|
|
|
|
initChart() |
|
|
|
|
rightFirst() |
|
|
|
|
rightSecond() |
|
|
|
|
rightFourth() |
|
|
|
|
rightThird() |
|
|
|
|
observer = new ResizeObserver(handlerResize) |
|
|
|
|
observer.observe(rightWrapperRef.value) |
|
|
|
|
handlerResize() |
|
|
|
@ -485,6 +495,7 @@ onMounted(() => {
|
|
|
|
|
|
|
|
|
|
onUnmounted(() => { |
|
|
|
|
observer?.disconnect() |
|
|
|
|
timer && clearInterval(timer) |
|
|
|
|
}) |
|
|
|
|
</script> |
|
|
|
|
|
|
|
|
@ -496,12 +507,14 @@ onUnmounted(() => {
|
|
|
|
|
grid-template-rows: 1.5fr 1fr 1.3fr 1.5fr; |
|
|
|
|
grid-template-columns: 1fr; |
|
|
|
|
grid-gap: 20px; |
|
|
|
|
|
|
|
|
|
.list-container { |
|
|
|
|
position: relative; |
|
|
|
|
width: 100%; |
|
|
|
|
height: 100%; |
|
|
|
|
overflow: hidden; |
|
|
|
|
scroll-behavior: smooth; |
|
|
|
|
|
|
|
|
|
.list { |
|
|
|
|
&::-webkit-scrollbar { |
|
|
|
|
display: none; |
|
|
|
|