陈少旭 1 anno fa
parent
commit
2ca42b771a

+ 34 - 0
src/api/his/his_zuobiao.js Vedi File

@@ -0,0 +1,34 @@
1
+import request from '@/utils/request'
2
+
3
+
4
+export function getZuoBiaoPatientList(params) {
5
+  return request({
6
+    url: "/api/zuobiaodetail/list",
7
+    method: "get",
8
+    params:params
9
+  });
10
+}
11
+
12
+
13
+export function getZuoBiaoPatientInfo(params) {
14
+  return request({
15
+    url: "/api/zuobiaodetail/info",
16
+    method: "get",
17
+    params:params
18
+  });
19
+}
20
+
21
+export function getZuoBiaoPatientMonthInfo(params) {
22
+  return request({
23
+    url: "/api/zuobiaomonthdetail/info",
24
+    method: "get",
25
+    params:params
26
+  });
27
+}
28
+
29
+
30
+
31
+
32
+
33
+
34
+

+ 1 - 0
src/lang/zh.js Vedi File

@@ -301,6 +301,7 @@ export default {
301 301
     objectRegistration:"医疗器械登记",
302 302
     Dialysisanalysis: '专业质控',
303 303
     queryData:"结算数据查询",
304
+    chargeDetailManagementTwo:"门诊明细上传"
304 305
   },
305 306
   navbar: {
306 307
     logOut: '退出登录',

+ 6 - 0
src/router/modules/outpatientCharges.js Vedi File

@@ -43,6 +43,12 @@ export default {
43 43
         name: 'OutpatientChargesSummary',
44 44
         meta: { title: 'summary', noCache: true}
45 45
     },
46
+    {
47
+      path: '/outpatientCharges/chargeDetailManagement',
48
+      component: () => import('@/xt_pages/outpatientCharges/chargeDetailManagement'),
49
+      name: 'chargeDetailManagementTwo',
50
+      meta: { title: 'chargeDetailManagementTwo', noCache: true}
51
+    },
46 52
     {
47 53
         path: '/outpatientCharges/incomeStatistics',
48 54
         component: () => import('@/xt_pages/outpatientCharges/incomeStatistics'),

File diff suppressed because it is too large
+ 1775 - 0
src/xt_pages/outpatientCharges/chargeDetailManagement.vue


+ 373 - 0
src/xt_pages/outpatientCharges/componenttwo/ChargePrescriptionTable.vue Vedi File

@@ -0,0 +1,373 @@
1
+<template>
2
+  <div class="prescriptionTable">
3
+    <el-table v-if="prescription.type == 1" :data="prescription.advices" border style="width: 99%;"
4
+              :row-style="{ color: '#303133' }"
5
+              :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
6
+      <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
7
+      <el-table-column align="center" prop="name" label="名称">
8
+        <template slot-scope="scope"><span :title='scope.row.drug_name'>{{ scope.row.drug_name }}</span></template>
9
+      </el-table-column>
10
+
11
+      <el-table-column align="center" prop="name" width="90" label="单次用量">
12
+        <template slot-scope="scope">
13
+          <!--<el-input v-model="scope.row.single_dose" readonly style="width:65%;"></el-input>-->
14
+          <div>{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</div>
15
+        </template>
16
+      </el-table-column>
17
+      <el-table-column align="center" prop="name" width="100" label="用法">
18
+        <template slot-scope="scope">
19
+          <!--<el-input v-model="scope.row.delivery_way" readonly></el-input>-->
20
+          <div> {{scope.row.delivery_way}}</div>
21
+
22
+        </template>
23
+      </el-table-column>
24
+      <el-table-column align="center" prop="name" width="100" label="频率">
25
+        <template slot-scope="scope">
26
+          <div> {{scope.row.execution_frequency}}</div>
27
+
28
+          <!--<el-input v-model="scope.row.execution_frequency" readonly></el-input>-->
29
+        </template>
30
+      </el-table-column>
31
+
32
+<!--      <el-table-column align="center" prop="day" width="50" label="天数">-->
33
+<!--        <template slot-scope="scope">{{scope.row.day}}天</template>-->
34
+<!--      </el-table-column>-->
35
+
36
+      <el-table-column align="center" prop="name" width="100" label="总量">
37
+        <template slot-scope="scope">
38
+          <!--<el-input v-model="scope.row.prescribing_number" style="width:60%" readonly placeholder=""></el-input>-->
39
+          <div>{{scope.row.prescribing_number}}&nbsp;&nbsp;{{scope.row.prescribing_number_unit}}</div>
40
+        </template>
41
+      </el-table-column>
42
+      <el-table-column align="center" prop="name" width="60" label="单价">
43
+        <template slot-scope="scope">
44
+          <div> {{scope.row.retail_price}}元</div>
45
+
46
+          <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
47
+        </template>
48
+      </el-table-column>
49
+
50
+      <el-table-column align="center" prop="name" width="60" label="总价">
51
+        <template slot-scope="scope">
52
+          <div> {{(scope.row.retail_price * scope.row.prescribing_number).toFixed(2)}}元</div>
53
+        </template>
54
+      </el-table-column>
55
+
56
+
57
+      <el-table-column align="center" prop="name" width="60" label="执行状态">
58
+        <template slot-scope="scope">
59
+          <div> {{scope.row.execution_state == 1?'已执行':'未执行'}}</div>
60
+        </template>
61
+      </el-table-column>
62
+
63
+
64
+
65
+      <el-table-column align="center" prop="name" width="60" label="医保编码">
66
+        <template slot-scope="scope">
67
+          <div> {{scope.row.code}}</div>
68
+        </template>
69
+      </el-table-column>
70
+
71
+
72
+      <el-table-column align="center" prop="name" width="60" label="规格/型号">
73
+        <template slot-scope="scope">
74
+          <div> {{scope.row.spec}}</div>
75
+        </template>
76
+      </el-table-column>
77
+
78
+      <el-table-column align="center" prop="name" width="60" label="金额">
79
+        <template slot-scope="scope">
80
+          <div> {{scope.row.det_item_fee_sumamt}}</div>
81
+        </template>
82
+      </el-table-column>
83
+
84
+
85
+      <el-table-column align="center" prop="name" width="60" label="生产厂家">
86
+        <template slot-scope="scope">
87
+          <div> {{getName(scope.row.name_id)}}</div>
88
+        </template>
89
+      </el-table-column>
90
+
91
+
92
+
93
+      <el-table-column align="center" prop="name" width="60" label="全自费金额">
94
+        <template slot-scope="scope">
95
+          <div> {{scope.row.fulamt_ownpay_amt}}元</div>
96
+        </template>
97
+      </el-table-column>
98
+
99
+
100
+
101
+      <el-table-column align="center" prop="name" width="60" label="超限价金额">
102
+        <template slot-scope="scope">
103
+          <div> {{scope.row.overlmt_amt}}元</div>
104
+        </template>
105
+      </el-table-column>
106
+
107
+
108
+      <el-table-column align="center" prop="name" width="60" label="先行自付金额">
109
+        <template slot-scope="scope">
110
+          <div> {{scope.row.preselfpay_amt}}元</div>
111
+        </template>
112
+      </el-table-column>
113
+
114
+
115
+      <el-table-column align="center" prop="name" width="60" label="符合正常范围金额">
116
+        <template slot-scope="scope">
117
+          <div> {{scope.row.inscp_scp_amt}}元</div>
118
+        </template>
119
+      </el-table-column>
120
+
121
+
122
+
123
+
124
+      <el-table-column align="center" prop="name" width="50" label="备注">
125
+        <template slot-scope="scope">
126
+          <!--<el-input v-model="scope.row.remark" :title="scope.row.remark" placeholder="" readonly></el-input>-->
127
+          <div> {{scope.row.remark}}</div>
128
+        </template>
129
+      </el-table-column>
130
+    </el-table>
131
+    <el-table v-if="prescription.type == 2" :data="prescription.project" border style="width: 99%;"
132
+              :row-style="{ color: '#303133' }"
133
+              :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
134
+      <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
135
+      <el-table-column align="center" prop="project_name" label="名称">
136
+        <template slot-scope="scope">{{ scope.row.project_name }}</template>
137
+      </el-table-column>
138
+      <el-table-column align="center" prop="statistical_classification" width="100" label="组">
139
+        <template slot-scope="scope">{{scope.row.statistical_classification}}</template>
140
+      </el-table-column>
141
+      <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
142
+        <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
143
+
144
+      </el-table-column>
145
+      <el-table-column align="center" prop="delivery_way" width="80" label="用法">
146
+        <template slot-scope="scope">
147
+          <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
148
+          {{scope.row.delivery_way}}
149
+
150
+        </template>
151
+      </el-table-column>
152
+      <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
153
+        <template slot-scope="scope">
154
+          <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
155
+          {{scope.row.execution_frequency}}
156
+
157
+        </template>
158
+      </el-table-column>
159
+<!--      <el-table-column align="center" prop="number_days" width="50" label="天数">-->
160
+<!--        <template slot-scope="scope">-->
161
+<!--          &lt;!&ndash;<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>&ndash;&gt;-->
162
+<!--          {{scope.row.number_days}}天-->
163
+
164
+<!--        </template>-->
165
+
166
+<!--      </el-table-column>-->
167
+      <el-table-column align="center" prop="total" width="50" label="总量">
168
+        <template slot-scope="scope">
169
+          <div style="display:flex;">
170
+            <!--<el-input v-model="scope.row.total" placeholder="" readonly></el-input>-->
171
+            {{scope.row.total}}
172
+
173
+            <div>{{scope.row.unit}}</div>
174
+
175
+          </div>
176
+        </template>
177
+      </el-table-column>
178
+      <el-table-column align="center" prop="name" width="50" label="单价">
179
+        <template slot-scope="scope">
180
+          <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
181
+          {{scope.row.price}}元
182
+
183
+        </template>
184
+      </el-table-column>
185
+
186
+      <el-table-column align="center" prop="name" width="60" label="总价">
187
+        <template slot-scope="scope">
188
+          <div> {{(scope.row.total * scope.row.price).toFixed(2)}}元</div>
189
+        </template>
190
+      </el-table-column>
191
+
192
+      <el-table-column align="center" prop="name" width="60" label="执行状态">
193
+        <template slot-scope="scope">
194
+          <div> {{scope.row.execution_state == 1?'已执行':'未执行'}}</div>
195
+        </template>
196
+      </el-table-column>
197
+
198
+
199
+
200
+
201
+      <el-table-column align="center" prop="name" width="60" label="医保编码">
202
+        <template slot-scope="scope">
203
+          <div> {{scope.row.medical_code}}</div>
204
+        </template>
205
+      </el-table-column>
206
+
207
+
208
+      <el-table-column align="center" prop="name" width="60" label="规格/型号">
209
+        <template slot-scope="scope">
210
+          <div> {{scope.row.spec}}</div>
211
+        </template>
212
+      </el-table-column>
213
+
214
+      <el-table-column align="center" prop="name" width="60" label="金额">
215
+        <template slot-scope="scope">
216
+          <div> {{scope.row.det_item_fee_sumamt}}元</div>
217
+        </template>
218
+      </el-table-column>
219
+
220
+
221
+      <el-table-column align="center" prop="name" width="60" label="生产厂家">
222
+        <template slot-scope="scope">
223
+          <div> {{getName(scope.row.name_id)}}</div>
224
+        </template>
225
+      </el-table-column>
226
+
227
+
228
+
229
+      <el-table-column align="center" prop="name" width="60" label="全自费金额">
230
+        <template slot-scope="scope">
231
+          <div> {{scope.row.fulamt_ownpay_amt}}元</div>
232
+        </template>
233
+      </el-table-column>
234
+
235
+
236
+
237
+      <el-table-column align="center" prop="name" width="60" label="超限价金额">
238
+        <template slot-scope="scope">
239
+          <div> {{scope.row.overlmt_amt}}元</div>
240
+        </template>
241
+      </el-table-column>
242
+
243
+
244
+      <el-table-column align="center" prop="name" width="60" label="先行自付金额">
245
+        <template slot-scope="scope">
246
+          <div> {{scope.row.preselfpay_amt}}元</div>
247
+        </template>
248
+      </el-table-column>
249
+
250
+
251
+      <el-table-column align="center" prop="name" width="60" label="符合正常范围金额">
252
+        <template slot-scope="scope">
253
+          <div> {{scope.row.inscp_scp_amt}}元</div>
254
+        </template>
255
+      </el-table-column>
256
+
257
+
258
+
259
+
260
+      <el-table-column align="center" prop="name" width="50" label="备注">
261
+        <template slot-scope="scope">
262
+          <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
263
+          {{scope.row.remark}}
264
+
265
+        </template>
266
+      </el-table-column>
267
+    </el-table>
268
+
269
+    <div class="additionalBox">
270
+      <div class="additionalOne" v-for="(item,index) in prescription.addition" :key="index">
271
+        <span :title="item.item_name">{{item.item_name}}</span>
272
+        <el-input v-model="item.price" placeholder="" style="width:50px;" readonly></el-input>
273
+        共
274
+        <el-input v-model="item.count" placeholder="" style="width:50px;" readonly></el-input>
275
+        次
276
+        <!--<i class="el-icon-delete deleteIcon" @click="delAddition(index,item)"></i>-->
277
+      </div>
278
+    </div>
279
+  </div>
280
+</template>
281
+
282
+<script>
283
+  import { getInitData } from '@/api/his/his'
284
+  import { getDictionaryDataConfig} from "@/utils/data";
285
+
286
+  export default {
287
+    props: {
288
+      prescription: Object,
289
+      manufacturers:Array,
290
+
291
+    },
292
+    data() {
293
+      return {
294
+        drugways: [],
295
+        efs: []
296
+      }
297
+    }, mounted() {
298
+      getInitData().then(response => {
299
+        if (response.data.state == 0) {
300
+          this.$message.error(response.data.msg);
301
+          return false
302
+        } else {
303
+          this.drugways = response.data.data.drugways;
304
+          this.efs = response.data.data.efs
305
+        }
306
+      })
307
+    }, methods:  {
308
+
309
+      getName(id){
310
+        console.log("!!!!!!!!!")
311
+
312
+        let  name = ""
313
+        for(let i = 0; i  < this.manufacturers.length; i++){
314
+          console.log(this.manufacturers[i].manufacturer_name)
315
+          if(id == this.manufacturers[i].id){
316
+            console.log("!!!!!!!!!")
317
+            name =  this.manufacturers[i].manufacturer_name
318
+          }
319
+        }
320
+        return name
321
+
322
+      },
323
+      getGroup(id){
324
+        var name = "";
325
+        var statistics_category =  getDictionaryDataConfig('system','statistics_category');
326
+        console.log("2235",statistics_category);
327
+        for(let i=0;i<statistics_category.length;i++){
328
+          if(id == statistics_category[i].id){
329
+            name = statistics_category[i].name
330
+          }
331
+        }
332
+        return name
333
+      },
334
+
335
+
336
+    }
337
+  }
338
+</script>
339
+
340
+<style lang="scss">
341
+  .prescriptionTable{
342
+  .additionalBox{
343
+    margin-top: 20px;
344
+    display: flex;
345
+    flex-wrap: wrap;
346
+  .additionalOne{
347
+    margin-right:20px;
348
+    margin-bottom:10px;
349
+    display: flex;
350
+    align-items: center;
351
+  >span{
352
+    white-space: nowrap;
353
+    overflow: hidden;
354
+    text-overflow: ellipsis;
355
+    width:80px;
356
+    display: inline-block;
357
+    font-size: 14px;
358
+  }
359
+  }
360
+  .deleteIcon{
361
+    color:red;
362
+    margin-left:5px;
363
+  }
364
+  }
365
+  .el-table th .cell, .el-table td .cell{
366
+    padding: 0 2px;
367
+    white-space: pre-line;
368
+  }
369
+  .el-icon-delete{
370
+    color:red;
371
+  }
372
+  }
373
+</style>

+ 196 - 0
src/xt_pages/outpatientCharges/componenttwo/chargeMonthPrescriptionTable.vue Vedi File

@@ -0,0 +1,196 @@
1
+<template>
2
+  <div class="prescriptionTable">
3
+    <el-table v-if="prescription&&prescription.type == 1" :data="prescription.advices" border style="width: 99%;"
4
+              :row-style="{ color: '#303133' }"
5
+              :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
6
+      <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
7
+      <el-table-column align="center" prop="name" label="名称">
8
+        <template slot-scope="scope"><span :title='scope.row.drug_name'>{{ scope.row.drug_name }}</span></template>
9
+      </el-table-column>
10
+
11
+      <el-table-column align="center" prop="name" width="90" label="单次用量">
12
+        <template slot-scope="scope">
13
+          <!--<el-input v-model="scope.row.single_dose" readonly style="width:65%;"></el-input>-->
14
+          <div>{{scope.row.single_dose}}&nbsp;&nbsp;{{scope.row.single_dose_unit}}</div>
15
+        </template>
16
+      </el-table-column>
17
+      <el-table-column align="center" prop="name" width="100" label="用法">
18
+        <template slot-scope="scope">
19
+          <!--<el-input v-model="scope.row.delivery_way" readonly></el-input>-->
20
+          <div> {{scope.row.delivery_way}}</div>
21
+
22
+        </template>
23
+      </el-table-column>
24
+      <el-table-column align="center" prop="name" width="100" label="频率">
25
+        <template slot-scope="scope">
26
+          <div> {{scope.row.execution_frequency}}</div>
27
+
28
+          <!--<el-input v-model="scope.row.execution_frequency" readonly></el-input>-->
29
+        </template>
30
+      </el-table-column>
31
+
32
+      <el-table-column align="center" prop="day" width="50" label="天数">
33
+        <template slot-scope="scope">{{scope.row.day}}天</template>
34
+      </el-table-column>
35
+
36
+      <el-table-column align="center" prop="name" width="100" label="总量">
37
+        <template slot-scope="scope">
38
+          <!--<el-input v-model="scope.row.prescribing_number" style="width:60%" readonly placeholder=""></el-input>-->
39
+          <div>{{scope.row.prescribing_number}}&nbsp;&nbsp;{{scope.row.prescribing_number_unit}}</div>
40
+        </template>
41
+      </el-table-column>
42
+      <el-table-column align="center" prop="name" width="60" label="单价">
43
+        <template slot-scope="scope">
44
+          <div> {{scope.row.retail_price}}元</div>
45
+
46
+          <!--<el-input v-model="scope.row.retail_price" placeholder="" readonly></el-input>-->
47
+        </template>
48
+      </el-table-column>
49
+      <el-table-column align="center" prop="name" width="50" label="备注">
50
+        <template slot-scope="scope">
51
+          <!--<el-input v-model="scope.row.remark" :title="scope.row.remark" placeholder="" readonly></el-input>-->
52
+          <div> {{scope.row.remark}}</div>
53
+        </template>
54
+      </el-table-column>
55
+    </el-table>
56
+    <el-table v-if="prescription&&prescription.type == 2" :data="prescription.project" border style="width: 99%;"
57
+              :row-style="{ color: '#303133' }"
58
+              :header-cell-style="{backgroundColor: 'rgb(245, 247, 250)',color: '#606266'}" highlight-current-row>
59
+      <el-table-column align="center" type="index" width="40" label="序号"></el-table-column>
60
+      <el-table-column align="center" prop="project_name" label="名称">
61
+        <template slot-scope="scope">{{ scope.row.project_name }}</template>
62
+      </el-table-column>
63
+      <el-table-column align="center" prop="statistical_classification" width="100" label="组">
64
+        <template slot-scope="scope">{{getGroup(scope.row.statistical_classification)}}</template>
65
+      </el-table-column>
66
+      <el-table-column align="center" prop="single_dose" width="80" label="单次用量">
67
+        <template slot-scope="scope">{{scope.row.single_dose}}{{scope.row.unit}}</template>
68
+
69
+      </el-table-column>
70
+      <el-table-column align="center" prop="delivery_way" width="80" label="用法">
71
+        <template slot-scope="scope">
72
+          <!--<el-input v-model="scope.row.delivery_way" placeholder="" readonly></el-input>-->
73
+          {{scope.row.delivery_way}}
74
+
75
+        </template>
76
+      </el-table-column>
77
+      <el-table-column align="center" prop="execution_frequency" width="80" label="频率">
78
+        <template slot-scope="scope">
79
+          <!--<el-input v-model="scope.row.execution_frequency" placeholder="" readonly></el-input>-->
80
+          {{scope.row.execution_frequency}}
81
+
82
+        </template>
83
+      </el-table-column>
84
+      <el-table-column align="center" prop="number_days" width="50" label="天数">
85
+        <template slot-scope="scope">
86
+          <!--<el-input v-model="scope.row.number_days" placeholder="" readonly></el-input>-->
87
+          {{scope.row.number_days}}天
88
+
89
+        </template>
90
+
91
+      </el-table-column>
92
+      <el-table-column align="center" prop="total" width="50" label="总量">
93
+        <template slot-scope="scope">
94
+          <div style="display:flex;">
95
+            <!--<el-input v-model="scope.row.total" placeholder="" readonly></el-input>-->
96
+            {{scope.row.total}} {{scope.row.unit}}
97
+
98
+          </div>
99
+        </template>
100
+      </el-table-column>
101
+      <el-table-column align="center" prop="name" width="50" label="单价">
102
+        <template slot-scope="scope">
103
+          <!--<el-input v-model="scope.row.price" placeholder="" readonly></el-input>-->
104
+          {{scope.row.price}}元
105
+
106
+        </template>
107
+      </el-table-column>
108
+      <el-table-column align="center" prop="name" width="50" label="备注">
109
+        <template slot-scope="scope">
110
+          <!--<el-input v-model="scope.row.remark" readonly></el-input>-->
111
+          {{scope.row.remark}}
112
+
113
+        </template>
114
+      </el-table-column>
115
+    </el-table>
116
+
117
+  </div>
118
+</template>
119
+
120
+<script>
121
+  import { getInitData } from '@/api/his/his'
122
+  import { getDictionaryDataConfig} from "@/utils/data";
123
+
124
+  export default {
125
+    props: {
126
+      prescription: Object
127
+    },
128
+    data() {
129
+      return {
130
+        drugways: [],
131
+        efs: []
132
+      }
133
+    }, mounted() {
134
+      getInitData().then(response => {
135
+        if (response.data.state == 0) {
136
+          this.$message.error(response.data.msg);
137
+          return false
138
+        } else {
139
+          this.drugways = response.data.data.drugways;
140
+          this.efs = response.data.data.efs
141
+        }
142
+      })
143
+    }, methods:  {
144
+
145
+
146
+      getGroup(id){
147
+        var name = "";
148
+        var statistics_category =  getDictionaryDataConfig('system','statistics_category');
149
+        console.log("2235",statistics_category);
150
+        for(let i=0;i<statistics_category.length;i++){
151
+          if(id == statistics_category[i].id){
152
+            name = statistics_category[i].name
153
+          }
154
+        }
155
+        return name
156
+      },
157
+
158
+
159
+    }
160
+  }
161
+</script>
162
+
163
+<style lang="scss">
164
+  .prescriptionTable{
165
+  .additionalBox{
166
+    margin-top: 20px;
167
+    display: flex;
168
+    flex-wrap: wrap;
169
+  .additionalOne{
170
+    margin-right:20px;
171
+    margin-bottom:10px;
172
+    display: flex;
173
+    align-items: center;
174
+  >span{
175
+    white-space: nowrap;
176
+    overflow: hidden;
177
+    text-overflow: ellipsis;
178
+    width:80px;
179
+    display: inline-block;
180
+    font-size: 14px;
181
+  }
182
+  }
183
+  .deleteIcon{
184
+    color:red;
185
+    margin-left:5px;
186
+  }
187
+  }
188
+  .el-table th .cell, .el-table td .cell{
189
+    padding: 0 2px;
190
+    white-space: pre-line;
191
+  }
192
+  .el-icon-delete{
193
+    color:red;
194
+  }
195
+  }
196
+</style>

+ 2 - 1
src/xt_pages/outpatientCharges/outpatientChargesManagement.vue Vedi File

@@ -4763,7 +4763,8 @@ export default {
4763 4763
       if (this.big_month_prescriptions.length > 0) {
4764 4764
         this.editableTabsValue = this.big_month_prescriptions[0].curMonthPrescriptions.name
4765 4765
       }
4766
-    }, getPName(med_type, index) {
4766
+    },
4767
+    getPName(med_type, index) {
4767 4768
       var med_type = parseInt(med_type)
4768 4769
 
4769 4770
       if(this.org_id == 10206){