|
@@ -84,7 +84,15 @@
|
|
|
<eq-detail ref='qdDialog' :row='row' :major='major' :smsxt='smsxt' :diff='diff' :sign='sign'></eq-detail>
|
|
|
</el-dialog>-->
|
|
|
<!-- 标准表格详情钻取表,使用全屏弹窗 -->
|
|
|
- <el-dialog width='100%' :title='`${type_name}设备清单`' :visible.sync='innerVisible' append-to-body :fullscreen='true'>
|
|
|
+ <!-- 弹窗添加class -->
|
|
|
+ <el-dialog
|
|
|
+ custom-class='stand-dialog'
|
|
|
+ width='100%'
|
|
|
+ :title='`${type_name}设备清单`'
|
|
|
+ :visible.sync='innerVisible'
|
|
|
+ append-to-body
|
|
|
+ :fullscreen='true'
|
|
|
+ >
|
|
|
<eq-detail :key='`eqDetail${key}`' ref='qdDialog' :row='row' :major='major' :smsxt='smsxt' :diff='diff' :sign='sign'></eq-detail>
|
|
|
</el-dialog>
|
|
|
</div>
|
|
@@ -268,21 +276,24 @@ export default {
|
|
|
cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
-// 弹窗头部样式修改
|
|
|
-.el-dialog__header {
|
|
|
- padding: 16px 24px;
|
|
|
- background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
|
|
|
-}
|
|
|
-.el-dialog__headerbtn .el-dialog__close {
|
|
|
- color: #fff;
|
|
|
-}
|
|
|
|
|
|
-.el-dialog__title {
|
|
|
- font-size: 16px;
|
|
|
- padding-right: 6px;
|
|
|
- padding-left: 24px;
|
|
|
- font-weight: bold;
|
|
|
- color: #fff;
|
|
|
- font-weight: normal;
|
|
|
+.stand-dialog {
|
|
|
+ // 弹窗头部样式修改
|
|
|
+ .el-dialog__header {
|
|
|
+ padding: 16px 24px;
|
|
|
+ background: linear-gradient(180deg, rgba(54, 156, 247, 1) 0%, rgba(2, 91, 170, 1) 100%);
|
|
|
+ }
|
|
|
+ .el-dialog__headerbtn .el-dialog__close {
|
|
|
+ color: #fff;
|
|
|
+ }
|
|
|
+
|
|
|
+ .el-dialog__title {
|
|
|
+ font-size: 16px;
|
|
|
+ padding-right: 6px;
|
|
|
+ padding-left: 24px;
|
|
|
+ font-weight: bold;
|
|
|
+ color: #fff;
|
|
|
+ font-weight: normal;
|
|
|
+ }
|
|
|
}
|
|
|
</style>
|