Browse Source

提交代码

陈少旭 1 year ago
parent
commit
3932260006

+ 1 - 0
src/xt_pages/outpatientDoctorStation/components/deskPrescription.vue View File

@@ -737,6 +737,7 @@ export default {
737 737
   },
738 738
   methods: {
739 739
     getzuobiao(){
740
+
740 741
       if(this.org_id == 10206){
741 742
         var that = this
742 743
         axios.get("http://127.0.0.1:9532" + '/nmg/coordinate/querystockgood', {

+ 7 - 0
src/xt_pages/outpatientDoctorStation/components/prescriptionTable.vue View File

@@ -120,6 +120,13 @@
120 120
             </template>
121 121
           </el-table-column>
122 122
 
123
+
124
+          <el-table-column align="center" prop="drug_way_count" width="100" label="给药途径次数" >
125
+            <template slot-scope="scope">
126
+              <el-input :disabled="prescription.is_medicine_status"  v-model="scope.row.drug_way_count" :title="scope.row.drug_way_count" placeholder=""></el-input>
127
+            </template>
128
+          </el-table-column>
129
+
123 130
             <el-table-column align="center" prop="remark" width="50" label="备注">
124 131
                 <template slot-scope="scope">
125 132
                     <el-input :disabled="prescription.is_medicine_status"  v-model="scope.row.remark" :title="scope.row.remark" placeholder=""></el-input>

File diff suppressed because it is too large
+ 598 - 542
src/xt_pages/outpatientDoctorStation/doctorDesk.vue