陈少旭 3 weeks ago
parent
commit
253febc16e

+ 11 - 6
src/xt_pages/Pharmacy/drugCode.vue View File

@@ -47,7 +47,7 @@
47 47
       </div>
48 48
     </div>
49 49
     <div style="display: flex;margin-bottom:10px;">
50
-     
50
+
51 51
       <div>上传状态:
52 52
         <el-select size="small" v-model="is_sale" placeholder="请选择" style="width:100px;" @change="changeStock">
53 53
           <el-option
@@ -146,7 +146,7 @@
146 146
 
147 147
       <el-table-column align="center" prop="name" label="结算状态" v-if="is_type == 1">
148 148
         <template slot-scope="scope">
149
-          
149
+
150 150
           <div v-if="scope.row.pre.order_status == 2">已结算</div>
151 151
           <div v-if="scope.row.pre.order_status != 2">未结算</div>
152 152
         </template>
@@ -287,7 +287,8 @@ export default {
287 287
       var that = this;
288 288
       let params = {
289 289
         id: ids,
290
-        admin_user_id: this.$store.getters.xt_user.user.id
290
+        admin_user_id: this.$store.getters.xt_user.user.id,
291
+        is_type:this.is_type,
291 292
       };
292 293
 
293 294
       axios.get('http://127.0.0.1:9532/test/net', {}).then(function (response) {
@@ -346,7 +347,9 @@ export default {
346 347
       var that = this;
347 348
       let params = {
348 349
         id: ids,
349
-        admin_user_id: this.$store.getters.xt_user.user.id
350
+        admin_user_id: this.$store.getters.xt_user.user.id,
351
+        is_type:this.is_type,
352
+
350 353
       };
351 354
       axios.get('http://127.0.0.1:9532/test/net', {}).then(function (response) {
352 355
         if (response.data.state == 0) {
@@ -451,7 +454,7 @@ export default {
451 454
             this.dialogVisibleOne = false
452 455
          })
453 456
       }
454
-     
457
+
455 458
     },
456 459
     getPatientName(id) {
457 460
       var name = ""
@@ -580,7 +583,9 @@ export default {
580 583
       }
581 584
       let params = {
582 585
         id: ids,
583
-        admin_user_id: this.$store.getters.xt_user.user.id
586
+        admin_user_id: this.$store.getters.xt_user.user.id,
587
+        is_type:this.is_type
588
+
584 589
       };
585 590
       axios.get('http://127.0.0.1:9532/test/net', {}).then(function (response) {
586 591
         if (response.data.state == 0) {

+ 5 - 1
src/xt_pages/drugSourceCode/drugQuery.vue View File

@@ -152,10 +152,14 @@
152 152
           </template>
153 153
         </el-table-column>
154 154
       </el-table>
155
-      <el-table  v-if="stock_type == 5"  :data="tableData" border :row-style="{ color: '#303133' }" ref="table"
155
+      <el-table  v-if="stock_type == 5"  :data="tableData"  border :row-style="{ color: '#303133' }" ref="table"
156 156
                  :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
157 157
                  max-height="600"
158 158
                  highlight-current-row>
159
+
160
+        <el-table-column align="center" prop="name" label="就诊ID">
161
+          <template slot-scope="scope">{{scope.row.mdtrt_id}}</template>
162
+        </el-table-column>
159 163
         <el-table-column align="center" prop="name" label="药品名称">
160 164
           <template slot-scope="scope">{{scope.row.MedinsListName}}</template>
161 165
         </el-table-column>

+ 2 - 2
src/xt_pages/outpatientTool/components/settle.vue View File

@@ -344,11 +344,11 @@ import { uParseTime } from '@/utils/tools'
344 344
     methods: {
345 345
       handleSizeChangeOne(val) {
346 346
         this.limit = val
347
-        this.GetRemindPatientList();
347
+        this.getSummarySettleList();
348 348
       },
349 349
       handleCurrentChangeOne(val) {
350 350
         this.page = val;
351
-        this.GetRemindPatientList();
351
+        this.getSummarySettleList();
352 352
       },
353 353
       getMode(id){
354 354