This commit is contained in:
liuye
2024-08-09 16:00:01 +08:00
parent cc3c6b4de4
commit f6dc75f553
34 changed files with 466 additions and 400 deletions

View File

@@ -25,7 +25,7 @@
<span class="icon"></span> <span class="icon"></span>
<span>{{ $dict.getLabel('clapEventStatus', item.eventStatus) }}</span> <span>{{ $dict.getLabel('clapEventStatus', item.eventStatus) }}</span>
</div> </div>
<div class="level-type">中风险纠纷</div> <div class="level-type">{{item.createTime}}</div>
</div> </div>
</div> </div>
<AiEmpty v-if="!datas.length"/> <AiEmpty v-if="!datas.length"/>
@@ -240,7 +240,9 @@ uni-page-body {
background: #ff4466; background: #ff4466;
} }
} }
.level-type {
color: #999;
}
.level-type0 { .level-type0 {
color: #52C75B; color: #52C75B;
} }

View File

@@ -19,7 +19,7 @@
</div> </div>
</div> </div>
<div v-if="!isGridMember" class="empty"> <div v-if="!isGridMember" class="empty">
<img src="./components/img/no-admin.png" alt=""> <img src="https://cdn.sinoecare.com/i/2024/07/18/66987e8c5b56b.png" alt="">
<p>没有网格员权限<br/>无法查看工单管理信息哦~</p> <p>没有网格员权限<br/>无法查看工单管理信息哦~</p>
</div> </div>
<u-select v-model="showType" :list="tabList" value-name="value" label-name="name" @confirm="confirm"></u-select> <u-select v-model="showType" :list="tabList" value-name="value" label-name="name" @confirm="confirm"></u-select>

View File

@@ -1,14 +1,6 @@
<template> <template>
<div class="statistics"> <div class="statistics">
<!-- <div class="top-tabs" :style="{'top': `${statusBarHeight+44}px`}"> <div class="select-gird">
<div class="select-gird">
<AiPagePicker type="gird" valueObj nodeKey="id" formType="2" @select="handleSelectGird" class="right-span"
action="/app/apppatrolreportinfo/listByInfo">
<AiMore v-model="selectGird.girdName" icon="arrow-right" placeholder="选择网格"/>
</AiPagePicker>
</div>
</div> -->
<div class="select-gird" :style="{'top': `${statusBarHeight+44}px`}">
<AiPagePicker type="gird" valueObj nodeKey="id" @select="handleSelectGird" class="right-span" <AiPagePicker type="gird" valueObj nodeKey="id" @select="handleSelectGird" class="right-span"
:params="{formType:2, axiosUrl:'/app/apppatrolreportinfo/listByInfo'}"> :params="{formType:2, axiosUrl:'/app/apppatrolreportinfo/listByInfo'}">
<!-- <AiMore v-model="selectGird.girdName" icon="arrow-right" placeholder="选择网格"/> --> <!-- <AiMore v-model="selectGird.girdName" icon="arrow-right" placeholder="选择网格"/> -->
@@ -22,36 +14,31 @@
</AiPagePicker> </AiPagePicker>
</div> </div>
<div class="statstics-content"> <div class="statstics-content">
<div class="info-content"> <div class="el-row">
<div class="title">概况总览</div> <div class="item" v-for="(item, index) in todayList" :key="index" @click="toList(item)">
<div class="el-row"> <div class="label"><span></span>{{ item.label }}</div>
<div class="item" v-for="(item, index) in todayList" :key="index" @click="toList(item)"> <h2>{{ item.value }}</h2>
<h2>{{ item.value }}</h2>
<p>{{ item.label }}</p>
</div>
</div> </div>
</div> </div>
<div class="title">工单办结率</div>
<div class="info-content"> <div class="info-content">
<div class="title">事件办结率</div> <canvas canvas-id="finish" id="finish" class="echart-content e-canvas" v-if="showFinish"/>
<div class="echart-content" id="finish" v-if="showFinish"></div>
<div class="num" v-if="showFinish">{{ finshNum || 0 }}%</div>
<AiEmpty v-else></AiEmpty> <AiEmpty v-else></AiEmpty>
</div> </div>
<div class="title">工单管理趋势图</div>
<div class="info-content"> <div class="info-content">
<div class="title">工单管理趋势图</div>
<AiEmpty v-if="!trendData.length"></AiEmpty> <AiEmpty v-if="!trendData.length"></AiEmpty>
<div class="echart-content" id="trend" v-else></div> <canvas canvas-id="trend" id="trend" class="echart-content" v-else/>
</div> </div>
<div class="title">工单分类
<div class="info-content">
<div class="title">巡查事件分类
<!-- <div class="type-select" :style="statusInfo.name ? '' : 'color:#999;'" @click="show=true">{{statusInfo.name || '请选择'}}<u-icon name="arrow-right"></u-icon></div> --> <!-- <div class="type-select" :style="statusInfo.name ? '' : 'color:#999;'" @click="show=true">{{statusInfo.name || '请选择'}}<u-icon name="arrow-right"></u-icon></div> -->
<u-select v-model="show" :list="$dict.getDict('clapEventStatusHistory')" value-name="dictValue" <u-select v-model="show" :list="$dict.getDict('clapEventStatusHistory')" value-name="dictValue"
label-name="dictName" @confirm="selectStatus"></u-select> label-name="dictName" @confirm="selectStatus"></u-select>
</div> </div>
<div class="info-content">
<AiEmpty v-if="!typeData.length"></AiEmpty> <AiEmpty v-if="!typeData.length"></AiEmpty>
<div class="echart-content" id="type" v-else></div> <canvas canvas-id="type" id="type" class="echart-content" v-else/>
</div> </div>
<div class="pad-b120"></div> <div class="pad-b120"></div>
</div> </div>
@@ -61,9 +48,9 @@
<script> <script>
import {mapState} from 'vuex' import {mapState} from 'vuex'
// import echarts from 'echarts' // import echarts from 'echarts'
import uCharts from "../AppPatrolReport/components/echarts/u-charts.min.js";
var uChartsInstance = {};
export default { export default {
props: {},
data() { data() {
return { return {
todayList: [], todayList: [],
@@ -79,15 +66,14 @@ export default {
trendDataX: [], trendDataX: [],
typeData: [], typeData: [],
statusInfo: {name: '', eventStatus: ''}, statusInfo: {name: '', eventStatus: ''},
statusBarHeight: uni.getSystemInfoSync().statusBarHeight,
} }
}, },
computed: { computed: {
...mapState(['user']), ...mapState(['user']),
}, },
created() { mounted() {
// this.getGirdInfo() this.getGirdInfo()
}, },
methods: { methods: {
getStatistics() { getStatistics() {
@@ -105,45 +91,51 @@ export default {
Object.keys(res.data.finishCountMap).forEach((key) => { Object.keys(res.data.finishCountMap).forEach((key) => {
var info = { var info = {
name: key, 'name': key,
value: res.data.finishCountMap[key] 'value': Number(res.data.finishCountMap[key])
} }
this.finishData.push(info)
if (res.data.finishCountMap[key] > 0) { if (res.data.finishCountMap[key] > 0) {
this.showFinish = true this.showFinish = true
} }
this.finishData.push(info)
}) })
console.log(this.finishData)
if (this.showFinish) { if (this.showFinish) {
var num = res.data.finishCountMap['累计事件办结'] / res.data.finishCountMap['累计事件上报'] var num = res.data.finishCountMap['累计事件办结'] / res.data.finishCountMap['累计事件上报']
this.finshNum = Number(num * 100).toFixed(2) this.finshNum = Number(num * 100).toFixed(2)
} }
res.data.dateCountList.map((item) => { res.data.dateCountList.map((item) => {
this.trendData.push(item.ecount) this.trendData.push(item.ecount)
this.trendDataX.push(item.ymd) this.trendDataX.push(item.ymd)
}) })
res.data.groupList.map((item) => { res.data.groupList.map((item) => {
var info = { var info = {
name: item.groupName, 'name': item.groupName,
value: item.totalNum 'value': item.totalNum
} }
this.typeData.push(info) this.typeData.push(info)
}) })
this.$nextTick(() => { console.log(this.finishData)
if (this.showFinish) { if (this.showFinish) {
this.finishChartInit() this.$nextTick(() => {
} this.finishChartInit('finish')
if (this.trendData.length) { })
this.trendChartInit() }
} if (this.trendData.length) {
if (this.typeData.length) { this.$nextTick(() => {
this.typeChartInit() this.trendChartInit('trend')
} })
}) }
if (this.typeData.length) {
this.$nextTick(() => {
this.typeChartInit('type')
})
}
} }
}) })
}, },
@@ -159,153 +151,196 @@ export default {
} }
}) })
}, },
finishChartInit(id) {
finishChartInit() { // console.log(this.finishData)
this.finishChart = echarts.init(document.getElementById('finish')) var ctx = uni.createCanvasContext(id, this);
var option = { uChartsInstance[id] = new uCharts({
tooltip: { type: "ring",
trigger: 'item' width: 350,
}, height: 250,
context: ctx,
series: [ series: [
{ {
name: '事件办结率', data: this.finishData
type: 'pie',
radius: ['30%', '60%'],
itemStyle: {
normal: {
color: function (colors) {
var colorList = ['#7E94F6', '#85E3D5', '#2891FF'];
return colorList[colors.dataIndex];
}
},
},
data: this.finishData,
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)',
}
}
} }
] ],
}; animation: true,
this.finishChart.setOption(option) rotate: false,
}, rotateLock: false,
background: "#FFFFFF",
color: ['#7E94F6', '#85E3D5', '#2891FF'],
padding: [5,5,5,5],
dataLabel: true,
enableScroll: false,
legend: {
show: true,
position: "bottom",
lineHeight: 25
},
title: {
name: "办结率",
fontSize: 12,
color: "#222"
},
subtitle: {
name: this.finshNum+'%',
fontSize: 20,
color: "#5C8FFA"
},
extra: {
ring: {
ringWidth: 40,
activeOpacity: 0.5,
activeRadius: 10,
offsetAngle: 0,
labelWidth: 5,
border: false,
borderWidth: 2,
borderColor: "#FFFFFF"
}
}
})
trendChartInit() { // const query = uni.createSelectorQuery().in(this);
this.trendChart = echarts.init(document.getElementById('trend')) // query.select('#' + id).fields({ node: true, size: true }).exec(res => {
var option2 = { // console.log(res)
grid: { // if (res[0]) {
left: '5%', // const canvas = res[0].node;
right: '5%', // const ctx = canvas.getContext('2d');
bottom: '3%', // canvas.width = 350
containLabel: true // canvas.height = 250
// uChartsInstance[id] = new uCharts({
// type: "ring",
// width: 350,
// height: 250,
// context: ctx,
// series: [
// {
// data: this.finishData
// }
// ],
// animation: true,
// rotate: false,
// rotateLock: false,
// background: "#FFFFFF",
// color: ['#7E94F6', '#85E3D5', '#2891FF'],
// padding: [5,5,5,5],
// dataLabel: true,
// enableScroll: false,
// legend: {
// show: true,
// position: "bottom",
// lineHeight: 25
// },
// title: {
// name: "办结率",
// fontSize: 12,
// color: "#222"
// },
// subtitle: {
// name: this.finshNum+'%',
// fontSize: 20,
// color: "#5C8FFA"
// },
// extra: {
// ring: {
// ringWidth: 40,
// activeOpacity: 0.5,
// activeRadius: 10,
// offsetAngle: 0,
// labelWidth: 5,
// border: false,
// borderWidth: 2,
// borderColor: "#FFFFFF"
// }
// }
// });
// }else{
// console.error("[uCharts]: 未获取到 context");
// }
// });
},
trendChartInit(id) {
const ctx = uni.createCanvasContext(id, this);
uChartsInstance[id] = new uCharts({
type: "line",
context: ctx,
width: 346,
height: 232,
categories: this.trendDataX,
series: [
{
name: '',
data: this.trendData
}
],
animation: true,
background: "#FFFFFF",
color: ["#2891FF"],
padding: [15, 10, 0, 15],
enableScroll: false,
legend: {
show: false
}, },
xAxis: { xAxis: {
type: 'category', disableGrid: true,
boundaryGap: false,
axisLine: {
lineStyle: {
color: '#E1E5EF', //x轴的颜色
width: 1, //轴线的宽度
},
},
axisLabel: {
show: true,
textStyle: {
color: '#666',
},
},
data: this.trendDataX
}, },
yAxis: { yAxis: {
axisLine: { //y轴 gridType: "dash",
show: false dashLength: 2,
},
axisTick: {
show: false
},
axisLabel: {
show: true,
textStyle: {
color: '#666',
},
},
type: 'value',
}, },
tooltip: { linearType: 'custom',
trigger: 'axis' serie: {
linearColor: '#5B8FF9'
}, },
extra: {
line: {
type: "straight",
width: 2,
activeType: "hollow",
},
}
})
},
typeChartInit(id) {
var ctx = uni.createCanvasContext(id, this);
uChartsInstance[id] = new uCharts({
type: "ring",
width: 350,
height: 250,
context: ctx,
series: [ series: [
{ {
data: this.trendData, data: this.typeData
type: 'line',
areaStyle: {//覆盖区域的渐变色
normal: {
color: {
type: 'linear', x: 0, y: 0, x2: 0, y2: 1,
colorStops: [
{
offset: 0, color: 'rgba(58,132,255, 0.8)' // 0% 处的颜色
},
{
offset: 1, color: 'rgba(58,132,255, 0)' // 100% 处的颜色
}
],
global: false // 缺省为 false
},
}
},
lineStyle: {
normal: {
color: '#2891FF'
}
},
itemStyle: {
normal: {
color: '#2891FF',
}
}
} }
] ],
}; animation: true,
this.trendChart.setOption(option2) rotate: false,
}, rotateLock: false,
background: "#FFFFFF",
typeChartInit() { color: ['#2891FF', '#FF8700', '#83B5F7', '#7E94F6', '#85E3D5', '#2891FF'],
this.typeChart = echarts.init(document.getElementById('type')) padding: [5,5,5,5],
var option3 = { dataLabel: true,
tooltip: { enableScroll: false,
trigger: 'item' legend: {
show: true,
position: "bottom",
lineHeight: 25
}, },
series: [ extra: {
{ ring: {
name: '巡查事件分类', ringWidth: 40,
type: 'pie', activeOpacity: 0.5,
radius: ['0%', '70%'], activeRadius: 10,
itemStyle: { offsetAngle: 0,
normal: { labelWidth: 5,
color: function (colors) { border: false,
var colorList = ['#2891FF', '#FF8700', '#83B5F7', '#7E94F6', '#85E3D5', '#2891FF']; borderWidth: 2,
return colorList[colors.dataIndex]; borderColor: "#FFFFFF"
}
},
},
data: this.typeData,
emphasis: {
itemStyle: {
shadowBlur: 10,
shadowOffsetX: 0,
shadowColor: 'rgba(0, 0, 0, 0.5)',
}
}
} }
] }
}; })
this.typeChart.setOption(option3)
}, },
selectStatus(e) { selectStatus(e) {
this.statusInfo.name = e[0].label this.statusInfo.name = e[0].label
this.statusInfo.eventStatus = e[0].value this.statusInfo.eventStatus = e[0].value
@@ -322,7 +357,7 @@ export default {
return searchType = index return searchType = index
} }
}) })
uni.navigateTo({url: `./StatisticsList?title=${row.label}&searchType=${searchType}&girdId=${this.selectGird.id}`}) uni.navigateTo({url: `./StatisticsList?searchType=${searchType}&girdId=${this.selectGird.id}`})
} }
}, },
} }
@@ -330,12 +365,6 @@ export default {
<style scoped lang="scss"> <style scoped lang="scss">
.statistics { .statistics {
background-color: #F3F7F8;
.statstics-content {
padding: 128px 30px 200px;
}
.select-gird { .select-gird {
width: calc(100% - 64px); width: calc(100% - 64px);
box-sizing: border-box; box-sizing: border-box;
@@ -363,69 +392,106 @@ export default {
} }
} }
} }
.statstics-content {
padding: 128px 30px 200px;
.el-row {
.item {
display: inline-block;
width: calc(50% - 9px);
padding: 24px;
box-sizing: border-box;
background-color: #fff;
border-radius: 16px;
margin: 0 16px 16px 0;
.label {
line-height: 40px;
font-family: PingFangSC-Regular;
font-size: 28px;
color: #666;
margin-bottom: 8px;
span {
display: inline-block;
width: 16px;
height: 16px;
margin-right: 8px;
border-radius: 50%;
}
}
h2 {
line-height: 64px;
font-family: PingFangSC-SNaNpxibold;
font-weight: 600;
font-size: 48px;
color: #333;
padding-left: 24px;
}
}
.item:nth-of-type(1) {
.label {
span {
border: 4px solid #7A8EC5;
}
}
}
.item:nth-of-type(2) {
margin-right: 0;
.label {
span {
border: 4px solid #F6BD15;
}
}
}
.item:nth-of-type(3) {
.label {
span {
border: 4px solid #5C8FFA;
}
}
}
.item:nth-of-type(4) {
margin-right: 0;
.label {
span {
border: 4px solid #60DCAA;
}
}
}
}
}
.title {
font-size: 32px;
font-family: PingFangSC-Regular, PingFang SC;
color: #333;
line-height: 48px;
padding: 24px;
.type-select {
font-size: 26px;
position: absolute;
top: 20px;
right: 32px;
width: calc(100% - 250px);
text-align: right;
line-height: 48px;
}
}
.info-content { .info-content {
width: 100%; width: 100%;
background: #FFF; background: #FFF;
border-radius: 16px; border-radius: 16px;
margin-bottom: 24px; margin-bottom: 32px;
position: relative; position: relative;
padding-bottom: 32px; padding-bottom: 32px;
img {
.title { float: right;
font-size: 32px; width: 40px;
font-family: PingFangSC-Regular, PingFang SC; height: 40px;
font-weight: 400;
color: #333;
line-height: 48px;
padding: 24px 16px 24px 24px;
img {
float: right;
width: 40px;
height: 40px;
}
.type-select {
font-size: 26px;
position: absolute;
top: 20px;
right: 32px;
width: calc(100% - 250px);
text-align: right;
line-height: 48px;
}
}
.el-row {
display: flex;
padding: 32px 0 60px 0;
.item {
flex: 1;
text-align: center;
h2 {
font-size: 64px;
font-family: DINAlternate-Bold, DINAlternate;
font-weight: bold;
color: #3B424A;
line-height: 64px;
margin-bottom: 8px;
}
p {
font-size: 28px;
font-family: PingFangSC-Regular, PingFang SC;
color: #999;
line-height: 40px;
}
}
} }
.echart-content { .echart-content {
width: 100%; width: 100%;
height: 500px; height: 500px;
padding: 0 32px;
box-sizing: border-box;
} }
.num { .num {
@@ -439,7 +505,6 @@ export default {
text-align: center; text-align: center;
} }
} }
.pad-b120 { .pad-b120 {
background-color: #F3F7F8; background-color: #F3F7F8;
padding-bottom: 120px; padding-bottom: 120px;

View File

@@ -1,42 +1,35 @@
<template> <template>
<div class="list-content"> <div class="list">
<u-navbar back-icon-color="#000" title="工单管理" title-color="#000" title-width="300" title-size="32" <u-navbar back-icon-color="#000" :title="title" title-color="#000" title-width="300" title-size="32"
:title-bold="true" :background="backgroundNavbar" :is-fixed="true" height="44"></u-navbar> :title-bold="true" :background="backgroundNavbar" :is-fixed="true" height="44"></u-navbar>
<div class="header-content-bg"> <div class="header-content-bg">
<img src="https://cdn.sinoecare.com/i/2024/07/12/6690a1303d423.png" alt=""> <img src="https://cdn.sinoecare.com/i/2024/07/12/6690a1303d423.png" alt="">
</div> </div>
<template> <div class="list-content">
<AiCard v-for="(item, i) in datas" :key="i" @click.native="goDetail(item, 1)"> <div class="item" v-for="(item, i) in datas" :key="i" @click.native="goDetail(item, 1)">
<template #custom> <div class="card-top">
<div class="card-top"> <div class="titles">{{ item.content }}</div>
<div class="titles">{{ item.content }}</div> <div class="source-type">{{ $dict.getLabel('residentEventSource', item.eventSource) }}</div>
<div class="info">
<div class="types"> <span>事件类型</span>
<span>事件类型</span> <span class="value">{{ item.groupName }}</span>
<span class="types-right">{{ item.groupName }}</span>
</div>
<div class="types">
<span>事件来源</span>
<span class="types-right">{{ $dict.getLabel('residentEventSource', item.eventSource) }}</span>
</div>
<div class="gards">
<span>所属网格</span>
<span class="gards-right">{{ item.girdName }}</span>
</div>
</div> </div>
<div class="info">
<div class="status" :class="item.eventStatus == 0 ? 'status0' : item.eventStatus == 1 ? 'status1' : item.eventStatus == 2 ? 'status2' : 'status3'" <span>所属网格</span>
v-if="item.eventStatus"> <span class="value">{{ item.girdName }}</span>
</div>
</div>
<div class="card-bottom">
<div class="status" v-if="item.eventStatus"
:class="item.eventStatus == 0 ? 'status0' : item.eventStatus == 1 ? 'status1' : item.eventStatus == 2 ? 'status2' : 'status3'">
<span class="icon"></span> <span class="icon"></span>
<span> <span>{{ $dict.getLabel('clapEventStatus', item.eventStatus) }}</span>
{{ $dict.getLabel('clapEventStatus', item.eventStatus) }}
</span>
</div> </div>
</template> <div class="level-type">{{item.createTime}}</div>
</AiCard> </div>
<AiEmpty v-if="!datas.length"></AiEmpty> </div>
</template> <AiEmpty v-if="!datas.length"/>
</div>
<div class="pad-b120" v-if="datas.length"></div> <div class="pad-b120" v-if="datas.length"></div>
</div> </div>
</template> </template>
@@ -45,7 +38,6 @@
import {mapState} from 'vuex' import {mapState} from 'vuex'
export default { export default {
props: {},
customNavigation: true, customNavigation: true,
data() { data() {
return { return {
@@ -54,7 +46,11 @@ export default {
pages: 0, pages: 0,
searchType: '', searchType: '',
title: '', title: '',
girdId: '' girdId: '',
backgroundNavbar: {
background: 'url(https://cdn.sinoecare.com/i/2024/07/12/6690a1309c7d3.png) no-repeat',
backgroundSize: 'cover',
},
} }
}, },
computed: { computed: {
@@ -64,13 +60,13 @@ export default {
} }
}, },
onLoad(options) { onLoad(options) {
console.log(options) console.log(options)
this.searchType = options.searchType this.searchType = options.searchType
this.title = options.title this.title = ['', '', '累计上报', '今日上报', '今日办结', '办理中'][options.searchType]
this.girdId = options.girdId this.girdId = options.girdId
}, },
onShow() { onShow() {
// document.title = this.title
this.current = 1 this.current = 1
this.getList() this.getList()
}, },
@@ -116,144 +112,147 @@ export default {
</script> </script>
<style scoped lang="scss"> <style scoped lang="scss">
.list-content { uni-page-body {
height: 100%;
background: #F4F5FA;
}
.list {
height: 100%; height: 100%;
padding: 0;
width: 100vw; width: 100vw;
.header-content-bg { .header-content-bg {
width: 100%; width: 100%;
position: fixed; position: fixed;
z-index: -1;
img { img {
width: 100%; width: 100%;
height: 592px; height: 592px;
} }
} }
.select-top { .list-content {
background: #fff; margin: 0 0 0 32px;
display: flex;
padding: 24px 0;
.tab-item {
flex: 1;
text-align: center;
line-height: 48px;
font-size: 26px;
font-family: PingFangSC-Regular, PingFang SC;
color: #666;
img {
width: 32px;
height: 32px;
margin-left: 8px;
vertical-align: middle;
}
}
.tab-item:nth-of-type(1) {
border-right: 1px solid #eee;
}
} }
::v-deep .AiTopFixed .content { .item {
padding: 0; width: calc(100% - 32px);
} background: #FFF;
box-shadow: 0 0 4px 0 #00000005;
::v-deep .AiCard { border-radius: 16px;
background: #f3f6f9; margin-bottom: 32px;
padding: 24px 40px 0 32px; .card-top {
width: 100%;
.start { padding: 32px 32px 24px 32px;
background: #fff; box-sizing: border-box;
border-radius: 16px; position: relative;
.titles {
.card-top { width: calc(100% - 132px);
padding: 32px; word-break: break-all;
overflow: hidden;
.titles { text-overflow: ellipsis;
margin-bottom: 34px; display: -webkit-box;
font-size: 32px; -webkit-line-clamp: 2;
font-weight: 500; -webkit-box-orient: vertical;
color: #333333; line-height: 44px;
line-height: 1.4; font-family: PingFangSC-Medium;
word-break: break-all; font-weight: 500;
overflow: hidden; font-size: 32px;
text-overflow: ellipsis; color: #333;
display: -webkit-box; margin-bottom: 24px;
-webkit-line-clamp: 2; }
-webkit-box-orient: vertical; .source-type {
} padding: 0 10px;
line-height: 44px;
.types, background-color: #EBF3FE;
.gards { border-radius: 6px;
margin-top: 8px; font-family: PingFangSC-Regular;
font-size: 26px; font-size: 24px;
color: #3D88F5;
.types-right, position: absolute;
.gards-right { top: 32px;
margin-left: 32px; right: 32px;
color: #333333;
}
}
} }
.status { .info {
padding: 32px; line-height: 40px;
border-top: 1px solid #dddddd; font-family: PingFangSC-Regular;
font-weight: 400;
font-size: 28px;
color: #999;
margin-bottom: 8px;
.icon { .value {
display: inline-block; display: inline-block;
width: 8px; margin-left: 24px;
height: 8px; color: #333;
vertical-align: middle;
margin-right: 8px;
}
}
.status0 {
color: #ff883c;
.icon {
background: #ff883c;
}
}
.status1 {
color: #1aaaff;
.icon {
background: #1aaaff;
}
}
.status2 {
color: #42d784;
.icon {
background: #42d784;
}
}
.status3 {
color: #ff4466;
.icon {
background: #ff4466;
} }
} }
} }
}
// ::v-deep .AiCard:last-child { .card-bottom {
// padding-bottom: 24px; display: flex;
// } justify-content: space-between;
.pad-b120 { padding: 32px;
background-color: #f3f6f9; border-top: 1px solid #ddd;
padding-bottom: 120px; font-family: PingFangSC-Regular;
} font-weight: 400;
.grid-name { font-size: 28px;
display: inline-block; }
font-size: 32px;
color: #333; .status {
.icon {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;
margin-right: 16px;
border-radius: 50%;
}
}
.status0 {
color: #ff883c;
.icon {
background: #ff883c;
}
}
.status1 {
color: #1aaaff;
.icon {
background: #1aaaff;
}
}
.status2 {
color: #42d784;
.icon {
background: #42d784;
}
}
.status3 {
color: #ff4466;
.icon {
background: #ff4466;
}
}
.level-type {
color: #999;
}
.level-type0 {
color: #52C75B;
}
.level-type1 {
color: #FF883C;
}
.level-type2 {
color: #FF3C3C;
}
} }
} }
</style> </style>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 623 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 810 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 815 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 314 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 803 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 373 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 766 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 854 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 88 KiB