Browse Source

Merge branch '20230223_pc_vue_new_branch' of http://git.shengws.com/csx/Vue_New into 20230223_pc_vue_new_branch

28169 1 month ago
parent
commit
9ed8c955c4

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

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

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

152
           </template>
152
           </template>
153
         </el-table-column>
153
         </el-table-column>
154
       </el-table>
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
                  :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
156
                  :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}"
157
                  max-height="600"
157
                  max-height="600"
158
                  highlight-current-row>
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
         <el-table-column align="center" prop="name" label="药品名称">
163
         <el-table-column align="center" prop="name" label="药品名称">
160
           <template slot-scope="scope">{{scope.row.MedinsListName}}</template>
164
           <template slot-scope="scope">{{scope.row.MedinsListName}}</template>
161
         </el-table-column>
165
         </el-table-column>

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

344
     methods: {
344
     methods: {
345
       handleSizeChangeOne(val) {
345
       handleSizeChangeOne(val) {
346
         this.limit = val
346
         this.limit = val
347
-        this.GetRemindPatientList();
347
+        this.getSummarySettleList();
348
       },
348
       },
349
       handleCurrentChangeOne(val) {
349
       handleCurrentChangeOne(val) {
350
         this.page = val;
350
         this.page = val;
351
-        this.GetRemindPatientList();
351
+        this.getSummarySettleList();
352
       },
352
       },
353
       getMode(id){
353
       getMode(id){
354
 
354