|
|
@@ -121,6 +121,7 @@
|
|
|
|
|
|
<!-- 创建评价弹窗 -->
|
|
|
<FormDialog
|
|
|
+ class="review_task_form_dialog"
|
|
|
width="590px"
|
|
|
:visible="formDialogVisible"
|
|
|
:submitLoading="formSubmitLoading"
|
|
|
@@ -676,4 +677,18 @@ onMounted(async()=>{
|
|
|
}
|
|
|
}
|
|
|
|
|
|
+
|
|
|
+.review_task_form_dialog{
|
|
|
+ :deep(.el-dialog){
|
|
|
+ margin:0 !important;
|
|
|
+ top: 50% !important;
|
|
|
+ left: 50% !important; /* 若需水平居中可加上此行 */
|
|
|
+ transform: translate(-50%, -50%); /* 核心:基于自身宽高反向偏移 */
|
|
|
+ }
|
|
|
+ :deep(.el-dialog__body){
|
|
|
+ min-height: 450px !important;
|
|
|
+ max-height: 450px !important;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
</style>
|