滚动条

This commit is contained in:
helloDy
2024-06-04 08:55:45 +08:00
parent 44283a049b
commit 7cb8abd618
6 changed files with 94 additions and 107 deletions

View File

@@ -1,7 +1,7 @@
<!--
* @Author: zhp
* @Date: 2023-11-06 15:15:30
* @LastEditTime: 2024-05-22 15:29:18
* @LastEditTime: 2024-06-03 15:42:47
* @LastEditors: DY
* @Description:
-->
@@ -18,11 +18,11 @@
</el-col>
<el-col :span="8">
<p class="title">时间维度</p>
<p class="text">{{ dataForm.targetType === 0 ? '月' : '年' }}</p>
<p class="text">{{ ['日', '周', '月', '年'][dataForm.targetType] }}</p>
</el-col>
<el-col :span="8">
<p class="title">时间</p>
<p class="text">{{ dataForm.targetType === 1 ? dataForm.targetYear + '年' : dataForm.targetYear + '年' + dataForm.targetMonth + '月'}}</p>
<p class="text">{{ dataForm.targetTime}}</p>
</el-col>
</el-row>
<el-divider></el-divider>
@@ -371,5 +371,8 @@ export default {
color: rgba(102,102,102,0.75);
padding-bottom: 20px;
}
.detailBox {
width: 98%;
}
</style>