See999 4 years ago
parent
commit
8331b57608

+ 5 - 3
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

@@ -86,7 +86,7 @@
86 86
         </div>
87 87
         <div class="costBox">
88 88
           <span>医生:</span>
89
-          <el-select style="margin-right:5px;" v-model="doctorValue" placeholder="" @change="changeDoctor">
89
+          <el-select style="margin-right:5px;width:140px;" v-model="doctorValue" placeholder="" @change="changeDoctor">
90 90
             <el-option
91 91
               v-for="(item,index) in doctors"
92 92
               :key="index"
@@ -95,7 +95,7 @@
95 95
             </el-option>
96 96
           </el-select>
97 97
           <span>科室:</span>
98
-          <el-select style="margin-right:5px;" v-model="departmentValue" placeholder="">
98
+          <el-select style="margin-right:5px;width:140px;" v-model="departmentValue" placeholder="">
99 99
             <el-option
100 100
               v-for="(item,index) in department"
101 101
               :key="index"
@@ -103,7 +103,9 @@
103 103
               :value="item.id">
104 104
             </el-option>
105 105
           </el-select>
106
-          <span>总价:</span>
106
+          <span>当前处方总价:</span>
107
+          <span style="color:red;"></span>元
108
+          <span style="margin-left:10px;">总价:</span>
107 109
           <span style="color:red;">{{ getTotal() }}</span>元
108 110
           <span>{{order_status}}</span>
109 111