@liuqiongqiong/vue-pages 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
- package/src/pages/SettlementManagement/settlement/index.vue +30 -115
- package/src/pages/customerManagement/carePlan/index.vue +96 -342
- package/src/pages/nurse/personnel/index.vue +90 -275
- package/src/pages/nurseProjects/NursingProjects/index.vue +60 -241
package/package.json
CHANGED
|
@@ -10,28 +10,14 @@
|
|
|
10
10
|
></el-input>
|
|
11
11
|
</el-form-item> -->
|
|
12
12
|
<el-form-item label="客户姓名" prop="name">
|
|
13
|
-
<el-select
|
|
14
|
-
|
|
15
|
-
style="width: 100%"
|
|
16
|
-
clearable
|
|
17
|
-
filterable
|
|
18
|
-
size="small"
|
|
19
|
-
class="filter-item"
|
|
20
|
-
placeholder="请选择客户"
|
|
21
|
-
>
|
|
13
|
+
<el-select v-model="listQuery.familyId" style="width: 100%" clearable filterable size="small"
|
|
14
|
+
class="filter-item" placeholder="请选择客户">
|
|
22
15
|
<el-option v-for="(item, index) in customerData" :key="index" :label="item.label" :value="item.value" />
|
|
23
16
|
</el-select>
|
|
24
17
|
</el-form-item>
|
|
25
18
|
<el-form-item label="机构名称" prop="name">
|
|
26
|
-
<el-select
|
|
27
|
-
|
|
28
|
-
style="width: 100%"
|
|
29
|
-
clearable
|
|
30
|
-
filterable
|
|
31
|
-
size="small"
|
|
32
|
-
class="filter-item"
|
|
33
|
-
placeholder="请选择机构名称"
|
|
34
|
-
>
|
|
19
|
+
<el-select v-model="listQuery.unitName" style="width: 100%" clearable filterable size="small"
|
|
20
|
+
class="filter-item" placeholder="请选择机构名称">
|
|
35
21
|
<el-option v-for="(item, index) in institutionList" :key="index" :label="item.label" :value="item.label" />
|
|
36
22
|
</el-select>
|
|
37
23
|
</el-form-item>
|
|
@@ -39,13 +25,8 @@
|
|
|
39
25
|
<el-input v-model="listQuery.orderNo" clearable size="small" placeholder="请输入计划流水号" />
|
|
40
26
|
</el-form-item>
|
|
41
27
|
<el-form-item label="月份">
|
|
42
|
-
<el-date-picker
|
|
43
|
-
|
|
44
|
-
size="small"
|
|
45
|
-
value-format="yyyy-MM"
|
|
46
|
-
type="month"
|
|
47
|
-
placeholder="选择月"
|
|
48
|
-
/>
|
|
28
|
+
<el-date-picker v-model="listQuery.orderYearMonth" size="small" value-format="yyyy-MM" type="month"
|
|
29
|
+
placeholder="选择月" />
|
|
49
30
|
<!-- <el-date-picker
|
|
50
31
|
@change="changeTime"
|
|
51
32
|
v-model="time"
|
|
@@ -167,20 +148,10 @@
|
|
|
167
148
|
</template>
|
|
168
149
|
</el-table-column>
|
|
169
150
|
</el-table>
|
|
170
|
-
<pagination
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
:
|
|
174
|
-
:limit.sync="listQuery.size"
|
|
175
|
-
@pagination="getList"
|
|
176
|
-
/>
|
|
177
|
-
<el-dialog
|
|
178
|
-
:close-on-click-modal="false"
|
|
179
|
-
:close-on-press-escape="false"
|
|
180
|
-
:title="textMap[dialogStatus]"
|
|
181
|
-
:visible.sync="dialogFormVisible"
|
|
182
|
-
width="40%"
|
|
183
|
-
>
|
|
151
|
+
<pagination v-show="total > 0" :total="total" :page.sync="listQuery.pageNo" :limit.sync="listQuery.size"
|
|
152
|
+
@pagination="getList" />
|
|
153
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" :title="textMap[dialogStatus]"
|
|
154
|
+
:visible.sync="dialogFormVisible" width="40%">
|
|
184
155
|
<el-form ref="dataForm" :rules="rules" :model="temp" label-position="right" label-width="170px">
|
|
185
156
|
<el-row :gutter="20">
|
|
186
157
|
<el-col :span="12">
|
|
@@ -262,14 +233,8 @@
|
|
|
262
233
|
</div>
|
|
263
234
|
</el-dialog>
|
|
264
235
|
|
|
265
|
-
<el-dialog
|
|
266
|
-
:close
|
|
267
|
-
:close-on-press-escape="false"
|
|
268
|
-
title="导出"
|
|
269
|
-
:visible.sync="dialogVisibleExp"
|
|
270
|
-
width="600px"
|
|
271
|
-
:before-close="handleClose"
|
|
272
|
-
>
|
|
236
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="导出" :visible.sync="dialogVisibleExp"
|
|
237
|
+
width="600px" :before-close="handleClose">
|
|
273
238
|
<el-form :inline="true" class="demo-form-inline">
|
|
274
239
|
<el-form-item label="提示:">
|
|
275
240
|
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
@@ -285,14 +250,8 @@
|
|
|
285
250
|
</el-button>
|
|
286
251
|
</span>
|
|
287
252
|
</el-dialog>
|
|
288
|
-
<el-dialog
|
|
289
|
-
:close
|
|
290
|
-
:close-on-press-escape="false"
|
|
291
|
-
title="新结算单导出"
|
|
292
|
-
:visible.sync="dialogVisibleExp_two"
|
|
293
|
-
width="600px"
|
|
294
|
-
:before-close="handleClose"
|
|
295
|
-
>
|
|
253
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="新结算单导出"
|
|
254
|
+
:visible.sync="dialogVisibleExp_two" width="600px" :before-close="handleClose">
|
|
296
255
|
<el-form :inline="true" class="demo-form-inline">
|
|
297
256
|
<el-form-item label="提示:">
|
|
298
257
|
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
@@ -308,16 +267,8 @@
|
|
|
308
267
|
</el-button>
|
|
309
268
|
</span>
|
|
310
269
|
</el-dialog>
|
|
311
|
-
<el-dialog
|
|
312
|
-
|
|
313
|
-
:close-on-click-modal="false"
|
|
314
|
-
:close-on-press-escape="false"
|
|
315
|
-
title="打印"
|
|
316
|
-
:visible.sync="expObjVisible"
|
|
317
|
-
width="100%"
|
|
318
|
-
:before-close="handleClose"
|
|
319
|
-
top="3vh"
|
|
320
|
-
>
|
|
270
|
+
<el-dialog v-if="unitType == '机构护理'" :close-on-click-modal="false" :close-on-press-escape="false" title="打印"
|
|
271
|
+
:visible.sync="expObjVisible" width="100%" :before-close="handleClose" top="3vh">
|
|
321
272
|
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
322
273
|
<div class="thead">
|
|
323
274
|
{{ expObj.orderYearMonth }}
|
|
@@ -333,7 +284,7 @@
|
|
|
333
284
|
{{ expObj.personAge }}
|
|
334
285
|
</div>
|
|
335
286
|
<div class="title eight_label">参保类型</div>
|
|
336
|
-
<div class="eight_label"
|
|
287
|
+
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
337
288
|
|
|
338
289
|
<div class="title eight_label">制表人</div>
|
|
339
290
|
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
@@ -396,16 +347,8 @@
|
|
|
396
347
|
</el-button>
|
|
397
348
|
</span>
|
|
398
349
|
</el-dialog>
|
|
399
|
-
<el-dialog
|
|
400
|
-
|
|
401
|
-
:close-on-click-modal="false"
|
|
402
|
-
:close-on-press-escape="false"
|
|
403
|
-
title="打印"
|
|
404
|
-
:visible.sync="expObjVisible"
|
|
405
|
-
width="100%"
|
|
406
|
-
:before-close="handleClose"
|
|
407
|
-
top="3vh"
|
|
408
|
-
>
|
|
350
|
+
<el-dialog v-if="unitType == '居家护理'" :close-on-click-modal="false" :close-on-press-escape="false" title="打印"
|
|
351
|
+
:visible.sync="expObjVisible" width="100%" :before-close="handleClose" top="3vh">
|
|
409
352
|
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
410
353
|
<div class="thead">
|
|
411
354
|
{{ expObj.orderYearMonth }}
|
|
@@ -421,7 +364,7 @@
|
|
|
421
364
|
{{ expObj.personAge }}
|
|
422
365
|
</div>
|
|
423
366
|
<div class="title eight_label">参保类型</div>
|
|
424
|
-
<div class="eight_label"
|
|
367
|
+
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
425
368
|
|
|
426
369
|
<div class="title eight_label">制表人</div>
|
|
427
370
|
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
@@ -490,24 +433,12 @@
|
|
|
490
433
|
</el-dialog>
|
|
491
434
|
|
|
492
435
|
<!-- 导出周期表格 2024-06-07 -->
|
|
493
|
-
<el-dialog
|
|
494
|
-
:close
|
|
495
|
-
:close-on-press-escape="false"
|
|
496
|
-
title="打印"
|
|
497
|
-
:visible.sync="dialogVisibleExpPrint"
|
|
498
|
-
width="1200px"
|
|
499
|
-
:before-close="handleClose"
|
|
500
|
-
>
|
|
436
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="打印"
|
|
437
|
+
:visible.sync="dialogVisibleExpPrint" width="1200px" :before-close="handleClose">
|
|
501
438
|
<el-form :inline="true" class="demo-form-inline">
|
|
502
439
|
<el-form-item label="时间">
|
|
503
|
-
<el-date-picker
|
|
504
|
-
|
|
505
|
-
type="month"
|
|
506
|
-
value-format="yyyy-MM"
|
|
507
|
-
placeholder="选择月"
|
|
508
|
-
size="small"
|
|
509
|
-
@change="getExpPrint"
|
|
510
|
-
/>
|
|
440
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" size="small"
|
|
441
|
+
@change="getExpPrint" />
|
|
511
442
|
</el-form-item>
|
|
512
443
|
</el-form>
|
|
513
444
|
<div v-if="startDate" id="printDom1" ref="printDom1" class="exptable exptableprint" border="1">
|
|
@@ -605,24 +536,12 @@
|
|
|
605
536
|
</el-button>
|
|
606
537
|
</span>
|
|
607
538
|
</el-dialog>
|
|
608
|
-
<el-dialog
|
|
609
|
-
:close
|
|
610
|
-
:close-on-press-escape="false"
|
|
611
|
-
title="新结算单打印"
|
|
612
|
-
:visible.sync="dialogVisibleExpPrint_two"
|
|
613
|
-
width="100%"
|
|
614
|
-
:before-close="handleClose"
|
|
615
|
-
>
|
|
539
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="新结算单打印"
|
|
540
|
+
:visible.sync="dialogVisibleExpPrint_two" width="100%" :before-close="handleClose">
|
|
616
541
|
<el-form :inline="true" class="demo-form-inline">
|
|
617
542
|
<el-form-item label="时间">
|
|
618
|
-
<el-date-picker
|
|
619
|
-
|
|
620
|
-
type="month"
|
|
621
|
-
value-format="yyyy-MM"
|
|
622
|
-
placeholder="选择月"
|
|
623
|
-
size="small"
|
|
624
|
-
@change="getExpPrint_new"
|
|
625
|
-
/>
|
|
543
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" size="small"
|
|
544
|
+
@change="getExpPrint_new" />
|
|
626
545
|
</el-form-item>
|
|
627
546
|
</el-form>
|
|
628
547
|
<div v-if="startDate" id="printDom1" ref="printDom1" style="padding: 20px">
|
|
@@ -632,12 +551,8 @@
|
|
|
632
551
|
<div style="text-align: left; margin-bottom: 10px; font-size: 12px">
|
|
633
552
|
结算周期: {{ expObjPrintNew.jszqTime }}
|
|
634
553
|
</div>
|
|
635
|
-
<table
|
|
636
|
-
|
|
637
|
-
cellspacing="0"
|
|
638
|
-
cellpadding="5"
|
|
639
|
-
style="width:100%; border-collapse: collapse; font-size: 10px"
|
|
640
|
-
>
|
|
554
|
+
<table border="1" cellspacing="0" cellpadding="5"
|
|
555
|
+
style="width:100%; border-collapse: collapse; font-size: 10px">
|
|
641
556
|
<thead>
|
|
642
557
|
<tr style="background-color: #f0f0f0">
|
|
643
558
|
<th>编号</th>
|