瀏覽代碼

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

陈少旭 10 月之前
父節點
當前提交
9952ffd429
共有 2 個文件被更改,包括 23 次插入4 次删除
  1. 1 1
      src/components/Editor/index.vue
  2. 22 3
      src/xt_pages/user/courseOfDisease.vue

+ 1 - 1
src/components/Editor/index.vue 查看文件

@@ -21,7 +21,7 @@
21 21
       initEditor() {
22 22
         this.ue = UE.getEditor(this.id, {
23 23
           initialFrameWidth: '100%',
24
-          initialFrameHeight: '350',
24
+          initialFrameHeight: '600',
25 25
           topOffset: '110',
26 26
           toolbars: [[
27 27
             'bold', //加粗

+ 22 - 3
src/xt_pages/user/courseOfDisease.vue 查看文件

@@ -678,7 +678,7 @@
678 678
         </div>
679 679
       </div>
680 680
       <!-- </div> -->
681
-      <el-dialog title="新增病程记录" width="70%" top="5vh" :visible.sync="show_dialog">
681
+      <el-dialog title="新增病程记录" class="eldialog" width="70%" top="5vh" :visible.sync="show_dialog">
682 682
         <div>
683 683
           <div class="new_record_form">
684 684
             <div class="cell clearfix">
@@ -725,7 +725,7 @@
725 725
       </el-dialog>
726 726
 
727 727
 
728
-      <el-dialog title="修改病程记录" width="70%" top="5vh" :visible.sync="show_edit_dialog">
728
+      <el-dialog title="修改病程记录" class="eldialog" width="70%" top="5vh" :visible.sync="show_edit_dialog" style="">
729 729
         <div>
730 730
           <div class="new_record_form">
731 731
             <div class="cell clearfix">
@@ -1323,9 +1323,18 @@
1323 1323
     margin-top: 10px;
1324 1324
   }
1325 1325
 
1326
+  }
1327
+  .eldialog{
1328
+    .el-dialog{
1329
+      .el-dialog__body{
1330
+        max-height: calc(100vh - 80px) !important;
1331
+        padding: 0px 20px;
1332
+      }
1333
+    }
1334
+    
1326 1335
   }
1327 1336
 </style>
1328
-<style>
1337
+<style lang="scss">
1329 1338
 .el-table td,
1330 1339
 .el-table th.is-leaf,
1331 1340
 .el-table--border,
@@ -1337,4 +1346,14 @@
1337 1346
 .el-table::before {
1338 1347
   background-color: #d0d3da;
1339 1348
 }
1349
+
1350
+.eldialog{
1351
+    .el-dialog{
1352
+      .el-dialog__body{
1353
+        max-height: calc(100vh - 80px) !important;
1354
+        padding: 0px 20px;
1355
+      }
1356
+    }
1357
+    
1358
+  }
1340 1359
 </style>