28169 6 miesięcy temu
rodzic
commit
1b606f84d6

+ 42 - 1
src/xt_pages/stock/drugs/drugStockInOrderAdd.vue Wyświetl plik

358
 
358
 
359
           <el-table-column label="药品追溯码" width="150" align="center">
359
           <el-table-column label="药品追溯码" width="150" align="center">
360
             <template slot-scope="scope">
360
             <template slot-scope="scope">
361
-              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码"></el-input>
361
+               <div  @click="changeDrugCode(scope.row,scope.$index)">
362
+                <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码"></el-input>
363
+              </div>
362
             </template>
364
             </template>
363
           </el-table-column>
365
           </el-table-column>
364
 
366
 
410
         <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
412
         <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
411
       </el-form>
413
       </el-form>
412
     </div>
414
     </div>
415
+
416
+    <el-dialog
417
+      title="药品追溯码"
418
+      :visible.sync="dialogVisible"
419
+      width="40%">
420
+      <span>
421
+        <el-input
422
+          type="textarea"
423
+          placeholder="请输入内容"
424
+          v-model="textarea"
425
+          :rows="10"
426
+        >
427
+        </el-input>
428
+      </span>
429
+      <span slot="footer" class="dialog-footer">
430
+        <el-button @click="dialogVisible = false">取 消</el-button>
431
+        <el-button type="primary" @click="saveTextArea()">确 定</el-button>
432
+      </span>
433
+    </el-dialog>
413
   </div>
434
   </div>
414
 </template>
435
 </template>
415
 
436
 
545
       warehousing_id:0,
566
       warehousing_id:0,
546
       showCheck:false,
567
       showCheck:false,
547
       showReturnCheck:false,
568
       showReturnCheck:false,
569
+      dialogVisible:false,
570
+      currentRow:{},
571
+      currentIndex:0,
572
+      textarea:""
548
     };
573
     };
549
   },
574
   },
550
   methods: {
575
   methods: {
576
+    changeDrugCode(row,index){
577
+      this.textarea=""
578
+      this.textarea = row.drug_code
579
+      this.currentRow = row
580
+      this.currentIndex =index
581
+      this.dialogVisible = true
582
+    },
583
+    saveTextArea(){
584
+
585
+      for(let i=0;i<this.recordInfo.recordData.length;i++){
586
+         if(this.currentIndex == i){
587
+           this.recordInfo.recordData[i].drug_code = this.textarea 
588
+         }
589
+      }
590
+      this.dialogVisible = false
591
+    },
551
     handleSave: function () {
592
     handleSave: function () {
552
       if (this.recordInfo.recordData.length <= 0) {
593
       if (this.recordInfo.recordData.length <= 0) {
553
         this.$message.error("请添加入库信息");
594
         this.$message.error("请添加入库信息");

+ 43 - 1
src/xt_pages/stock/drugs/drugStockInOrderEdit.vue Wyświetl plik

341
 
341
 
342
           <el-table-column label="药品追溯码" width="150" align="center">
342
           <el-table-column label="药品追溯码" width="150" align="center">
343
             <template slot-scope="scope">
343
             <template slot-scope="scope">
344
-              <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码" :disabled="disabled"></el-input>
344
+              <!-- <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码" :disabled="disabled"></el-input> -->
345
+              <div  @click="changeDrugCode(scope.row,scope.$index)">
346
+                <el-input v-model="scope.row.drug_code"  placeholder="请输入药品追溯码" :disabled="disabled"></el-input>
347
+              </div>
345
             </template>
348
             </template>
346
           </el-table-column>
349
           </el-table-column>
347
 
350
 
395
         <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
398
         <div style="margin-top: 20px;">合计金额: {{getTotalPirce() }} </div>
396
       </el-form>
399
       </el-form>
397
     </div>
400
     </div>
401
+
402
+    <el-dialog
403
+      title="药品追溯码"
404
+      :visible.sync="dialogVisible"
405
+      width="40%">
406
+      <span>
407
+        <el-input
408
+          type="textarea"
409
+          placeholder="请输入内容"
410
+          v-model="textarea"
411
+          :rows="10"
412
+        >
413
+        </el-input>
414
+      </span>
415
+      <span slot="footer" class="dialog-footer">
416
+        <el-button @click="dialogVisible = false">取 消</el-button>
417
+        <el-button type="primary" @click="saveTextArea()">确 定</el-button>
418
+      </span>
419
+    </el-dialog>
398
   </div>
420
   </div>
399
 </template>
421
 </template>
400
 
422
 
503
       list:[],
525
       list:[],
504
       is_check:0,
526
       is_check:0,
505
       drug_waresing_id:0,
527
       drug_waresing_id:0,
528
+      dialogVisible:false,
529
+      currentRow:{},
530
+      currentIndex:0,
531
+      textarea:""
506
     };
532
     };
507
   },
533
   },
508
   methods: {
534
   methods: {
535
+    changeDrugCode(row,index){
536
+      this.textarea=""
537
+      this.textarea = row.drug_code
538
+      this.currentRow = row
539
+      this.currentIndex =index
540
+      this.dialogVisible = true
541
+    },
542
+    saveTextArea(){
543
+
544
+      for(let i=0;i<this.recordInfo.recordData.length;i++){
545
+         if(this.currentIndex == i){
546
+           this.recordInfo.recordData[i].drug_code = this.textarea 
547
+         }
548
+      }
549
+      this.dialogVisible = false
550
+    },
509
     comfirm: function(val) {
551
     comfirm: function(val) {
510
       this.$refs.dialog.hide();
552
       this.$refs.dialog.hide();
511
 
553
 

+ 1 - 1
src/xt_pages/user/components/PatientDetail.vue Wyświetl plik

212
               </el-form-item>
212
               </el-form-item>
213
             </el-col>
213
             </el-col>
214
             <el-col :span="8">
214
             <el-col :span="8">
215
-              <el-form-item label="家属电话: " prop="homeTelephone">
215
+              <el-form-item label="家属电话: ">
216
                 <el-input
216
                 <el-input
217
                   v-model="form.homeTelephone"
217
                   v-model="form.homeTelephone"
218
                   maxlength="20"
218
                   maxlength="20"

+ 1 - 1
src/xt_pages/user/components/PatientForm.vue Wyświetl plik

261
                 </el-form-item>
261
                 </el-form-item>
262
               </el-col>
262
               </el-col>
263
               <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
263
               <el-col :span="8" :style="isEdit ? 'width:360px' : ''">
264
-                <el-form-item label="家属电话 : " prop="homeTelephone">
264
+                <el-form-item label="家属电话 : ">
265
                   <el-input
265
                   <el-input
266
                     v-model="form.homeTelephone"
266
                     v-model="form.homeTelephone"
267
                     maxlength="20"
267
                     maxlength="20"