类型:开发
描述:
This commit is contained in:
@@ -54,19 +54,19 @@
|
|||||||
{
|
{
|
||||||
text: props.title,
|
text: props.title,
|
||||||
x: 'center',
|
x: 'center',
|
||||||
top: '34%',
|
top: '20%',
|
||||||
textStyle: {
|
textStyle: {
|
||||||
color: '#00D0FF',
|
color: '#00D0FF',
|
||||||
fontSize: fitChartSize(20)
|
fontSize: fitChartSize(18)
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: props.subTitle,
|
text: props.subTitle,
|
||||||
x: 'center',
|
x: 'center',
|
||||||
top: '56%',
|
top: '50%',
|
||||||
textStyle: {
|
textStyle: {
|
||||||
color: '#fff',
|
color: '#fff',
|
||||||
fontSize: fitChartSize(14)
|
fontSize: fitChartSize(16)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -75,7 +75,7 @@
|
|||||||
{
|
{
|
||||||
type: 'gauge',
|
type: 'gauge',
|
||||||
radius: '100%',
|
radius: '100%',
|
||||||
center: ['50%', '60%'],
|
center: ['50%', '50%'],
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
startAngle: 180,
|
startAngle: 180,
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
{
|
{
|
||||||
type: 'gauge',
|
type: 'gauge',
|
||||||
radius: '90%',
|
radius: '90%',
|
||||||
center: ['50%', '60%'],
|
center: ['50%', '50%'],
|
||||||
min: 0,
|
min: 0,
|
||||||
max: 100,
|
max: 100,
|
||||||
startAngle: 180,
|
startAngle: 180,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<div class="box mr-8">
|
<div class="box mr-8">
|
||||||
<Title1 title="排队信息" />
|
<Title1 title="排队信息" />
|
||||||
<div
|
<div
|
||||||
style="cursor: pointer;"
|
style="cursor: pointer;"
|
||||||
class="count-box flex justify-between">
|
class="count-box flex justify-between">
|
||||||
<count-item
|
<count-item
|
||||||
label="今日入园人数"
|
label="今日入园人数"
|
||||||
@@ -16,14 +16,14 @@
|
|||||||
label="今日出园人数"
|
label="今日出园人数"
|
||||||
:count="scenicStore.scenicQueueData.header.jrjdcy"
|
:count="scenicStore.scenicQueueData.header.jrjdcy"
|
||||||
suffix="人"
|
suffix="人"
|
||||||
@click="handleLineUp()"
|
@click="handleLineUp()"
|
||||||
/>
|
/>
|
||||||
<count-item
|
<count-item
|
||||||
label="排队人数"
|
label="排队人数"
|
||||||
:count="scenicStore.scenicQueueData.header.pdrs"
|
:count="scenicStore.scenicQueueData.header.pdrs"
|
||||||
:color="scenicStore.scenicQueueData.header.pdrs_type == 0 ? '' : '#E21B1B'"
|
:color="scenicStore.scenicQueueData.header.pdrs_type == 0 ? '' : '#E21B1B'"
|
||||||
suffix="人"
|
suffix="人"
|
||||||
@click="handleLineUp()"
|
@click="handleLineUp()"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<div class="border">
|
<div class="border">
|
||||||
@@ -73,7 +73,7 @@
|
|||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-1 mr-8">
|
<div class="box-1 mr-8" style="padding: 0;">
|
||||||
<Title1 title="停车信息" />
|
<Title1 title="停车信息" />
|
||||||
<div class="flex">
|
<div class="flex">
|
||||||
<div class="height70 flex flex-1">
|
<div class="height70 flex flex-1">
|
||||||
@@ -326,14 +326,14 @@
|
|||||||
<div>{{ item.enter }}</div>
|
<div>{{ item.enter }}</div>
|
||||||
<div>{{ item.exit }}</div>
|
<div>{{ item.exit }}</div>
|
||||||
<div>{{ item.holdValue }}</div>
|
<div>{{ item.holdValue }}</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="item" v-if="hIndex==1" v-for="(item, index) in tjArr.single" :key="index">
|
<div class="item" v-if="hIndex==1" v-for="(item, index) in tjArr.single" :key="index">
|
||||||
<div>{{ item.title }}</div>
|
<div>{{ item.title }}</div>
|
||||||
<div>{{ item.enter }}</div>
|
<div>{{ item.enter }}</div>
|
||||||
<div>{{ item.exit }}</div>
|
<div>{{ item.exit }}</div>
|
||||||
<div>{{ item.holdValue }}</div>
|
<div>{{ item.holdValue }}</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -381,7 +381,7 @@
|
|||||||
//景区排队
|
//景区排队
|
||||||
let allShow = ref(false)
|
let allShow = ref(false)
|
||||||
let events = ref({})
|
let events = ref({})
|
||||||
|
|
||||||
const handleLineUp = (item)=>{
|
const handleLineUp = (item)=>{
|
||||||
allShow.value = true
|
allShow.value = true
|
||||||
events.value = item
|
events.value = item
|
||||||
|
|||||||
Reference in New Issue
Block a user