This commit is contained in:
helloDy
2024-06-07 14:16:20 +08:00
parent 1a3599a42b
commit 39cb9acfec
5 changed files with 30 additions and 23 deletions

View File

@@ -1,12 +1,12 @@
<!--
* @Author: zhp
* @Date: 2023-11-06 15:15:30
* @LastEditTime: 2024-06-05 15:28:07
* @LastEditTime: 2024-06-07 10:28:51
* @LastEditors: DY
* @Description:
-->
<template>
<el-drawer class="drawer" :visible.sync="visible" size="55%" @closed="$emit('destroy')">
<el-drawer class="drawer" :visible.sync="visible" size="60%" @closed="$emit('destroy')">
<small-title slot="title" :no-padding="true">
{{ '碲化镉工厂生产数据详情' }}
</small-title>
@@ -22,7 +22,7 @@
</el-col>
<el-col :span="8">
<p class="title">时间</p>
<p class="text">{{ dataForm.reportDate.length > 0 ? dataForm.reportDate[0] + '年' + dataForm.reportDate[1] + '月' + dataForm.reportDate[2] + '日' : '' }}</p>
<p class="text">{{ dataForm.reportDate?.length > 0 ? dataForm.reportDate[0] + '年' + dataForm.reportDate[1] + '月' + dataForm.reportDate[2] + '日' : '' }}</p>
</el-col>
</el-row>
<el-divider></el-divider>
@@ -350,7 +350,6 @@ export default {
margin: 0;
padding: 32px 32px 24px;
border-bottom: 1px solid #dcdfe6;
margin-bottom: 30px;
}
.detailBox p {
margin: 0;
@@ -374,5 +373,9 @@ export default {
color: rgba(102,102,102,0.75);
padding-bottom: 20px;
}
.detailBox {
width: 98%;
padding-top: 30px;
}
</style>