|
@@ -5,7 +5,7 @@
|
|
class="qualityModule"
|
|
class="qualityModule"
|
|
>
|
|
>
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
- <div class="itemBox onlineProblem" style="height: 403px">
|
|
|
|
|
|
+ <div class="itemBox onlineProblem" style="height: 480px">
|
|
<div class="titleLevel3 mb10">线上问题</div>
|
|
<div class="titleLevel3 mb10">线上问题</div>
|
|
<el-row :gutter="10">
|
|
<el-row :gutter="10">
|
|
<el-col
|
|
<el-col
|
|
@@ -41,7 +41,7 @@
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
- <div class="itemBox quality" style="height: 403px">
|
|
|
|
|
|
+ <div class="itemBox quality" style="height: 480px">
|
|
<div class="titleLevel3 mb10">线下质量</div>
|
|
<div class="titleLevel3 mb10">线下质量</div>
|
|
<el-row :gutter="10">
|
|
<el-row :gutter="10">
|
|
<el-col v-for="(item, index) in mainData.offlineProblemList" :key="index" :span="12" class="mb10">
|
|
<el-col v-for="(item, index) in mainData.offlineProblemList" :key="index" :span="12" class="mb10">
|
|
@@ -72,7 +72,7 @@
|
|
</div>
|
|
</div>
|
|
</el-col>
|
|
</el-col>
|
|
<el-col :span="8">
|
|
<el-col :span="8">
|
|
- <div class="itemBox progress" style="min-height: 281px">
|
|
|
|
|
|
+ <div class="itemBox progress" style="min-height: 338px">
|
|
<div class="titleLevel3 mb10">上线过程</div>
|
|
<div class="titleLevel3 mb10">上线过程</div>
|
|
<el-row v-if="mainData.onlineProcessList" :gutter="10">
|
|
<el-row v-if="mainData.onlineProcessList" :gutter="10">
|
|
<el-col v-for="(item, index) in mainData.onlineProcessList.list" :key="index" :span="12" class="mb10">
|
|
<el-col v-for="(item, index) in mainData.onlineProcessList.list" :key="index" :span="12" class="mb10">
|
|
@@ -80,7 +80,12 @@
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
<el-divider class="divider" />
|
|
<el-divider class="divider" />
|
|
- <el-row v-if="mainData.onlineProcessList" :gutter="10" class="rollBack">
|
|
|
|
|
|
+ <el-row
|
|
|
|
+ v-if="mainData.onlineProcessList"
|
|
|
|
+ :gutter="10"
|
|
|
|
+ class="rollBack"
|
|
|
|
+ style="margin-top: 40px"
|
|
|
|
+ >
|
|
<el-col :span="12" class="mb10">
|
|
<el-col :span="12" class="mb10">
|
|
<span class="rollBackItem">
|
|
<span class="rollBackItem">
|
|
<span class="bigCircle" style="background: #7ED321" />
|
|
<span class="bigCircle" style="background: #7ED321" />
|
|
@@ -111,7 +116,7 @@
|
|
</el-col>
|
|
</el-col>
|
|
</el-row>
|
|
</el-row>
|
|
</div>
|
|
</div>
|
|
- <div class="itemBox progress" style="margin-top: 20px; height: 102px;">
|
|
|
|
|
|
+ <div class="itemBox progress" style="margin-top: 20px; height: 122px;">
|
|
<div class="titleLevel3 mb10">移动端发布质量</div>
|
|
<div class="titleLevel3 mb10">移动端发布质量</div>
|
|
<el-row :gutter="10">
|
|
<el-row :gutter="10">
|
|
<el-col v-for="(item, index) in mainData.mobilePublishQualityList" :key="index" :span="12" class="mb10">
|
|
<el-col v-for="(item, index) in mainData.mobilePublishQualityList" :key="index" :span="12" class="mb10">
|
|
@@ -239,7 +244,7 @@ export default {
|
|
// 线上问题图
|
|
// 线上问题图
|
|
if (onlineProblemChart) {
|
|
if (onlineProblemChart) {
|
|
const { xaxis, yaxis } = onlineProblemChart
|
|
const { xaxis, yaxis } = onlineProblemChart
|
|
- this.onlineProblemChartOption = getOption(xaxis, yaxis[0].data, 'bar', { endValue: 10 })
|
|
|
|
|
|
+ this.onlineProblemChartOption = getOption(xaxis, yaxis[0].data, 'bar', { endValue: 6 })
|
|
}
|
|
}
|
|
// 线下质量表
|
|
// 线下质量表
|
|
if (offlineProblemList) {
|
|
if (offlineProblemList) {
|
|
@@ -248,7 +253,7 @@ export default {
|
|
// 线下质量图
|
|
// 线下质量图
|
|
if (offlineProblemChart) {
|
|
if (offlineProblemChart) {
|
|
const { xaxis, yaxis } = offlineProblemChart
|
|
const { xaxis, yaxis } = offlineProblemChart
|
|
- this.offlineProblemChartOption = getOption(xaxis, yaxis[0].data, 'bar', { endValue: 10 })
|
|
|
|
|
|
+ this.offlineProblemChartOption = getOption(xaxis, yaxis[0].data, 'bar', { endValue: 6 })
|
|
}
|
|
}
|
|
// 上线过程
|
|
// 上线过程
|
|
if (onlineProcessList) {
|
|
if (onlineProcessList) {
|
|
@@ -454,7 +459,7 @@ export default {
|
|
margin-bottom: 10px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
.chartViewHeight {
|
|
.chartViewHeight {
|
|
- height: 170px;
|
|
|
|
|
|
+ height: 250px;
|
|
// padding-left: 15px;
|
|
// padding-left: 15px;
|
|
}
|
|
}
|
|
}
|
|
}
|