Browse Source

提交代码

陈少旭 1 year ago
parent
commit
3932260006

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

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

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

120
             </template>
120
             </template>
121
           </el-table-column>
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
             <el-table-column align="center" prop="remark" width="50" label="备注">
130
             <el-table-column align="center" prop="remark" width="50" label="备注">
124
                 <template slot-scope="scope">
131
                 <template slot-scope="scope">
125
                     <el-input :disabled="prescription.is_medicine_status"  v-model="scope.row.remark" :title="scope.row.remark" placeholder=""></el-input>
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