See999 4 年前
父节点
当前提交
44b1e3a8b5

+ 4 - 0
src/xt_pages/medicalScheduling/index.vue 查看文件

1991
         white-space: pre-line;/*保留换行符*/
1991
         white-space: pre-line;/*保留换行符*/
1992
     }
1992
     }
1993
 }
1993
 }
1994
+.el-dropdown-menu{
1995
+    max-height:96%;
1996
+    overflow-y: auto;
1997
+}
1994
 
1998
 
1995
 </style>
1999
 </style>

+ 7 - 11
src/xt_pages/outpatientDoctorStation/components/newPrescriptionTable.vue 查看文件

61
       <el-table-column align="center" prop="project_name" label="名称">
61
       <el-table-column align="center" prop="project_name" label="名称">
62
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
62
         <template slot-scope="scope">{{ scope.row.project_name }}</template>
63
       </el-table-column>
63
       </el-table-column>
64
-      <el-table-column align="center" prop="statistical_classification" width="50" label="组">
64
+      <el-table-column align="center" prop="statistical_classification" width="100" label="组">
65
         <template slot-scope="scope">
65
         <template slot-scope="scope">
66
-          {{getGroup(scope.row.statistical_classification)}}
66
+          <div>{{getGroup(scope.row.statistical_classification)}}</div>
67
         </template>
67
         </template>
68
       </el-table-column>
68
       </el-table-column>
69
-      <el-table-column align="center" prop="single_dose" width="130" :label="'单次\n用量'">
69
+      <el-table-column align="center" prop="single_dose" width="100" label="单次用量">
70
         <template slot-scope="scope">
70
         <template slot-scope="scope">
71
           <!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
71
           <!--<el-input v-model="scope.row.single_dose" placeholder="" readonly></el-input>-->
72
           <div> {{scope.row.single_dose}}</div>
72
           <div> {{scope.row.single_dose}}</div>
80
 
80
 
81
         </template>
81
         </template>
82
       </el-table-column>
82
       </el-table-column>
83
-      <el-table-column align="center" prop="execution_frequency" width="130" label="频率">
83
+      <el-table-column align="center" prop="execution_frequency" width="100" label="频率">
84
         <template slot-scope="scope">
84
         <template slot-scope="scope">
85
           <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
85
           <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
86
           <div> {{scope.row.execution_frequency}}</div>
86
           <div> {{scope.row.execution_frequency}}</div>
87
 
87
 
88
         </template>
88
         </template>
89
       </el-table-column>
89
       </el-table-column>
90
-      <el-table-column align="center" prop="number_days" width="130" label="天数">
90
+      <el-table-column align="center" prop="number_days" width="100" label="天数">
91
         <template slot-scope="scope">
91
         <template slot-scope="scope">
92
           <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
92
           <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
93
           <div> {{scope.row.number_days}}</div>
93
           <div> {{scope.row.number_days}}</div>
94
 
94
 
95
         </template>
95
         </template>
96
       </el-table-column>
96
       </el-table-column>
97
-      <el-table-column align="center" prop="total" width="100" label="总量">
97
+      <el-table-column align="center" prop="total" width="80" label="总量">
98
         <template slot-scope="scope">
98
         <template slot-scope="scope">
99
-          <div style="display:flex;">
100
-            <!--<el-input v-model="scope.row.total" style="width:50" placeholder="" readonly></el-input>-->
101
             <div> {{scope.row.total}}</div>
99
             <div> {{scope.row.total}}</div>
102
-
103
-          </div>
104
         </template>
100
         </template>
105
       </el-table-column>
101
       </el-table-column>
106
-      <el-table-column align="center" prop="name" width="50" label="单价">
102
+      <el-table-column align="center" prop="name" width="70" label="单价">
107
         <template slot-scope="scope">
103
         <template slot-scope="scope">
108
           <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
104
           <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
109
           <div> {{scope.row.price}}</div>
105
           <div> {{scope.row.price}}</div>