See999 4 years ago
parent
commit
8331b57608

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

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