@liuqiongqiong/vue-pages 1.0.8 → 1.0.9
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 +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/src/pages/SettlementManagement/settlement/index.vue +1244 -1240
|
@@ -1,1240 +1,1244 @@
|
|
|
1
|
-
<template>
|
|
2
|
-
<div class="app-container">
|
|
3
|
-
<div class="filter-container">
|
|
4
|
-
<el-form ref="listQuery" :inline="true" :model="listQuery" class="demo-form-inline">
|
|
5
|
-
<!-- <el-form-item label="机构名称" prop="unitName">
|
|
6
|
-
<el-input
|
|
7
|
-
size="small"
|
|
8
|
-
v-model="listQuery.unitName"
|
|
9
|
-
placeholder="请输入机构名称"
|
|
10
|
-
></el-input>
|
|
11
|
-
</el-form-item> -->
|
|
12
|
-
<el-form-item label="客户姓名" prop="name">
|
|
13
|
-
<el-select v-model="listQuery.familyId" style="width: 100%" clearable filterable size="small"
|
|
14
|
-
class="filter-item" placeholder="请选择客户">
|
|
15
|
-
<el-option v-for="(item, index) in customerData" :key="index" :label="item.label" :value="item.value" />
|
|
16
|
-
</el-select>
|
|
17
|
-
</el-form-item>
|
|
18
|
-
<el-form-item label="机构名称" prop="name">
|
|
19
|
-
<el-select v-model="listQuery.unitName" style="width: 100%" clearable filterable size="small"
|
|
20
|
-
class="filter-item" placeholder="请选择机构名称">
|
|
21
|
-
<el-option v-for="(item, index) in institutionList" :key="index" :label="item.label" :value="item.label" />
|
|
22
|
-
</el-select>
|
|
23
|
-
</el-form-item>
|
|
24
|
-
<el-form-item label="计划流水号" prop="orderNo">
|
|
25
|
-
<el-input v-model="listQuery.orderNo" clearable size="small" placeholder="请输入计划流水号" />
|
|
26
|
-
</el-form-item>
|
|
27
|
-
<el-form-item label="月份">
|
|
28
|
-
<el-date-picker v-model="listQuery.orderYearMonth" size="small" value-format="yyyy-MM" type="month"
|
|
29
|
-
placeholder="选择月" />
|
|
30
|
-
<!-- <el-date-picker
|
|
31
|
-
@change="changeTime"
|
|
32
|
-
v-model="time"
|
|
33
|
-
clearable
|
|
34
|
-
size="small"
|
|
35
|
-
value-format="yyyy-MM-dd"
|
|
36
|
-
type="daterange"
|
|
37
|
-
range-separator="至"
|
|
38
|
-
start-placeholder="开始时间"
|
|
39
|
-
end-placeholder="结束时间"
|
|
40
|
-
>
|
|
41
|
-
</el-date-picker> -->
|
|
42
|
-
</el-form-item>
|
|
43
|
-
<el-form-item>
|
|
44
|
-
<el-button size="small" type="primary" @click="onSubmit">查询</el-button>
|
|
45
|
-
</el-form-item>
|
|
46
|
-
<el-form-item>
|
|
47
|
-
<el-button size="small" type="warning" @click="resetting('listQuery')">重置</el-button>
|
|
48
|
-
</el-form-item>
|
|
49
|
-
<el-form-item>
|
|
50
|
-
<el-button size="small" type="primary" @click="dialogVisibleExp = true">结算周期导出</el-button>
|
|
51
|
-
</el-form-item>
|
|
52
|
-
<el-form-item>
|
|
53
|
-
<el-button size="small" type="primary" @click="dialogVisibleExp_two = true">新结算周期导出</el-button>
|
|
54
|
-
</el-form-item>
|
|
55
|
-
<el-form-item>
|
|
56
|
-
<el-button size="small" type="success" @click="expExcel3">
|
|
57
|
-
结算周期打印
|
|
58
|
-
</el-button>
|
|
59
|
-
</el-form-item>
|
|
60
|
-
<el-form-item>
|
|
61
|
-
<el-button size="small" type="success" @click="expExcel4">
|
|
62
|
-
新结算周期打印
|
|
63
|
-
</el-button>
|
|
64
|
-
</el-form-item>
|
|
65
|
-
</el-form>
|
|
66
|
-
</div>
|
|
67
|
-
<el-table border height="65vh" :data="list" style="width: 100%">
|
|
68
|
-
<el-table-column :label="'客户姓名'" align="center">
|
|
69
|
-
<template slot-scope="{ row }">
|
|
70
|
-
<span>{{ row.familyName }}</span>
|
|
71
|
-
</template>
|
|
72
|
-
</el-table-column>
|
|
73
|
-
<el-table-column :label="'客户失能等级'" align="center" width="150">
|
|
74
|
-
<template slot-scope="{ row }">
|
|
75
|
-
<el-tag v-if="row.familyLv == '06'" type="success">重度失能ⅠⅠⅠ级</el-tag>
|
|
76
|
-
<el-tag v-if="row.familyLv == '05'" type="success">重度失能ⅠⅠ级</el-tag>
|
|
77
|
-
<el-tag v-if="row.familyLv == '04'" type="success">重度失能Ⅰ级</el-tag>
|
|
78
|
-
<el-tag v-if="row.familyLv == '03'" type="success">中度失能</el-tag>
|
|
79
|
-
<el-tag v-if="row.familyLv == '02'" type="success">轻度失能</el-tag>
|
|
80
|
-
<el-tag v-if="row.familyLv == '01'" type="success">基本正常</el-tag>
|
|
81
|
-
</template>
|
|
82
|
-
</el-table-column>
|
|
83
|
-
<el-table-column :label="'计划流水号'" align="center">
|
|
84
|
-
<template slot-scope="{ row }">
|
|
85
|
-
<span>{{ row.orderNo }}</span>
|
|
86
|
-
</template>
|
|
87
|
-
</el-table-column>
|
|
88
|
-
<el-table-column :label="'护理机构'" align="center">
|
|
89
|
-
<template slot-scope="{ row }">
|
|
90
|
-
<span>{{ row.unitName ? row.unitName : "-" }}</span>
|
|
91
|
-
</template>
|
|
92
|
-
</el-table-column>
|
|
93
|
-
<el-table-column :label="'机构类型'" align="center">
|
|
94
|
-
<template slot-scope="{ row }">
|
|
95
|
-
<el-tag size="medium">{{
|
|
96
|
-
row.unitType == "01"
|
|
97
|
-
? "上门护理机构"
|
|
98
|
-
: row.unitType == "02"
|
|
99
|
-
? "养老机构"
|
|
100
|
-
: row.unitType == "03"
|
|
101
|
-
? "医疗机构"
|
|
102
|
-
: row.unitType == "04"
|
|
103
|
-
? "辅助器具机构"
|
|
104
|
-
: "-"
|
|
105
|
-
}}</el-tag>
|
|
106
|
-
</template>
|
|
107
|
-
</el-table-column>
|
|
108
|
-
<el-table-column :label="'长期护理保险总费用'" align="center">
|
|
109
|
-
<template slot-scope="{ row }">
|
|
110
|
-
<span>{{ row.sumAccount ? row.sumAccount : "0" }}元</span>
|
|
111
|
-
</template>
|
|
112
|
-
</el-table-column>
|
|
113
|
-
<el-table-column :label="'客户所需支付金额'" align="center">
|
|
114
|
-
<template slot-scope="{ row }">
|
|
115
|
-
<span>{{ row.userAccount ? row.userAccount : "0" }}元</span>
|
|
116
|
-
</template>
|
|
117
|
-
</el-table-column>
|
|
118
|
-
<el-table-column :label="'基金所需支付金额'" align="center">
|
|
119
|
-
<template slot-scope="{ row }">
|
|
120
|
-
<span>{{ row.unitAccount ? row.unitAccount : "0" }}元</span>
|
|
121
|
-
</template>
|
|
122
|
-
</el-table-column>
|
|
123
|
-
<el-table-column :label="'实际总金额'" align="center">
|
|
124
|
-
<template slot-scope="{ row }">
|
|
125
|
-
<span>{{ row.accountTotal ? row.accountTotal : "0" }}元</span>
|
|
126
|
-
</template>
|
|
127
|
-
</el-table-column>
|
|
128
|
-
<el-table-column :label="'更新时间'" align="center">
|
|
129
|
-
<template slot-scope="{ row }">
|
|
130
|
-
<span>{{ row.createTime }}</span>
|
|
131
|
-
</template>
|
|
132
|
-
</el-table-column>
|
|
133
|
-
|
|
134
|
-
<el-table-column :label="'操作'" align="center" width="250" class-name="small-padding fixed-width">
|
|
135
|
-
<template slot-scope="{ row, $index }">
|
|
136
|
-
<el-button size="mini" type="primary" @click="edit(row, $index)">
|
|
137
|
-
详情
|
|
138
|
-
</el-button>
|
|
139
|
-
<el-button v-if="row.trtSetlId" size="mini" type="success" @click="revoke(row, $index)">
|
|
140
|
-
费用申请撤销
|
|
141
|
-
</el-button>
|
|
142
|
-
<el-button size="mini" type="success" @click="expExcel(row, $index)">
|
|
143
|
-
导出
|
|
144
|
-
</el-button>
|
|
145
|
-
<el-button style="margin-top: 8px" size="mini" type="success" @click="expExcel2(row, $index)">
|
|
146
|
-
打印
|
|
147
|
-
</el-button>
|
|
148
|
-
</template>
|
|
149
|
-
</el-table-column>
|
|
150
|
-
</el-table>
|
|
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%">
|
|
155
|
-
<el-form ref="dataForm" :rules="rules" :model="temp" label-position="right" label-width="170px">
|
|
156
|
-
<el-row :gutter="20">
|
|
157
|
-
<el-col :span="12">
|
|
158
|
-
<el-form-item style="margin-bottom: 0px" label="客户姓名">
|
|
159
|
-
<span>{{ temp.familyName }}</span>
|
|
160
|
-
</el-form-item>
|
|
161
|
-
</el-col>
|
|
162
|
-
<el-col :span="12">
|
|
163
|
-
<el-form-item style="margin-bottom: 0px" label="客户失能等级">
|
|
164
|
-
<el-tag v-if="temp.familyLv == '06'" type="success">重度失能ⅠⅠⅠ级</el-tag>
|
|
165
|
-
<el-tag v-if="temp.familyLv == '05'" type="success">重度失能ⅠⅠ级</el-tag>
|
|
166
|
-
<el-tag v-if="temp.familyLv == '04'" type="success">重度失能Ⅰ级</el-tag>
|
|
167
|
-
<el-tag v-if="temp.familyLv == '03'" type="success">中度失能</el-tag>
|
|
168
|
-
<el-tag v-if="temp.familyLv == '02'" type="success">轻度失能</el-tag>
|
|
169
|
-
<el-tag v-if="temp.familyLv == '01'" type="success">基本正常</el-tag>
|
|
170
|
-
</el-form-item>
|
|
171
|
-
</el-col>
|
|
172
|
-
<el-col :span="12">
|
|
173
|
-
<el-form-item style="margin-bottom: 0px" label="计划流水号">
|
|
174
|
-
<span>{{ temp.orderNo }}</span>
|
|
175
|
-
</el-form-item>
|
|
176
|
-
</el-col>
|
|
177
|
-
<el-col :span="12">
|
|
178
|
-
<el-form-item style="margin-bottom: 0px" label="护理机构">
|
|
179
|
-
<span>{{ temp.unitName }}</span>
|
|
180
|
-
</el-form-item>
|
|
181
|
-
</el-col>
|
|
182
|
-
<el-col :span="12">
|
|
183
|
-
<el-form-item style="margin-bottom: 0px" label="机构类型">
|
|
184
|
-
<!-- <span>{{
|
|
185
|
-
temp.unitType == "1"
|
|
186
|
-
? "养老机构"
|
|
187
|
-
: temp.unitType == "2"
|
|
188
|
-
? "护理机构"
|
|
189
|
-
: "-"
|
|
190
|
-
}}</span> -->
|
|
191
|
-
<el-tag size="medium">{{
|
|
192
|
-
temp.unitType == "01"
|
|
193
|
-
? "上门护理机构"
|
|
194
|
-
: temp.unitType == "02"
|
|
195
|
-
? "养老机构"
|
|
196
|
-
: temp.unitType == "03"
|
|
197
|
-
? "医疗机构"
|
|
198
|
-
: temp.unitType == "04"
|
|
199
|
-
? "辅助器具机构"
|
|
200
|
-
: "-"
|
|
201
|
-
}}</el-tag>
|
|
202
|
-
</el-form-item>
|
|
203
|
-
</el-col>
|
|
204
|
-
<el-col :span="12">
|
|
205
|
-
<el-form-item style="margin-bottom: 0px" label="实际总金额">
|
|
206
|
-
<span>{{ temp.accountTotal }}元</span>
|
|
207
|
-
</el-form-item>
|
|
208
|
-
</el-col>
|
|
209
|
-
<el-col :span="12">
|
|
210
|
-
<el-form-item style="margin-bottom: 0px" label="客户所需支付金额">
|
|
211
|
-
<span>{{ temp.userAccount }}元</span>
|
|
212
|
-
</el-form-item>
|
|
213
|
-
</el-col>
|
|
214
|
-
<el-col :span="12">
|
|
215
|
-
<el-form-item style="margin-bottom: 0px" label="基金所需支付金额">
|
|
216
|
-
<span>{{ temp.unitAccount }}元</span>
|
|
217
|
-
</el-form-item>
|
|
218
|
-
</el-col>
|
|
219
|
-
<el-col :span="12">
|
|
220
|
-
<el-form-item style="margin-bottom: 0px" label="更新时间">
|
|
221
|
-
<span>{{ temp.createTime }}</span>
|
|
222
|
-
</el-form-item>
|
|
223
|
-
</el-col>
|
|
224
|
-
</el-row>
|
|
225
|
-
</el-form>
|
|
226
|
-
<div slot="footer" class="dialog-footer">
|
|
227
|
-
<el-button type="primary" size="mini" @click="dialogFormVisible = false">
|
|
228
|
-
关 闭
|
|
229
|
-
</el-button>
|
|
230
|
-
<!-- <el-button size="mini" type="primary" @click="dialogStatus === 'create' ? createData() : updateData()">
|
|
231
|
-
确 认
|
|
232
|
-
</el-button> -->
|
|
233
|
-
</div>
|
|
234
|
-
</el-dialog>
|
|
235
|
-
|
|
236
|
-
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="导出" :visible.sync="dialogVisibleExp"
|
|
237
|
-
width="600px" :before-close="handleClose">
|
|
238
|
-
<el-form :inline="true" class="demo-form-inline">
|
|
239
|
-
<el-form-item label="提示:">
|
|
240
|
-
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
241
|
-
</el-form-item>
|
|
242
|
-
<el-form-item label="时间">
|
|
243
|
-
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" />
|
|
244
|
-
</el-form-item>
|
|
245
|
-
</el-form>
|
|
246
|
-
<span slot="footer" class="dialog-footer">
|
|
247
|
-
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
248
|
-
<el-button size="small" type="primary" :loading="loadExp" @click="expExcelForm">
|
|
249
|
-
导 出
|
|
250
|
-
</el-button>
|
|
251
|
-
</span>
|
|
252
|
-
</el-dialog>
|
|
253
|
-
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="新结算单导出"
|
|
254
|
-
:visible.sync="dialogVisibleExp_two" width="600px" :before-close="handleClose">
|
|
255
|
-
<el-form :inline="true" class="demo-form-inline">
|
|
256
|
-
<el-form-item label="提示:">
|
|
257
|
-
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
258
|
-
</el-form-item>
|
|
259
|
-
<el-form-item label="时间">
|
|
260
|
-
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" />
|
|
261
|
-
</el-form-item>
|
|
262
|
-
</el-form>
|
|
263
|
-
<span slot="footer" class="dialog-footer">
|
|
264
|
-
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
265
|
-
<el-button size="small" type="primary" :loading="loadExp" @click="expExcelForm_two">
|
|
266
|
-
导 出
|
|
267
|
-
</el-button>
|
|
268
|
-
</span>
|
|
269
|
-
</el-dialog>
|
|
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">
|
|
272
|
-
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
273
|
-
<div class="thead">
|
|
274
|
-
{{ expObj.orderYearMonth }}
|
|
275
|
-
</div>
|
|
276
|
-
<div class="tbody">
|
|
277
|
-
<div class="tr eight">
|
|
278
|
-
<div class="title eight_label">参保人姓名</div>
|
|
279
|
-
<div class="eight_label">{{ expObj.personName }}</div>
|
|
280
|
-
<div class="title eight_label">身份证</div>
|
|
281
|
-
<div class="eight_label">{{ expObj.personIdCode }}</div>
|
|
282
|
-
<div class="title eight_label">年龄</div>
|
|
283
|
-
<div>
|
|
284
|
-
{{ expObj.personAge }}
|
|
285
|
-
</div>
|
|
286
|
-
<div class="title eight_label">参保类型</div>
|
|
287
|
-
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
288
|
-
|
|
289
|
-
<div class="title eight_label">制表人</div>
|
|
290
|
-
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
291
|
-
</div>
|
|
292
|
-
<div class="tr eight">
|
|
293
|
-
<div class="title eight_label">所属参保区划</div>
|
|
294
|
-
<div class="eight_label">{{ expObj.medicalCounty }}</div>
|
|
295
|
-
<div class="title eight_label">失能等级</div>
|
|
296
|
-
<div class="eight_label">{{ expObj.lv }}</div>
|
|
297
|
-
<div class="title eight_label">家属姓名</div>
|
|
298
|
-
<div class="eight_label">{{ expObj.familyName }}</div>
|
|
299
|
-
<!-- <div class="title eight_label" style="width: 750px;"></div> -->
|
|
300
|
-
<!-- <div class="eight_label">{{ expObj.totalPrice }}</div> -->
|
|
301
|
-
</div>
|
|
302
|
-
<div class="leftXuhao loop">
|
|
303
|
-
<div class="num">序号</div>
|
|
304
|
-
<div class="name">服务项目</div>
|
|
305
|
-
<div class="day headday">
|
|
306
|
-
<span>护理服务执行日期及次数</span>
|
|
307
|
-
<div class="forday">
|
|
308
|
-
<span v-for="i in 31" :key="i">{{ i }}日</span>
|
|
309
|
-
</div>
|
|
310
|
-
</div>
|
|
311
|
-
<div class="total">床日合计</div>
|
|
312
|
-
</div>
|
|
313
|
-
<div v-for="(item, index) in expObj.list" :key="index" class="tr loop">
|
|
314
|
-
<div class="num">{{ index + 1 }}</div>
|
|
315
|
-
<div class="name">{{ item.title }}</div>
|
|
316
|
-
<div class="day bodyday">
|
|
317
|
-
<div class="forday">
|
|
318
|
-
<template v-for="i in 31">
|
|
319
|
-
<span v-if="Array.isArray(item[`day${i}`])" :key="i">
|
|
320
|
-
<p v-for="(items, index) in item[`day${i}`]" :key="index" style="margin: 0;">
|
|
321
|
-
{{ items }}
|
|
322
|
-
</p>
|
|
323
|
-
</span>
|
|
324
|
-
<span v-else :key="i">{{ item[`day${i}`] }}</span>
|
|
325
|
-
</template>
|
|
326
|
-
</div>
|
|
327
|
-
</div>
|
|
328
|
-
<div class="total">{{ item.num }}</div>
|
|
329
|
-
</div>
|
|
330
|
-
</div>
|
|
331
|
-
<div class="handwriting">
|
|
332
|
-
<div class="name">协议服务机构负责人签字:</div>
|
|
333
|
-
<div class="day bodyday">家属确认签字按手印:</div>
|
|
334
|
-
</div>
|
|
335
|
-
<div class="handwriting">
|
|
336
|
-
<div class="name">盖章:</div>
|
|
337
|
-
<div class="day bodyday">日期:</div>
|
|
338
|
-
</div>
|
|
339
|
-
<div class="handwriting">
|
|
340
|
-
<div class="name">日期:</div>
|
|
341
|
-
</div>
|
|
342
|
-
</div>
|
|
343
|
-
<span slot="footer" class="dialog-footer">
|
|
344
|
-
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
345
|
-
<el-button v-print="print" size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
346
|
-
打 印
|
|
347
|
-
</el-button>
|
|
348
|
-
</span>
|
|
349
|
-
</el-dialog>
|
|
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">
|
|
352
|
-
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
353
|
-
<div class="thead">
|
|
354
|
-
{{ expObj.orderYearMonth }}
|
|
355
|
-
</div>
|
|
356
|
-
<div class="tbody">
|
|
357
|
-
<div class="tr eight">
|
|
358
|
-
<div class="title eight_label">参保人姓名</div>
|
|
359
|
-
<div class="eight_label">{{ expObj.personName }}</div>
|
|
360
|
-
<div class="title eight_label">身份证</div>
|
|
361
|
-
<div class="eight_label">{{ expObj.personIdCode }}</div>
|
|
362
|
-
<div class="title eight_label">年龄</div>
|
|
363
|
-
<div>
|
|
364
|
-
{{ expObj.personAge }}
|
|
365
|
-
</div>
|
|
366
|
-
<div class="title eight_label">参保类型</div>
|
|
367
|
-
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
368
|
-
|
|
369
|
-
<div class="title eight_label">制表人</div>
|
|
370
|
-
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
371
|
-
</div>
|
|
372
|
-
<div class="tr eight">
|
|
373
|
-
<div class="title eight_label">所属参保区划</div>
|
|
374
|
-
<div class="eight_label">{{ expObj.medicalCounty }}</div>
|
|
375
|
-
<div class="title eight_label">失能等级</div>
|
|
376
|
-
<div class="eight_label">{{ expObj.lv }}</div>
|
|
377
|
-
<div class="title eight_label">家属姓名</div>
|
|
378
|
-
<div class="eight_label">{{ expObj.familyName }}</div>
|
|
379
|
-
<!-- <div class="title eight_label" style="width: 750px;"></div> -->
|
|
380
|
-
<!-- <div class="eight_label">{{ expObj.totalPrice }}</div> -->
|
|
381
|
-
</div>
|
|
382
|
-
<div class="leftXuhao loop">
|
|
383
|
-
<div class="num">序号</div>
|
|
384
|
-
<div class="name">服务项目</div>
|
|
385
|
-
<div class="day headday">
|
|
386
|
-
<span>护理服务执行日期及时长(分钟)</span>
|
|
387
|
-
<div class="forday">
|
|
388
|
-
<span v-for="i in 31" :key="i">{{ i }}日</span>
|
|
389
|
-
</div>
|
|
390
|
-
</div>
|
|
391
|
-
<!-- <div class="total">床日合计</div> -->
|
|
392
|
-
</div>
|
|
393
|
-
<div v-for="(item, index) in expObj.list" :key="index" class="tr loop">
|
|
394
|
-
<div class="num">{{ index + 1 }}</div>
|
|
395
|
-
<div class="name">{{ item.title }}</div>
|
|
396
|
-
<!-- 当月服务时长单元格合并显示 -->
|
|
397
|
-
<div v-if="item.title == '当月服务时长(小时)'" class="day bodyday merged-cell">
|
|
398
|
-
{{ item.num }}(小时)
|
|
399
|
-
</div>
|
|
400
|
-
<!-- 普通日期单元格 -->
|
|
401
|
-
<div v-else class="day bodyday">
|
|
402
|
-
<div class="forday">
|
|
403
|
-
<template v-for="i in 31">
|
|
404
|
-
<span v-if="Array.isArray(item[`day${i}`])" :key="i">
|
|
405
|
-
<p v-for="(items, index) in item[`day${i}`]" :key="index" style="margin: 0;">
|
|
406
|
-
{{ items }}
|
|
407
|
-
</p>
|
|
408
|
-
</span>
|
|
409
|
-
<span v-else :key="i">{{ item[`day${i}`] }}</span>
|
|
410
|
-
</template>
|
|
411
|
-
</div>
|
|
412
|
-
</div>
|
|
413
|
-
</div>
|
|
414
|
-
</div>
|
|
415
|
-
<div class="handwriting">
|
|
416
|
-
<div class="name">协议服务机构负责人签字:</div>
|
|
417
|
-
<div class="day bodyday">家属确认签字按手印:</div>
|
|
418
|
-
</div>
|
|
419
|
-
<div class="handwriting">
|
|
420
|
-
<div class="name">盖章:</div>
|
|
421
|
-
<div class="day bodyday">日期:</div>
|
|
422
|
-
</div>
|
|
423
|
-
<div class="handwriting">
|
|
424
|
-
<div class="name">日期:</div>
|
|
425
|
-
</div>
|
|
426
|
-
</div>
|
|
427
|
-
<span slot="footer" class="dialog-footer">
|
|
428
|
-
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
429
|
-
<el-button v-print="print" size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
430
|
-
打 印
|
|
431
|
-
</el-button>
|
|
432
|
-
</span>
|
|
433
|
-
</el-dialog>
|
|
434
|
-
|
|
435
|
-
<!-- 导出周期表格 2024-06-07 -->
|
|
436
|
-
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="打印"
|
|
437
|
-
:visible.sync="dialogVisibleExpPrint" width="1200px" :before-close="handleClose">
|
|
438
|
-
<el-form :inline="true" class="demo-form-inline">
|
|
439
|
-
<el-form-item label="时间">
|
|
440
|
-
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" size="small"
|
|
441
|
-
@change="getExpPrint" />
|
|
442
|
-
</el-form-item>
|
|
443
|
-
</el-form>
|
|
444
|
-
<div v-if="startDate" id="printDom1" ref="printDom1" class="exptable exptableprint" border="1">
|
|
445
|
-
<div class="thead" style="font-size: 14px">
|
|
446
|
-
{{ expObjPrint.title }}
|
|
447
|
-
</div>
|
|
448
|
-
<div style="text-align: left; padding: 10px 0">
|
|
449
|
-
结算周期{{ expObjPrint.jszqTime }}
|
|
450
|
-
</div>
|
|
451
|
-
<div class="tbody">
|
|
452
|
-
<div class="tr loop">
|
|
453
|
-
<div class="num" style="width: 55px !important">个人编号</div>
|
|
454
|
-
<div class="" style="width: 45px">姓名</div>
|
|
455
|
-
<div class="" style="flex: 1">身份证</div>
|
|
456
|
-
<div class="" style="flex: 1">参保类型</div>
|
|
457
|
-
<div class="" style="flex: 1">护理类别</div>
|
|
458
|
-
<div class="" style="flex: 1">结算起始日期</div>
|
|
459
|
-
<div class="" style="flex: 1">结算中止日期</div>
|
|
460
|
-
<div class="" style="width: 55px">服务次数</div>
|
|
461
|
-
<div class="" style="width: 62px">实际总金额</div>
|
|
462
|
-
<!-- <div class="" style="width: 45px">总费用</div> -->
|
|
463
|
-
<div class="" style="width: 55px">基金支付</div>
|
|
464
|
-
<div class="day headday" style="width: 100px">
|
|
465
|
-
<span>个人负担</span>
|
|
466
|
-
<div class="forday">
|
|
467
|
-
<span style="width: 50px">个人自费</span>
|
|
468
|
-
<span style="width: 50px">个人自付</span>
|
|
469
|
-
</div>
|
|
470
|
-
</div>
|
|
471
|
-
<div class="" style="flex: 1">不合理费用扣减</div>
|
|
472
|
-
</div>
|
|
473
|
-
<div v-for="(item, index) in expObjPrint.list" :key="index" class="tr loop">
|
|
474
|
-
<div class="num" style="width: 55px !important">
|
|
475
|
-
{{ index + 1 }}
|
|
476
|
-
</div>
|
|
477
|
-
<div class="" style="width: 45px">{{ item.name }}</div>
|
|
478
|
-
<div class="" style="flex: 1">{{ item.idCode }}</div>
|
|
479
|
-
<div class="" style="flex: 1">{{ item.medicalType }}</div>
|
|
480
|
-
<div class="" style="flex: 1">{{ item.hlType }}</div>
|
|
481
|
-
<div class="" style="flex: 1">{{ item.startTime }}</div>
|
|
482
|
-
<div class="" style="flex: 1">{{ item.endTime }}</div>
|
|
483
|
-
<div class="" style="width: 55px">{{ item.clockNum }}</div>
|
|
484
|
-
<div class="" style="width: 62px">{{ item.accountTotal }}</div>
|
|
485
|
-
<!-- <div class="" style="width: 45px">{{ item.totalPrice }}</div> -->
|
|
486
|
-
<div class="" style="width: 55px">{{ item.fundPrice }}</div>
|
|
487
|
-
<div class="day bodyday" style="width: 100px">
|
|
488
|
-
<div class="forday">
|
|
489
|
-
<span style="width: 50px">{{ item.fei }}</span>
|
|
490
|
-
<span style="width: 50px">{{ item.fu }}</span>
|
|
491
|
-
</div>
|
|
492
|
-
</div>
|
|
493
|
-
<div class="" style="flex: 1">{{ item.bhl }}</div>
|
|
494
|
-
</div>
|
|
495
|
-
|
|
496
|
-
<div class="tr loop">
|
|
497
|
-
<div class="num" style="width: 55px !important">合计</div>
|
|
498
|
-
<div class="" style="width: 45px" />
|
|
499
|
-
<div class="" style="flex: 1" />
|
|
500
|
-
<div class="" style="flex: 1" />
|
|
501
|
-
<div class="" style="flex: 1" />
|
|
502
|
-
<div class="" style="flex: 1" />
|
|
503
|
-
<div class="" style="flex: 1" />
|
|
504
|
-
<div class="" style="width: 55px" />
|
|
505
|
-
<div class="" style="width: 62px">{{ totalAmount }}</div>
|
|
506
|
-
<div class="" style="width: 55px">{{ fundAmount }}</div>
|
|
507
|
-
<div class="day bodyday" style="width: 100px">
|
|
508
|
-
<div class="forday">
|
|
509
|
-
<span style="width: 100px">{{ burdenAmount }}</span>
|
|
510
|
-
</div>
|
|
511
|
-
</div>
|
|
512
|
-
<div class="" style="flex: 1" />
|
|
513
|
-
</div>
|
|
514
|
-
</div>
|
|
515
|
-
<div class="handwriting" style="padding: 2px 0">
|
|
516
|
-
<div class="" style="width: 200px; text-align: left">
|
|
517
|
-
护理服务机构负责人签字
|
|
518
|
-
</div>
|
|
519
|
-
<div class="" style="width: 200px; text-align: left">
|
|
520
|
-
承办单位审核人签字
|
|
521
|
-
</div>
|
|
522
|
-
<div class="" style="width: 200px; text-align: left">
|
|
523
|
-
经办单位复核人签字
|
|
524
|
-
</div>
|
|
525
|
-
</div>
|
|
526
|
-
<div class="handwriting">
|
|
527
|
-
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
528
|
-
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
529
|
-
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
530
|
-
</div>
|
|
531
|
-
</div>
|
|
532
|
-
<span slot="footer" class="dialog-footer">
|
|
533
|
-
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
534
|
-
<el-button size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
535
|
-
打 印
|
|
536
|
-
</el-button>
|
|
537
|
-
</span>
|
|
538
|
-
</el-dialog>
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
<th
|
|
560
|
-
<th
|
|
561
|
-
<th
|
|
562
|
-
<th
|
|
563
|
-
<th
|
|
564
|
-
<th
|
|
565
|
-
<th
|
|
566
|
-
<th
|
|
567
|
-
<th
|
|
568
|
-
<th
|
|
569
|
-
<th
|
|
570
|
-
<th
|
|
571
|
-
<th
|
|
572
|
-
<th
|
|
573
|
-
<th
|
|
574
|
-
<th
|
|
575
|
-
<th
|
|
576
|
-
<th
|
|
577
|
-
<th
|
|
578
|
-
<th
|
|
579
|
-
<th
|
|
580
|
-
<th
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
<td style="width: 50px;">{{ item.
|
|
587
|
-
<td style="width: 50px;">{{ item.
|
|
588
|
-
<td style="width: 50px;">{{ item.
|
|
589
|
-
<td style="width: 50px;">{{ item.
|
|
590
|
-
<td style="width: 50px;">{{ item.
|
|
591
|
-
<td style="width: 50px;">{{ item.
|
|
592
|
-
<td style="width: 50px;">{{ item.
|
|
593
|
-
<td style="width: 50px;">{{ item.
|
|
594
|
-
<td style="width: 50px;">{{ item.
|
|
595
|
-
<td style="width: 50px;">{{ item.
|
|
596
|
-
<td style="width: 50px;">{{ item.
|
|
597
|
-
<td style="width: 50px;">{{ item.
|
|
598
|
-
<td style="width: 50px;">{{ item.
|
|
599
|
-
<td style="width: 50px;">{{ item.
|
|
600
|
-
<td style="width: 50px;">{{ item.
|
|
601
|
-
<td style="width: 50px;">{{ item.
|
|
602
|
-
<td style="width: 50px;">{{ item.
|
|
603
|
-
<td style="width: 50px;">{{ item.
|
|
604
|
-
<td style="width: 50px;">{{ item.
|
|
605
|
-
<td style="width: 50px;">{{ item.
|
|
606
|
-
<td style="width: 50px;">{{ item.
|
|
607
|
-
<td style="width: 50px;">{{ item.
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
<div style="flex: 1"
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
<el-button size="small"
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
</
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
import
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
this.listQuery.
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
},
|
|
763
|
-
|
|
764
|
-
this.
|
|
765
|
-
this.startDate = ''
|
|
766
|
-
},
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
elink.
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
elink.
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
.
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
elink.
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
elink.
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
this.
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
.
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
elink.
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
elink.
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
this.
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
this.
|
|
890
|
-
this.
|
|
891
|
-
this.
|
|
892
|
-
this.
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
this.
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
}
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
.
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
}
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
}
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
.
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
.
|
|
1114
|
-
width:
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
flex
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
}
|
|
1140
|
-
|
|
1141
|
-
.
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
}
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
.
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
width:
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
.el-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
.el-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
table-layout: auto !important;
|
|
1238
|
-
}
|
|
1239
|
-
|
|
1240
|
-
|
|
1
|
+
<template>
|
|
2
|
+
<div class="app-container">
|
|
3
|
+
<div class="filter-container">
|
|
4
|
+
<el-form ref="listQuery" :inline="true" :model="listQuery" class="demo-form-inline">
|
|
5
|
+
<!-- <el-form-item label="机构名称" prop="unitName">
|
|
6
|
+
<el-input
|
|
7
|
+
size="small"
|
|
8
|
+
v-model="listQuery.unitName"
|
|
9
|
+
placeholder="请输入机构名称"
|
|
10
|
+
></el-input>
|
|
11
|
+
</el-form-item> -->
|
|
12
|
+
<el-form-item label="客户姓名" prop="name">
|
|
13
|
+
<el-select v-model="listQuery.familyId" style="width: 100%" clearable filterable size="small"
|
|
14
|
+
class="filter-item" placeholder="请选择客户">
|
|
15
|
+
<el-option v-for="(item, index) in customerData" :key="index" :label="item.label" :value="item.value" />
|
|
16
|
+
</el-select>
|
|
17
|
+
</el-form-item>
|
|
18
|
+
<el-form-item label="机构名称" prop="name">
|
|
19
|
+
<el-select v-model="listQuery.unitName" style="width: 100%" clearable filterable size="small"
|
|
20
|
+
class="filter-item" placeholder="请选择机构名称">
|
|
21
|
+
<el-option v-for="(item, index) in institutionList" :key="index" :label="item.label" :value="item.label" />
|
|
22
|
+
</el-select>
|
|
23
|
+
</el-form-item>
|
|
24
|
+
<el-form-item label="计划流水号" prop="orderNo">
|
|
25
|
+
<el-input v-model="listQuery.orderNo" clearable size="small" placeholder="请输入计划流水号" />
|
|
26
|
+
</el-form-item>
|
|
27
|
+
<el-form-item label="月份">
|
|
28
|
+
<el-date-picker v-model="listQuery.orderYearMonth" size="small" value-format="yyyy-MM" type="month"
|
|
29
|
+
placeholder="选择月" />
|
|
30
|
+
<!-- <el-date-picker
|
|
31
|
+
@change="changeTime"
|
|
32
|
+
v-model="time"
|
|
33
|
+
clearable
|
|
34
|
+
size="small"
|
|
35
|
+
value-format="yyyy-MM-dd"
|
|
36
|
+
type="daterange"
|
|
37
|
+
range-separator="至"
|
|
38
|
+
start-placeholder="开始时间"
|
|
39
|
+
end-placeholder="结束时间"
|
|
40
|
+
>
|
|
41
|
+
</el-date-picker> -->
|
|
42
|
+
</el-form-item>
|
|
43
|
+
<el-form-item>
|
|
44
|
+
<el-button size="small" type="primary" @click="onSubmit">查询</el-button>
|
|
45
|
+
</el-form-item>
|
|
46
|
+
<el-form-item>
|
|
47
|
+
<el-button size="small" type="warning" @click="resetting('listQuery')">重置</el-button>
|
|
48
|
+
</el-form-item>
|
|
49
|
+
<el-form-item>
|
|
50
|
+
<el-button size="small" type="primary" @click="dialogVisibleExp = true">结算周期导出</el-button>
|
|
51
|
+
</el-form-item>
|
|
52
|
+
<el-form-item>
|
|
53
|
+
<el-button size="small" type="primary" @click="dialogVisibleExp_two = true">新结算周期导出</el-button>
|
|
54
|
+
</el-form-item>
|
|
55
|
+
<el-form-item>
|
|
56
|
+
<el-button size="small" type="success" @click="expExcel3">
|
|
57
|
+
结算周期打印
|
|
58
|
+
</el-button>
|
|
59
|
+
</el-form-item>
|
|
60
|
+
<el-form-item>
|
|
61
|
+
<el-button size="small" type="success" @click="expExcel4">
|
|
62
|
+
新结算周期打印
|
|
63
|
+
</el-button>
|
|
64
|
+
</el-form-item>
|
|
65
|
+
</el-form>
|
|
66
|
+
</div>
|
|
67
|
+
<el-table border height="65vh" :data="list" style="width: 100%">
|
|
68
|
+
<el-table-column :label="'客户姓名'" align="center">
|
|
69
|
+
<template slot-scope="{ row }">
|
|
70
|
+
<span>{{ row.familyName }}</span>
|
|
71
|
+
</template>
|
|
72
|
+
</el-table-column>
|
|
73
|
+
<el-table-column :label="'客户失能等级'" align="center" width="150">
|
|
74
|
+
<template slot-scope="{ row }">
|
|
75
|
+
<el-tag v-if="row.familyLv == '06'" type="success">重度失能ⅠⅠⅠ级</el-tag>
|
|
76
|
+
<el-tag v-if="row.familyLv == '05'" type="success">重度失能ⅠⅠ级</el-tag>
|
|
77
|
+
<el-tag v-if="row.familyLv == '04'" type="success">重度失能Ⅰ级</el-tag>
|
|
78
|
+
<el-tag v-if="row.familyLv == '03'" type="success">中度失能</el-tag>
|
|
79
|
+
<el-tag v-if="row.familyLv == '02'" type="success">轻度失能</el-tag>
|
|
80
|
+
<el-tag v-if="row.familyLv == '01'" type="success">基本正常</el-tag>
|
|
81
|
+
</template>
|
|
82
|
+
</el-table-column>
|
|
83
|
+
<el-table-column :label="'计划流水号'" align="center">
|
|
84
|
+
<template slot-scope="{ row }">
|
|
85
|
+
<span>{{ row.orderNo }}</span>
|
|
86
|
+
</template>
|
|
87
|
+
</el-table-column>
|
|
88
|
+
<el-table-column :label="'护理机构'" align="center">
|
|
89
|
+
<template slot-scope="{ row }">
|
|
90
|
+
<span>{{ row.unitName ? row.unitName : "-" }}</span>
|
|
91
|
+
</template>
|
|
92
|
+
</el-table-column>
|
|
93
|
+
<el-table-column :label="'机构类型'" align="center">
|
|
94
|
+
<template slot-scope="{ row }">
|
|
95
|
+
<el-tag size="medium">{{
|
|
96
|
+
row.unitType == "01"
|
|
97
|
+
? "上门护理机构"
|
|
98
|
+
: row.unitType == "02"
|
|
99
|
+
? "养老机构"
|
|
100
|
+
: row.unitType == "03"
|
|
101
|
+
? "医疗机构"
|
|
102
|
+
: row.unitType == "04"
|
|
103
|
+
? "辅助器具机构"
|
|
104
|
+
: "-"
|
|
105
|
+
}}</el-tag>
|
|
106
|
+
</template>
|
|
107
|
+
</el-table-column>
|
|
108
|
+
<el-table-column :label="'长期护理保险总费用'" align="center">
|
|
109
|
+
<template slot-scope="{ row }">
|
|
110
|
+
<span>{{ row.sumAccount ? row.sumAccount : "0" }}元</span>
|
|
111
|
+
</template>
|
|
112
|
+
</el-table-column>
|
|
113
|
+
<el-table-column :label="'客户所需支付金额'" align="center">
|
|
114
|
+
<template slot-scope="{ row }">
|
|
115
|
+
<span>{{ row.userAccount ? row.userAccount : "0" }}元</span>
|
|
116
|
+
</template>
|
|
117
|
+
</el-table-column>
|
|
118
|
+
<el-table-column :label="'基金所需支付金额'" align="center">
|
|
119
|
+
<template slot-scope="{ row }">
|
|
120
|
+
<span>{{ row.unitAccount ? row.unitAccount : "0" }}元</span>
|
|
121
|
+
</template>
|
|
122
|
+
</el-table-column>
|
|
123
|
+
<el-table-column :label="'实际总金额'" align="center">
|
|
124
|
+
<template slot-scope="{ row }">
|
|
125
|
+
<span>{{ row.accountTotal ? row.accountTotal : "0" }}元</span>
|
|
126
|
+
</template>
|
|
127
|
+
</el-table-column>
|
|
128
|
+
<el-table-column :label="'更新时间'" align="center">
|
|
129
|
+
<template slot-scope="{ row }">
|
|
130
|
+
<span>{{ row.createTime }}</span>
|
|
131
|
+
</template>
|
|
132
|
+
</el-table-column>
|
|
133
|
+
|
|
134
|
+
<el-table-column :label="'操作'" align="center" width="250" class-name="small-padding fixed-width">
|
|
135
|
+
<template slot-scope="{ row, $index }">
|
|
136
|
+
<el-button size="mini" type="primary" @click="edit(row, $index)">
|
|
137
|
+
详情
|
|
138
|
+
</el-button>
|
|
139
|
+
<el-button v-if="row.trtSetlId" size="mini" type="success" @click="revoke(row, $index)">
|
|
140
|
+
费用申请撤销
|
|
141
|
+
</el-button>
|
|
142
|
+
<el-button size="mini" type="success" @click="expExcel(row, $index)">
|
|
143
|
+
导出
|
|
144
|
+
</el-button>
|
|
145
|
+
<el-button style="margin-top: 8px" size="mini" type="success" @click="expExcel2(row, $index)">
|
|
146
|
+
打印
|
|
147
|
+
</el-button>
|
|
148
|
+
</template>
|
|
149
|
+
</el-table-column>
|
|
150
|
+
</el-table>
|
|
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%">
|
|
155
|
+
<el-form ref="dataForm" :rules="rules" :model="temp" label-position="right" label-width="170px">
|
|
156
|
+
<el-row :gutter="20">
|
|
157
|
+
<el-col :span="12">
|
|
158
|
+
<el-form-item style="margin-bottom: 0px" label="客户姓名">
|
|
159
|
+
<span>{{ temp.familyName }}</span>
|
|
160
|
+
</el-form-item>
|
|
161
|
+
</el-col>
|
|
162
|
+
<el-col :span="12">
|
|
163
|
+
<el-form-item style="margin-bottom: 0px" label="客户失能等级">
|
|
164
|
+
<el-tag v-if="temp.familyLv == '06'" type="success">重度失能ⅠⅠⅠ级</el-tag>
|
|
165
|
+
<el-tag v-if="temp.familyLv == '05'" type="success">重度失能ⅠⅠ级</el-tag>
|
|
166
|
+
<el-tag v-if="temp.familyLv == '04'" type="success">重度失能Ⅰ级</el-tag>
|
|
167
|
+
<el-tag v-if="temp.familyLv == '03'" type="success">中度失能</el-tag>
|
|
168
|
+
<el-tag v-if="temp.familyLv == '02'" type="success">轻度失能</el-tag>
|
|
169
|
+
<el-tag v-if="temp.familyLv == '01'" type="success">基本正常</el-tag>
|
|
170
|
+
</el-form-item>
|
|
171
|
+
</el-col>
|
|
172
|
+
<el-col :span="12">
|
|
173
|
+
<el-form-item style="margin-bottom: 0px" label="计划流水号">
|
|
174
|
+
<span>{{ temp.orderNo }}</span>
|
|
175
|
+
</el-form-item>
|
|
176
|
+
</el-col>
|
|
177
|
+
<el-col :span="12">
|
|
178
|
+
<el-form-item style="margin-bottom: 0px" label="护理机构">
|
|
179
|
+
<span>{{ temp.unitName }}</span>
|
|
180
|
+
</el-form-item>
|
|
181
|
+
</el-col>
|
|
182
|
+
<el-col :span="12">
|
|
183
|
+
<el-form-item style="margin-bottom: 0px" label="机构类型">
|
|
184
|
+
<!-- <span>{{
|
|
185
|
+
temp.unitType == "1"
|
|
186
|
+
? "养老机构"
|
|
187
|
+
: temp.unitType == "2"
|
|
188
|
+
? "护理机构"
|
|
189
|
+
: "-"
|
|
190
|
+
}}</span> -->
|
|
191
|
+
<el-tag size="medium">{{
|
|
192
|
+
temp.unitType == "01"
|
|
193
|
+
? "上门护理机构"
|
|
194
|
+
: temp.unitType == "02"
|
|
195
|
+
? "养老机构"
|
|
196
|
+
: temp.unitType == "03"
|
|
197
|
+
? "医疗机构"
|
|
198
|
+
: temp.unitType == "04"
|
|
199
|
+
? "辅助器具机构"
|
|
200
|
+
: "-"
|
|
201
|
+
}}</el-tag>
|
|
202
|
+
</el-form-item>
|
|
203
|
+
</el-col>
|
|
204
|
+
<el-col :span="12">
|
|
205
|
+
<el-form-item style="margin-bottom: 0px" label="实际总金额">
|
|
206
|
+
<span>{{ temp.accountTotal }}元</span>
|
|
207
|
+
</el-form-item>
|
|
208
|
+
</el-col>
|
|
209
|
+
<el-col :span="12">
|
|
210
|
+
<el-form-item style="margin-bottom: 0px" label="客户所需支付金额">
|
|
211
|
+
<span>{{ temp.userAccount }}元</span>
|
|
212
|
+
</el-form-item>
|
|
213
|
+
</el-col>
|
|
214
|
+
<el-col :span="12">
|
|
215
|
+
<el-form-item style="margin-bottom: 0px" label="基金所需支付金额">
|
|
216
|
+
<span>{{ temp.unitAccount }}元</span>
|
|
217
|
+
</el-form-item>
|
|
218
|
+
</el-col>
|
|
219
|
+
<el-col :span="12">
|
|
220
|
+
<el-form-item style="margin-bottom: 0px" label="更新时间">
|
|
221
|
+
<span>{{ temp.createTime }}</span>
|
|
222
|
+
</el-form-item>
|
|
223
|
+
</el-col>
|
|
224
|
+
</el-row>
|
|
225
|
+
</el-form>
|
|
226
|
+
<div slot="footer" class="dialog-footer">
|
|
227
|
+
<el-button type="primary" size="mini" @click="dialogFormVisible = false">
|
|
228
|
+
关 闭
|
|
229
|
+
</el-button>
|
|
230
|
+
<!-- <el-button size="mini" type="primary" @click="dialogStatus === 'create' ? createData() : updateData()">
|
|
231
|
+
确 认
|
|
232
|
+
</el-button> -->
|
|
233
|
+
</div>
|
|
234
|
+
</el-dialog>
|
|
235
|
+
|
|
236
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="导出" :visible.sync="dialogVisibleExp"
|
|
237
|
+
width="600px" :before-close="handleClose">
|
|
238
|
+
<el-form :inline="true" class="demo-form-inline">
|
|
239
|
+
<el-form-item label="提示:">
|
|
240
|
+
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
241
|
+
</el-form-item>
|
|
242
|
+
<el-form-item label="时间">
|
|
243
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" />
|
|
244
|
+
</el-form-item>
|
|
245
|
+
</el-form>
|
|
246
|
+
<span slot="footer" class="dialog-footer">
|
|
247
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
248
|
+
<el-button size="small" type="primary" :loading="loadExp" @click="expExcelForm">
|
|
249
|
+
导 出
|
|
250
|
+
</el-button>
|
|
251
|
+
</span>
|
|
252
|
+
</el-dialog>
|
|
253
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="新结算单导出"
|
|
254
|
+
:visible.sync="dialogVisibleExp_two" width="600px" :before-close="handleClose">
|
|
255
|
+
<el-form :inline="true" class="demo-form-inline">
|
|
256
|
+
<el-form-item label="提示:">
|
|
257
|
+
<el-link :underline="false" type="primary">选择的开始日期和结束日期请将数据的入录时间包含起来,结束日期选后一天</el-link>
|
|
258
|
+
</el-form-item>
|
|
259
|
+
<el-form-item label="时间">
|
|
260
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" />
|
|
261
|
+
</el-form-item>
|
|
262
|
+
</el-form>
|
|
263
|
+
<span slot="footer" class="dialog-footer">
|
|
264
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
265
|
+
<el-button size="small" type="primary" :loading="loadExp" @click="expExcelForm_two">
|
|
266
|
+
导 出
|
|
267
|
+
</el-button>
|
|
268
|
+
</span>
|
|
269
|
+
</el-dialog>
|
|
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">
|
|
272
|
+
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
273
|
+
<div class="thead">
|
|
274
|
+
{{ expObj.orderYearMonth }}
|
|
275
|
+
</div>
|
|
276
|
+
<div class="tbody">
|
|
277
|
+
<div class="tr eight">
|
|
278
|
+
<div class="title eight_label">参保人姓名</div>
|
|
279
|
+
<div class="eight_label">{{ expObj.personName }}</div>
|
|
280
|
+
<div class="title eight_label">身份证</div>
|
|
281
|
+
<div class="eight_label">{{ expObj.personIdCode }}</div>
|
|
282
|
+
<div class="title eight_label">年龄</div>
|
|
283
|
+
<div>
|
|
284
|
+
{{ expObj.personAge }}
|
|
285
|
+
</div>
|
|
286
|
+
<div class="title eight_label">参保类型</div>
|
|
287
|
+
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
288
|
+
|
|
289
|
+
<div class="title eight_label">制表人</div>
|
|
290
|
+
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
291
|
+
</div>
|
|
292
|
+
<div class="tr eight">
|
|
293
|
+
<div class="title eight_label">所属参保区划</div>
|
|
294
|
+
<div class="eight_label">{{ expObj.medicalCounty }}</div>
|
|
295
|
+
<div class="title eight_label">失能等级</div>
|
|
296
|
+
<div class="eight_label">{{ expObj.lv }}</div>
|
|
297
|
+
<div class="title eight_label">家属姓名</div>
|
|
298
|
+
<div class="eight_label">{{ expObj.familyName }}</div>
|
|
299
|
+
<!-- <div class="title eight_label" style="width: 750px;"></div> -->
|
|
300
|
+
<!-- <div class="eight_label">{{ expObj.totalPrice }}</div> -->
|
|
301
|
+
</div>
|
|
302
|
+
<div class="leftXuhao loop">
|
|
303
|
+
<div class="num">序号</div>
|
|
304
|
+
<div class="name">服务项目</div>
|
|
305
|
+
<div class="day headday">
|
|
306
|
+
<span>护理服务执行日期及次数</span>
|
|
307
|
+
<div class="forday">
|
|
308
|
+
<span v-for="i in 31" :key="i">{{ i }}日</span>
|
|
309
|
+
</div>
|
|
310
|
+
</div>
|
|
311
|
+
<div class="total">床日合计</div>
|
|
312
|
+
</div>
|
|
313
|
+
<div v-for="(item, index) in expObj.list" :key="index" class="tr loop">
|
|
314
|
+
<div class="num">{{ index + 1 }}</div>
|
|
315
|
+
<div class="name">{{ item.title }}</div>
|
|
316
|
+
<div class="day bodyday">
|
|
317
|
+
<div class="forday">
|
|
318
|
+
<template v-for="i in 31">
|
|
319
|
+
<span v-if="Array.isArray(item[`day${i}`])" :key="i">
|
|
320
|
+
<p v-for="(items, index) in item[`day${i}`]" :key="index" style="margin: 0;">
|
|
321
|
+
{{ items }}
|
|
322
|
+
</p>
|
|
323
|
+
</span>
|
|
324
|
+
<span v-else :key="i">{{ item[`day${i}`] }}</span>
|
|
325
|
+
</template>
|
|
326
|
+
</div>
|
|
327
|
+
</div>
|
|
328
|
+
<div class="total">{{ item.num }}</div>
|
|
329
|
+
</div>
|
|
330
|
+
</div>
|
|
331
|
+
<div class="handwriting">
|
|
332
|
+
<div class="name">协议服务机构负责人签字:</div>
|
|
333
|
+
<div class="day bodyday">家属确认签字按手印:</div>
|
|
334
|
+
</div>
|
|
335
|
+
<div class="handwriting">
|
|
336
|
+
<div class="name">盖章:</div>
|
|
337
|
+
<div class="day bodyday">日期:</div>
|
|
338
|
+
</div>
|
|
339
|
+
<div class="handwriting">
|
|
340
|
+
<div class="name">日期:</div>
|
|
341
|
+
</div>
|
|
342
|
+
</div>
|
|
343
|
+
<span slot="footer" class="dialog-footer">
|
|
344
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
345
|
+
<el-button v-print="print" size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
346
|
+
打 印
|
|
347
|
+
</el-button>
|
|
348
|
+
</span>
|
|
349
|
+
</el-dialog>
|
|
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">
|
|
352
|
+
<div id="printDom1" ref="printDom1" class="exptable" border="1">
|
|
353
|
+
<div class="thead">
|
|
354
|
+
{{ expObj.orderYearMonth }}
|
|
355
|
+
</div>
|
|
356
|
+
<div class="tbody">
|
|
357
|
+
<div class="tr eight">
|
|
358
|
+
<div class="title eight_label">参保人姓名</div>
|
|
359
|
+
<div class="eight_label">{{ expObj.personName }}</div>
|
|
360
|
+
<div class="title eight_label">身份证</div>
|
|
361
|
+
<div class="eight_label">{{ expObj.personIdCode }}</div>
|
|
362
|
+
<div class="title eight_label">年龄</div>
|
|
363
|
+
<div>
|
|
364
|
+
{{ expObj.personAge }}
|
|
365
|
+
</div>
|
|
366
|
+
<div class="title eight_label">参保类型</div>
|
|
367
|
+
<div class="eight_label">{{ expObj.medicalType }}</div>
|
|
368
|
+
|
|
369
|
+
<div class="title eight_label">制表人</div>
|
|
370
|
+
<div class="eight_label">{{ expObj.unitName }}</div>
|
|
371
|
+
</div>
|
|
372
|
+
<div class="tr eight">
|
|
373
|
+
<div class="title eight_label">所属参保区划</div>
|
|
374
|
+
<div class="eight_label">{{ expObj.medicalCounty }}</div>
|
|
375
|
+
<div class="title eight_label">失能等级</div>
|
|
376
|
+
<div class="eight_label">{{ expObj.lv }}</div>
|
|
377
|
+
<div class="title eight_label">家属姓名</div>
|
|
378
|
+
<div class="eight_label">{{ expObj.familyName }}</div>
|
|
379
|
+
<!-- <div class="title eight_label" style="width: 750px;"></div> -->
|
|
380
|
+
<!-- <div class="eight_label">{{ expObj.totalPrice }}</div> -->
|
|
381
|
+
</div>
|
|
382
|
+
<div class="leftXuhao loop">
|
|
383
|
+
<div class="num">序号</div>
|
|
384
|
+
<div class="name">服务项目</div>
|
|
385
|
+
<div class="day headday">
|
|
386
|
+
<span>护理服务执行日期及时长(分钟)</span>
|
|
387
|
+
<div class="forday">
|
|
388
|
+
<span v-for="i in 31" :key="i">{{ i }}日</span>
|
|
389
|
+
</div>
|
|
390
|
+
</div>
|
|
391
|
+
<!-- <div class="total">床日合计</div> -->
|
|
392
|
+
</div>
|
|
393
|
+
<div v-for="(item, index) in expObj.list" :key="index" class="tr loop">
|
|
394
|
+
<div class="num">{{ index + 1 }}</div>
|
|
395
|
+
<div class="name">{{ item.title }}</div>
|
|
396
|
+
<!-- 当月服务时长单元格合并显示 -->
|
|
397
|
+
<div v-if="item.title == '当月服务时长(小时)'" class="day bodyday merged-cell">
|
|
398
|
+
{{ item.num }}(小时)
|
|
399
|
+
</div>
|
|
400
|
+
<!-- 普通日期单元格 -->
|
|
401
|
+
<div v-else class="day bodyday">
|
|
402
|
+
<div class="forday">
|
|
403
|
+
<template v-for="i in 31">
|
|
404
|
+
<span v-if="Array.isArray(item[`day${i}`])" :key="i">
|
|
405
|
+
<p v-for="(items, index) in item[`day${i}`]" :key="index" style="margin: 0;">
|
|
406
|
+
{{ items }}
|
|
407
|
+
</p>
|
|
408
|
+
</span>
|
|
409
|
+
<span v-else :key="i">{{ item[`day${i}`] }}</span>
|
|
410
|
+
</template>
|
|
411
|
+
</div>
|
|
412
|
+
</div>
|
|
413
|
+
</div>
|
|
414
|
+
</div>
|
|
415
|
+
<div class="handwriting">
|
|
416
|
+
<div class="name">协议服务机构负责人签字:</div>
|
|
417
|
+
<div class="day bodyday">家属确认签字按手印:</div>
|
|
418
|
+
</div>
|
|
419
|
+
<div class="handwriting">
|
|
420
|
+
<div class="name">盖章:</div>
|
|
421
|
+
<div class="day bodyday">日期:</div>
|
|
422
|
+
</div>
|
|
423
|
+
<div class="handwriting">
|
|
424
|
+
<div class="name">日期:</div>
|
|
425
|
+
</div>
|
|
426
|
+
</div>
|
|
427
|
+
<span slot="footer" class="dialog-footer">
|
|
428
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
429
|
+
<el-button v-print="print" size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
430
|
+
打 印
|
|
431
|
+
</el-button>
|
|
432
|
+
</span>
|
|
433
|
+
</el-dialog>
|
|
434
|
+
|
|
435
|
+
<!-- 导出周期表格 2024-06-07 -->
|
|
436
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="打印"
|
|
437
|
+
:visible.sync="dialogVisibleExpPrint" width="1200px" :before-close="handleClose">
|
|
438
|
+
<el-form :inline="true" class="demo-form-inline">
|
|
439
|
+
<el-form-item label="时间">
|
|
440
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" size="small"
|
|
441
|
+
@change="getExpPrint" />
|
|
442
|
+
</el-form-item>
|
|
443
|
+
</el-form>
|
|
444
|
+
<div v-if="startDate" id="printDom1" ref="printDom1" class="exptable exptableprint" border="1">
|
|
445
|
+
<div class="thead" style="font-size: 14px">
|
|
446
|
+
{{ expObjPrint.title }}
|
|
447
|
+
</div>
|
|
448
|
+
<div style="text-align: left; padding: 10px 0">
|
|
449
|
+
结算周期{{ expObjPrint.jszqTime }}
|
|
450
|
+
</div>
|
|
451
|
+
<div class="tbody">
|
|
452
|
+
<div class="tr loop">
|
|
453
|
+
<div class="num" style="width: 55px !important">个人编号</div>
|
|
454
|
+
<div class="" style="width: 45px">姓名</div>
|
|
455
|
+
<div class="" style="flex: 1">身份证</div>
|
|
456
|
+
<div class="" style="flex: 1">参保类型</div>
|
|
457
|
+
<div class="" style="flex: 1">护理类别</div>
|
|
458
|
+
<div class="" style="flex: 1">结算起始日期</div>
|
|
459
|
+
<div class="" style="flex: 1">结算中止日期</div>
|
|
460
|
+
<div class="" style="width: 55px">服务次数</div>
|
|
461
|
+
<div class="" style="width: 62px">实际总金额</div>
|
|
462
|
+
<!-- <div class="" style="width: 45px">总费用</div> -->
|
|
463
|
+
<div class="" style="width: 55px">基金支付</div>
|
|
464
|
+
<div class="day headday" style="width: 100px">
|
|
465
|
+
<span>个人负担</span>
|
|
466
|
+
<div class="forday">
|
|
467
|
+
<span style="width: 50px">个人自费</span>
|
|
468
|
+
<span style="width: 50px">个人自付</span>
|
|
469
|
+
</div>
|
|
470
|
+
</div>
|
|
471
|
+
<div class="" style="flex: 1">不合理费用扣减</div>
|
|
472
|
+
</div>
|
|
473
|
+
<div v-for="(item, index) in expObjPrint.list" :key="index" class="tr loop">
|
|
474
|
+
<div class="num" style="width: 55px !important">
|
|
475
|
+
{{ index + 1 }}
|
|
476
|
+
</div>
|
|
477
|
+
<div class="" style="width: 45px">{{ item.name }}</div>
|
|
478
|
+
<div class="" style="flex: 1">{{ item.idCode }}</div>
|
|
479
|
+
<div class="" style="flex: 1">{{ item.medicalType }}</div>
|
|
480
|
+
<div class="" style="flex: 1">{{ item.hlType }}</div>
|
|
481
|
+
<div class="" style="flex: 1">{{ item.startTime }}</div>
|
|
482
|
+
<div class="" style="flex: 1">{{ item.endTime }}</div>
|
|
483
|
+
<div class="" style="width: 55px">{{ item.clockNum }}</div>
|
|
484
|
+
<div class="" style="width: 62px">{{ item.accountTotal }}</div>
|
|
485
|
+
<!-- <div class="" style="width: 45px">{{ item.totalPrice }}</div> -->
|
|
486
|
+
<div class="" style="width: 55px">{{ item.fundPrice }}</div>
|
|
487
|
+
<div class="day bodyday" style="width: 100px">
|
|
488
|
+
<div class="forday">
|
|
489
|
+
<span style="width: 50px">{{ item.fei }}</span>
|
|
490
|
+
<span style="width: 50px">{{ item.fu }}</span>
|
|
491
|
+
</div>
|
|
492
|
+
</div>
|
|
493
|
+
<div class="" style="flex: 1">{{ item.bhl }}</div>
|
|
494
|
+
</div>
|
|
495
|
+
|
|
496
|
+
<div class="tr loop">
|
|
497
|
+
<div class="num" style="width: 55px !important">合计</div>
|
|
498
|
+
<div class="" style="width: 45px" />
|
|
499
|
+
<div class="" style="flex: 1" />
|
|
500
|
+
<div class="" style="flex: 1" />
|
|
501
|
+
<div class="" style="flex: 1" />
|
|
502
|
+
<div class="" style="flex: 1" />
|
|
503
|
+
<div class="" style="flex: 1" />
|
|
504
|
+
<div class="" style="width: 55px" />
|
|
505
|
+
<div class="" style="width: 62px">{{ totalAmount }}</div>
|
|
506
|
+
<div class="" style="width: 55px">{{ fundAmount }}</div>
|
|
507
|
+
<div class="day bodyday" style="width: 100px">
|
|
508
|
+
<div class="forday">
|
|
509
|
+
<span style="width: 100px">{{ burdenAmount }}</span>
|
|
510
|
+
</div>
|
|
511
|
+
</div>
|
|
512
|
+
<div class="" style="flex: 1" />
|
|
513
|
+
</div>
|
|
514
|
+
</div>
|
|
515
|
+
<div class="handwriting" style="padding: 2px 0">
|
|
516
|
+
<div class="" style="width: 200px; text-align: left">
|
|
517
|
+
护理服务机构负责人签字
|
|
518
|
+
</div>
|
|
519
|
+
<div class="" style="width: 200px; text-align: left">
|
|
520
|
+
承办单位审核人签字
|
|
521
|
+
</div>
|
|
522
|
+
<div class="" style="width: 200px; text-align: left">
|
|
523
|
+
经办单位复核人签字
|
|
524
|
+
</div>
|
|
525
|
+
</div>
|
|
526
|
+
<div class="handwriting">
|
|
527
|
+
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
528
|
+
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
529
|
+
<div class="" style="width: 200px; text-align: left">盖章</div>
|
|
530
|
+
</div>
|
|
531
|
+
</div>
|
|
532
|
+
<span slot="footer" class="dialog-footer">
|
|
533
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
534
|
+
<el-button size="small" type="primary" :loading="loadExp" @click="onPrint">
|
|
535
|
+
打 印
|
|
536
|
+
</el-button>
|
|
537
|
+
</span>
|
|
538
|
+
</el-dialog>
|
|
539
|
+
|
|
540
|
+
<el-dialog :close-on-click-modal="false" :close-on-press-escape="false" title="新结算单打印"
|
|
541
|
+
:visible.sync="dialogVisibleExpPrint_two" width="100%" :before-close="handleClose">
|
|
542
|
+
<el-form :inline="true" class="demo-form-inline">
|
|
543
|
+
<el-form-item label="时间">
|
|
544
|
+
<el-date-picker v-model="startDate" type="month" value-format="yyyy-MM" placeholder="选择月" size="small"
|
|
545
|
+
@change="getExpPrint_new" />
|
|
546
|
+
</el-form-item>
|
|
547
|
+
</el-form>
|
|
548
|
+
<div v-if="startDate" id="printDom2" ref="printDom2" style="padding: 20px">
|
|
549
|
+
<div style="font-size: 18px; font-weight: bold; text-align: center; margin-bottom: 10px">
|
|
550
|
+
{{ expObjPrintNew.title }}
|
|
551
|
+
</div>
|
|
552
|
+
<div style="text-align: left; margin-bottom: 10px; font-size: 12px">
|
|
553
|
+
结算周期: {{ expObjPrintNew.jszqTime }}
|
|
554
|
+
</div>
|
|
555
|
+
<table border="1" cellspacing="0" cellpadding="5"
|
|
556
|
+
style="width:100%; border-collapse: collapse; font-size: 10px">
|
|
557
|
+
<thead>
|
|
558
|
+
<tr style="background-color: #f0f0f0">
|
|
559
|
+
<th>编号</th>
|
|
560
|
+
<th>姓名</th>
|
|
561
|
+
<th>身份证</th>
|
|
562
|
+
<th>重度等级</th>
|
|
563
|
+
<th>参保类型</th>
|
|
564
|
+
<th>护理类别</th>
|
|
565
|
+
<th>结算起始日期</th>
|
|
566
|
+
<th>结算中止日期</th>
|
|
567
|
+
<th>死亡时间</th>
|
|
568
|
+
<th>转出机构时间</th>
|
|
569
|
+
<th>基金支付</th>
|
|
570
|
+
<th>单价</th>
|
|
571
|
+
<th>重度服务时长</th>
|
|
572
|
+
<th>实际服务时长</th>
|
|
573
|
+
<th>统筹支付金额</th>
|
|
574
|
+
<th>参保地</th>
|
|
575
|
+
<th>护理员姓名</th>
|
|
576
|
+
<th>住院起始日期</th>
|
|
577
|
+
<th>是否当月新增</th>
|
|
578
|
+
<th>新增时间</th>
|
|
579
|
+
<th>参保人居住区域</th>
|
|
580
|
+
<th>参保人居住地址</th>
|
|
581
|
+
<th>备注</th>
|
|
582
|
+
</tr>
|
|
583
|
+
</thead>
|
|
584
|
+
<tbody>
|
|
585
|
+
<tr v-for="(item, index) in expObjPrintNew.list" :key="index">
|
|
586
|
+
<td style="width: 50px;">{{ item.familyNo }}</td>
|
|
587
|
+
<td style="width: 50px;">{{ item.familyName }}</td>
|
|
588
|
+
<td style="width: 50px;">{{ item.familyIdCode }}</td>
|
|
589
|
+
<td style="width: 50px;">{{ item.familyLv }}</td>
|
|
590
|
+
<td style="width: 50px;">{{ item.familyMedicalType }}</td>
|
|
591
|
+
<td style="width: 50px;">{{ item.unitType }}</td>
|
|
592
|
+
<td style="width: 50px;">{{ item.orderStartDate }}</td>
|
|
593
|
+
<td style="width: 50px;">{{ item.orderEndDate }}</td>
|
|
594
|
+
<td style="width: 50px;">{{ item.familyDieTime }}</td>
|
|
595
|
+
<td style="width: 50px;">{{ item.familyOutTime }}</td>
|
|
596
|
+
<td style="width: 50px;">{{ item.unitAccount }}</td>
|
|
597
|
+
<td style="width: 50px;">{{ item.dj }}</td>
|
|
598
|
+
<td style="width: 50px;">{{ item.fwsc }}</td>
|
|
599
|
+
<td style="width: 50px;">{{ item.sjfwsc }}</td>
|
|
600
|
+
<td style="width: 50px;">{{ item.unitAccount }}</td>
|
|
601
|
+
<td style="width: 50px;">{{ item.familyMedicalCounty }}</td>
|
|
602
|
+
<td style="width: 50px;">{{ item.personName }}</td>
|
|
603
|
+
<td style="width: 50px;">{{ item.familyZYTime }}</td>
|
|
604
|
+
<td style="width: 50px;">{{ item.dyxz }}</td>
|
|
605
|
+
<td style="width: 50px;">{{ item.familyCreateTime }}</td>
|
|
606
|
+
<td style="width: 50px;">{{ item.familyCounty }}</td>
|
|
607
|
+
<td style="width: 50px;">{{ item.familyAddress }}</td>
|
|
608
|
+
<td style="width: 50px;">{{ item.bz }}</td>
|
|
609
|
+
</tr>
|
|
610
|
+
</tbody>
|
|
611
|
+
</table>
|
|
612
|
+
|
|
613
|
+
<div style="margin-top: 20px; padding: 10px 0">
|
|
614
|
+
<div style="display: flex; margin-bottom: 10px">
|
|
615
|
+
<div style="flex: 1">护理服务机构负责人签字:_______________</div>
|
|
616
|
+
<div style="flex: 1">承办单位审核人签字:_______________</div>
|
|
617
|
+
</div>
|
|
618
|
+
<div style="display: flex">
|
|
619
|
+
<div style="flex: 1">盖章:</div>
|
|
620
|
+
<!-- <div style="flex: 1">盖章:_______________</div> -->
|
|
621
|
+
</div>
|
|
622
|
+
</div>
|
|
623
|
+
</div>
|
|
624
|
+
<span slot="footer" class="dialog-footer">
|
|
625
|
+
<el-button size="small" :loading="loadExp" @click="handleClose">取 消</el-button>
|
|
626
|
+
<el-button size="small" type="primary" :loading="loadExp" @click="onPrinttwo">打 印</el-button>
|
|
627
|
+
</span>
|
|
628
|
+
</el-dialog>
|
|
629
|
+
|
|
630
|
+
</div>
|
|
631
|
+
</template>
|
|
632
|
+
|
|
633
|
+
<script>
|
|
634
|
+
import {
|
|
635
|
+
WxSettlementPage,
|
|
636
|
+
revokepsnsetlThird,
|
|
637
|
+
wxSettlementInfo,
|
|
638
|
+
wxSettlementStatisticInfo,
|
|
639
|
+
wxSettlementStatisticInfoNew,
|
|
640
|
+
ClockInfo,
|
|
641
|
+
ClockJsInfo,
|
|
642
|
+
JSInfoNew
|
|
643
|
+
} from '@/api/settlement'
|
|
644
|
+
import { SysUnitAll, WxUserFamilyAll } from '@/api/institution'
|
|
645
|
+
import Pagination from '@/components/Pagination' // secondary package based on el-pagination
|
|
646
|
+
export default {
|
|
647
|
+
name: 'Personnel',
|
|
648
|
+
components: { Pagination },
|
|
649
|
+
filters: {},
|
|
650
|
+
data() {
|
|
651
|
+
return {
|
|
652
|
+
|
|
653
|
+
unitType: null,
|
|
654
|
+
// 时间
|
|
655
|
+
time: null,
|
|
656
|
+
institutionList: [],
|
|
657
|
+
customerData: [],
|
|
658
|
+
startDate: '',
|
|
659
|
+
loadExp: false,
|
|
660
|
+
dialogVisibleExp: false,
|
|
661
|
+
dialogVisibleExp_two: false,
|
|
662
|
+
dialogStatus: '',
|
|
663
|
+
textMap: { update: '详情', create: '创建' },
|
|
664
|
+
tableKey: 0,
|
|
665
|
+
list: null,
|
|
666
|
+
total: 0,
|
|
667
|
+
listLoading: true,
|
|
668
|
+
listQuery: {
|
|
669
|
+
pageNo: 1,
|
|
670
|
+
size: 20
|
|
671
|
+
},
|
|
672
|
+
dialogFormVisible: false,
|
|
673
|
+
dialogPvVisible: false,
|
|
674
|
+
rules: {
|
|
675
|
+
status: [
|
|
676
|
+
{ required: true, message: '请选择审批状态', trigger: 'change' }
|
|
677
|
+
],
|
|
678
|
+
name: [{ required: true, message: '请输入机构名称', trigger: 'blur' }],
|
|
679
|
+
city: [{ required: true, message: '请输入行政区划', trigger: 'blur' }],
|
|
680
|
+
county: [
|
|
681
|
+
{ required: true, message: '请输入所属辖区', trigger: 'blur' }
|
|
682
|
+
],
|
|
683
|
+
address: [
|
|
684
|
+
{ required: true, message: '请输入护理机构地址', trigger: 'blur' }
|
|
685
|
+
],
|
|
686
|
+
linkMan: [{ required: true, message: '请输入联系人', trigger: 'blur' }],
|
|
687
|
+
linkPhoneNumber: [
|
|
688
|
+
{ required: true, message: '请输入联系号码', trigger: 'blur' }
|
|
689
|
+
]
|
|
690
|
+
},
|
|
691
|
+
temp: {},
|
|
692
|
+
downloadLoading: false,
|
|
693
|
+
expObj: {},
|
|
694
|
+
expObjPrint: {},
|
|
695
|
+
expObjPrintNew: {},
|
|
696
|
+
expObjVisible: false,
|
|
697
|
+
dialogVisibleExpPrint: false,
|
|
698
|
+
dialogVisibleExpPrint_two: false
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
computed: {
|
|
702
|
+
totalAmount() {
|
|
703
|
+
let accountTotal = 0
|
|
704
|
+
if (!Object.keys(this.expObjPrint).length == 0) {
|
|
705
|
+
for (let i = 0; i < this.expObjPrint.list.length; i++) {
|
|
706
|
+
accountTotal += this.expObjPrint.list[i].accountTotal
|
|
707
|
+
}
|
|
708
|
+
}
|
|
709
|
+
return accountTotal.toFixed(1) || 0
|
|
710
|
+
},
|
|
711
|
+
fundAmount() {
|
|
712
|
+
let fundPrice = 0
|
|
713
|
+
if (!Object.keys(this.expObjPrint).length == 0) {
|
|
714
|
+
for (let i = 0; i < this.expObjPrint.list.length; i++) {
|
|
715
|
+
fundPrice += this.expObjPrint.list[i].fundPrice
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
return fundPrice.toFixed(1) || 0
|
|
719
|
+
},
|
|
720
|
+
burdenAmount() {
|
|
721
|
+
let amount = 0
|
|
722
|
+
if (!Object.keys(this.expObjPrint).length == 0) {
|
|
723
|
+
for (let i = 0; i < this.expObjPrint.list.length; i++) {
|
|
724
|
+
amount += this.expObjPrint.list[i].fei + this.expObjPrint.list[i].fu
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
return amount.toFixed(1) || 0
|
|
728
|
+
}
|
|
729
|
+
},
|
|
730
|
+
created() {
|
|
731
|
+
this.getList()
|
|
732
|
+
},
|
|
733
|
+
methods: {
|
|
734
|
+
changeTime(value) {
|
|
735
|
+
this.listQuery.orderStartDate = value[0]
|
|
736
|
+
this.listQuery.orderEndDate = value[1]
|
|
737
|
+
},
|
|
738
|
+
/**
|
|
739
|
+
* 打印
|
|
740
|
+
*/
|
|
741
|
+
onPrint() {
|
|
742
|
+
this.$print(this.$refs.printDom1)
|
|
743
|
+
},
|
|
744
|
+
onPrinttwo(){
|
|
745
|
+
this.$print(this.$refs.printDom2)
|
|
746
|
+
},
|
|
747
|
+
getExpPrint(v) {
|
|
748
|
+
ClockJsInfo({ yearMonth: v }).then((res) => {
|
|
749
|
+
console.log(res)
|
|
750
|
+
if (res.status === 1) {
|
|
751
|
+
this.expObjPrint = res.result
|
|
752
|
+
}
|
|
753
|
+
})
|
|
754
|
+
},
|
|
755
|
+
getExpPrint_new(v) {
|
|
756
|
+
JSInfoNew({ yearMonth: v }).then((res) => {
|
|
757
|
+
console.log(res)
|
|
758
|
+
if (res.status === 1) {
|
|
759
|
+
this.expObjPrintNew = res.result
|
|
760
|
+
}
|
|
761
|
+
})
|
|
762
|
+
},
|
|
763
|
+
expExcel3(row) {
|
|
764
|
+
this.dialogVisibleExpPrint = true
|
|
765
|
+
this.startDate = ''
|
|
766
|
+
},
|
|
767
|
+
expExcel4(row) {
|
|
768
|
+
this.dialogVisibleExpPrint_two = true
|
|
769
|
+
this.startDate = ''
|
|
770
|
+
},
|
|
771
|
+
expExcel2(row) {
|
|
772
|
+
ClockInfo({ orderNo: row.orderNo }).then((res) => {
|
|
773
|
+
if (res.status === 1) {
|
|
774
|
+
this.unitType = res.result.unitType
|
|
775
|
+
const result = {}
|
|
776
|
+
const lastElement = res.result.list[res.result.list.length - 1]
|
|
777
|
+
for (const key in lastElement) {
|
|
778
|
+
if (typeof lastElement[key] === 'string' && lastElement[key].includes('-')) {
|
|
779
|
+
result[key] = lastElement[key].split(/-/)
|
|
780
|
+
} else {
|
|
781
|
+
result[key] = lastElement[key]
|
|
782
|
+
}
|
|
783
|
+
}
|
|
784
|
+
res.result.list[res.result.list.length - 1] = result
|
|
785
|
+
this.expObj = res.result
|
|
786
|
+
this.expObjVisible = true
|
|
787
|
+
}
|
|
788
|
+
})
|
|
789
|
+
},
|
|
790
|
+
expExcel(row) {
|
|
791
|
+
wxSettlementInfo({ id: row.id, orderNo: row.orderNo }).then((res) => {
|
|
792
|
+
const blob = new Blob([res])
|
|
793
|
+
const fileName = '结算信息导出'
|
|
794
|
+
if (blob.size > 0) {
|
|
795
|
+
const elink = document.createElement('a')
|
|
796
|
+
elink.style.display = 'none'
|
|
797
|
+
elink.href = URL.createObjectURL(blob)
|
|
798
|
+
// 类似a标签下载
|
|
799
|
+
// 自定义文件名称和导出类型。最好和后台保持一致
|
|
800
|
+
elink.download = `${fileName}/${this.$moment().format(
|
|
801
|
+
'YYYY-MM-DD'
|
|
802
|
+
)}.xlsx`
|
|
803
|
+
document.body.appendChild(elink)
|
|
804
|
+
elink.click()
|
|
805
|
+
// 释放URL 对象
|
|
806
|
+
URL.revokeObjectURL(elink.href)
|
|
807
|
+
// 删除创建的 a 标签
|
|
808
|
+
document.body.removeChild(elink)
|
|
809
|
+
}
|
|
810
|
+
})
|
|
811
|
+
},
|
|
812
|
+
expExcelForm_two() {
|
|
813
|
+
try {
|
|
814
|
+
this.loadExp = true
|
|
815
|
+
const form = {
|
|
816
|
+
yearMonth: this.startDate
|
|
817
|
+
// endDate: this.startDate[1],
|
|
818
|
+
}
|
|
819
|
+
wxSettlementStatisticInfoNew(form)
|
|
820
|
+
.then((res) => {
|
|
821
|
+
const blob = new Blob([res])
|
|
822
|
+
const fileName = '新结算统计导出'
|
|
823
|
+
if (blob.size > 0) {
|
|
824
|
+
const elink = document.createElement('a')
|
|
825
|
+
elink.style.display = 'none'
|
|
826
|
+
elink.href = URL.createObjectURL(blob)
|
|
827
|
+
// 类似a标签下载
|
|
828
|
+
// 自定义文件名称和导出类型。最好和后台保持一致
|
|
829
|
+
elink.download = `${fileName}/${this.$moment().format(
|
|
830
|
+
'YYYY-MM-DD'
|
|
831
|
+
)}.xlsx`
|
|
832
|
+
document.body.appendChild(elink)
|
|
833
|
+
elink.click()
|
|
834
|
+
// 释放URL 对象
|
|
835
|
+
URL.revokeObjectURL(elink.href)
|
|
836
|
+
// 删除创建的 a 标签
|
|
837
|
+
document.body.removeChild(elink)
|
|
838
|
+
}
|
|
839
|
+
this.handleClose()
|
|
840
|
+
this.loadExp = false
|
|
841
|
+
})
|
|
842
|
+
.catch(() => {
|
|
843
|
+
this.loadExp = false
|
|
844
|
+
})
|
|
845
|
+
} catch (e) {
|
|
846
|
+
this.loadExp = false
|
|
847
|
+
console.log(e)
|
|
848
|
+
}
|
|
849
|
+
},
|
|
850
|
+
expExcelForm() {
|
|
851
|
+
try {
|
|
852
|
+
this.loadExp = true
|
|
853
|
+
const form = {
|
|
854
|
+
yearMonth: this.startDate
|
|
855
|
+
// endDate: this.startDate[1],
|
|
856
|
+
}
|
|
857
|
+
wxSettlementStatisticInfo(form)
|
|
858
|
+
.then((res) => {
|
|
859
|
+
const blob = new Blob([res])
|
|
860
|
+
const fileName = '结算统计导出'
|
|
861
|
+
if (blob.size > 0) {
|
|
862
|
+
const elink = document.createElement('a')
|
|
863
|
+
elink.style.display = 'none'
|
|
864
|
+
elink.href = URL.createObjectURL(blob)
|
|
865
|
+
// 类似a标签下载
|
|
866
|
+
// 自定义文件名称和导出类型。最好和后台保持一致
|
|
867
|
+
elink.download = `${fileName}/${this.$moment().format(
|
|
868
|
+
'YYYY-MM-DD'
|
|
869
|
+
)}.xlsx`
|
|
870
|
+
document.body.appendChild(elink)
|
|
871
|
+
elink.click()
|
|
872
|
+
// 释放URL 对象
|
|
873
|
+
URL.revokeObjectURL(elink.href)
|
|
874
|
+
// 删除创建的 a 标签
|
|
875
|
+
document.body.removeChild(elink)
|
|
876
|
+
}
|
|
877
|
+
this.handleClose()
|
|
878
|
+
this.loadExp = false
|
|
879
|
+
})
|
|
880
|
+
.catch(() => {
|
|
881
|
+
this.loadExp = false
|
|
882
|
+
})
|
|
883
|
+
} catch (e) {
|
|
884
|
+
this.loadExp = false
|
|
885
|
+
console.log(e)
|
|
886
|
+
}
|
|
887
|
+
},
|
|
888
|
+
handleClose() {
|
|
889
|
+
this.dialogVisibleExp = false
|
|
890
|
+
this.dialogVisibleExp_two = false
|
|
891
|
+
this.expObjVisible = false
|
|
892
|
+
this.dialogVisibleExpPrint = false
|
|
893
|
+
this.dialogVisibleExpPrint_two = false
|
|
894
|
+
this.expObj = {}
|
|
895
|
+
this.expObjPrint = {}
|
|
896
|
+
this.startDate = ''
|
|
897
|
+
},
|
|
898
|
+
// 撤销
|
|
899
|
+
revoke(row) {
|
|
900
|
+
revokepsnsetlThird({ trtSetlId: row.trtSetlId }).then((res) => {
|
|
901
|
+
if (res.status == 1) {
|
|
902
|
+
this.getList()
|
|
903
|
+
this.$notify({
|
|
904
|
+
title: '提示',
|
|
905
|
+
message: '撤销成功',
|
|
906
|
+
type: 'success',
|
|
907
|
+
duration: 2000
|
|
908
|
+
})
|
|
909
|
+
} else {
|
|
910
|
+
this.$notify({
|
|
911
|
+
title: '提示',
|
|
912
|
+
message: res.info,
|
|
913
|
+
type: 'error',
|
|
914
|
+
duration: 2000
|
|
915
|
+
})
|
|
916
|
+
}
|
|
917
|
+
})
|
|
918
|
+
},
|
|
919
|
+
getList() {
|
|
920
|
+
this.listLoading = true
|
|
921
|
+
WxSettlementPage(this.listQuery).then((response) => {
|
|
922
|
+
this.list = response.result.data
|
|
923
|
+
this.total = response.result.count
|
|
924
|
+
setTimeout(() => {
|
|
925
|
+
this.listLoading = false
|
|
926
|
+
}, 1.5 * 1000)
|
|
927
|
+
})
|
|
928
|
+
SysUnitAll().then((res) => {
|
|
929
|
+
this.institutionList = res.result.map((item) => {
|
|
930
|
+
return { label: item.name, value: item.id }
|
|
931
|
+
})
|
|
932
|
+
})
|
|
933
|
+
WxUserFamilyAll().then((res) => {
|
|
934
|
+
this.customerData = res.result.map((item) => {
|
|
935
|
+
return { label: item.name, value: item.id }
|
|
936
|
+
})
|
|
937
|
+
})
|
|
938
|
+
},
|
|
939
|
+
handleModifyStatus(row, status) {
|
|
940
|
+
this.$message({
|
|
941
|
+
message: '操作成功',
|
|
942
|
+
type: 'success'
|
|
943
|
+
})
|
|
944
|
+
row.status = status
|
|
945
|
+
},
|
|
946
|
+
resetting(formName) {
|
|
947
|
+
this.$nextTick(() => {
|
|
948
|
+
this.$refs[formName].resetFields()
|
|
949
|
+
this.getList()
|
|
950
|
+
})
|
|
951
|
+
},
|
|
952
|
+
add() {
|
|
953
|
+
this.dialogStatus = 'create'
|
|
954
|
+
this.dialogFormVisible = true
|
|
955
|
+
this.temp = {}
|
|
956
|
+
},
|
|
957
|
+
onSubmit() {
|
|
958
|
+
this.getList()
|
|
959
|
+
},
|
|
960
|
+
createData() {
|
|
961
|
+
this.$refs['dataForm'].validate((valid) => {
|
|
962
|
+
if (valid) {
|
|
963
|
+
SysUnitSave(this.temp).then((res) => {
|
|
964
|
+
if (res.status == 1) {
|
|
965
|
+
this.dialogFormVisible = false
|
|
966
|
+
this.getList()
|
|
967
|
+
this.$notify({
|
|
968
|
+
title: res.info,
|
|
969
|
+
message: '新增成功',
|
|
970
|
+
type: 'success',
|
|
971
|
+
duration: 2000
|
|
972
|
+
})
|
|
973
|
+
return
|
|
974
|
+
}
|
|
975
|
+
this.$notify({
|
|
976
|
+
title: res.info,
|
|
977
|
+
message: '新增失败',
|
|
978
|
+
type: 'error',
|
|
979
|
+
duration: 2000
|
|
980
|
+
})
|
|
981
|
+
})
|
|
982
|
+
}
|
|
983
|
+
})
|
|
984
|
+
},
|
|
985
|
+
updateData() {
|
|
986
|
+
this.$refs['dataForm'].validate((valid) => {
|
|
987
|
+
if (valid) {
|
|
988
|
+
WxClockApplyApprove(this.temp).then((res) => {
|
|
989
|
+
if (res.status == 1) {
|
|
990
|
+
this.dialogFormVisible = false
|
|
991
|
+
this.getList()
|
|
992
|
+
this.$notify({
|
|
993
|
+
title: res.info,
|
|
994
|
+
message: '更新成功',
|
|
995
|
+
type: 'success',
|
|
996
|
+
duration: 2000
|
|
997
|
+
})
|
|
998
|
+
return
|
|
999
|
+
}
|
|
1000
|
+
this.$notify({
|
|
1001
|
+
title: res.info,
|
|
1002
|
+
message: '更新失败',
|
|
1003
|
+
type: 'error',
|
|
1004
|
+
duration: 2000
|
|
1005
|
+
})
|
|
1006
|
+
})
|
|
1007
|
+
}
|
|
1008
|
+
})
|
|
1009
|
+
},
|
|
1010
|
+
edit(row) {
|
|
1011
|
+
this.temp = row
|
|
1012
|
+
this.dialogStatus = 'update'
|
|
1013
|
+
this.dialogFormVisible = true
|
|
1014
|
+
},
|
|
1015
|
+
handleDelete(row, index) {
|
|
1016
|
+
WxClockApplyDel({ id: row.id }).then((res) => {
|
|
1017
|
+
if (res.status == 1) {
|
|
1018
|
+
this.getList()
|
|
1019
|
+
this.$notify({
|
|
1020
|
+
title: res.info,
|
|
1021
|
+
message: '删除成功',
|
|
1022
|
+
type: 'success',
|
|
1023
|
+
duration: 2000
|
|
1024
|
+
})
|
|
1025
|
+
return
|
|
1026
|
+
}
|
|
1027
|
+
this.$notify({
|
|
1028
|
+
title: res.info,
|
|
1029
|
+
message: '删除失败',
|
|
1030
|
+
type: 'error',
|
|
1031
|
+
duration: 2000
|
|
1032
|
+
})
|
|
1033
|
+
})
|
|
1034
|
+
// this.list.splice(index, 1)
|
|
1035
|
+
}
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
</script>
|
|
1039
|
+
<style lang="scss" scoped>
|
|
1040
|
+
.el-col-12 {
|
|
1041
|
+
padding: 0 20px 0 0;
|
|
1042
|
+
}
|
|
1043
|
+
|
|
1044
|
+
.exptable {
|
|
1045
|
+
font-size: 9px;
|
|
1046
|
+
text-align: center;
|
|
1047
|
+
width: 100%;
|
|
1048
|
+
|
|
1049
|
+
// line-height: 26px;
|
|
1050
|
+
.leftXuhao {
|
|
1051
|
+
display: flex;
|
|
1052
|
+
border-bottom: 1px solid #333;
|
|
1053
|
+
|
|
1054
|
+
div {
|
|
1055
|
+
display: flex;
|
|
1056
|
+
align-items: center;
|
|
1057
|
+
justify-content: center;
|
|
1058
|
+
border-right: 1px solid #333;
|
|
1059
|
+
}
|
|
1060
|
+
}
|
|
1061
|
+
|
|
1062
|
+
.thead {
|
|
1063
|
+
// border: 1px solid #333;
|
|
1064
|
+
border-bottom: 0;
|
|
1065
|
+
color: #000;
|
|
1066
|
+
padding: 8px 0;
|
|
1067
|
+
}
|
|
1068
|
+
|
|
1069
|
+
.tbody {
|
|
1070
|
+
border: 1px solid #333;
|
|
1071
|
+
font-size: 8px;
|
|
1072
|
+
}
|
|
1073
|
+
|
|
1074
|
+
.tr {
|
|
1075
|
+
display: flex;
|
|
1076
|
+
border-bottom: 1px solid #333;
|
|
1077
|
+
color: #111;
|
|
1078
|
+
|
|
1079
|
+
div {
|
|
1080
|
+
// flex: 1;
|
|
1081
|
+
display: flex;
|
|
1082
|
+
align-items: center;
|
|
1083
|
+
justify-content: center;
|
|
1084
|
+
border-right: 1px solid #333;
|
|
1085
|
+
// padding: 5px 2px;
|
|
1086
|
+
}
|
|
1087
|
+
|
|
1088
|
+
.bodyday {
|
|
1089
|
+
flex: 1;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
div:last-child {
|
|
1093
|
+
border-right: 0;
|
|
1094
|
+
}
|
|
1095
|
+
}
|
|
1096
|
+
|
|
1097
|
+
.eight div {
|
|
1098
|
+
flex: 1;
|
|
1099
|
+
// width: calc((100% - 120px * 8) / 8);
|
|
1100
|
+
padding: 5px 0;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
.eight .title {
|
|
1104
|
+
width: 110px;
|
|
1105
|
+
flex: none;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.tr:last-child {
|
|
1109
|
+
border-bottom: 0;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.loop {
|
|
1113
|
+
.num {
|
|
1114
|
+
width: 22px !important;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.total {
|
|
1118
|
+
width: 23px;
|
|
1119
|
+
padding: 5px 0;
|
|
1120
|
+
}
|
|
1121
|
+
|
|
1122
|
+
// .day {
|
|
1123
|
+
// width: calc(27px * 27);
|
|
1124
|
+
// }
|
|
1125
|
+
.name {
|
|
1126
|
+
// flex: 1;
|
|
1127
|
+
padding: 5px 0;
|
|
1128
|
+
// width: 300px !important;
|
|
1129
|
+
flex: 0.1;
|
|
1130
|
+
}
|
|
1131
|
+
|
|
1132
|
+
.headday {
|
|
1133
|
+
flex-flow: column;
|
|
1134
|
+
flex: 1;
|
|
1135
|
+
|
|
1136
|
+
.forday {
|
|
1137
|
+
border-top: 1px solid #333;
|
|
1138
|
+
}
|
|
1139
|
+
}
|
|
1140
|
+
|
|
1141
|
+
.day span {
|
|
1142
|
+
padding: 10px 0;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.forday {
|
|
1146
|
+
display: table;
|
|
1147
|
+
width: 100%;
|
|
1148
|
+
|
|
1149
|
+
// height: 100%;
|
|
1150
|
+
span {
|
|
1151
|
+
display: table-cell;
|
|
1152
|
+
vertical-align: middle;
|
|
1153
|
+
border-right: 1px solid #333;
|
|
1154
|
+
width: 23px;
|
|
1155
|
+
height: 100%;
|
|
1156
|
+
overflow: hidden;
|
|
1157
|
+
word-wrap: break-word;
|
|
1158
|
+
word-break: break-all;
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
span:last-child {
|
|
1162
|
+
border-right: 0;
|
|
1163
|
+
}
|
|
1164
|
+
}
|
|
1165
|
+
}
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.aa {
|
|
1169
|
+
// height: 88px;
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.handwriting {
|
|
1173
|
+
display: flex;
|
|
1174
|
+
|
|
1175
|
+
div {
|
|
1176
|
+
text-align: right;
|
|
1177
|
+
padding: 5px 0;
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.name {
|
|
1181
|
+
margin-left: 60px;
|
|
1182
|
+
width: 120px;
|
|
1183
|
+
}
|
|
1184
|
+
|
|
1185
|
+
.bodyday {
|
|
1186
|
+
width: 60%;
|
|
1187
|
+
margin-right: 60px;
|
|
1188
|
+
}
|
|
1189
|
+
}
|
|
1190
|
+
|
|
1191
|
+
.exptableprint {
|
|
1192
|
+
font-size: 11px;
|
|
1193
|
+
|
|
1194
|
+
.tbody {
|
|
1195
|
+
font-size: 10px;
|
|
1196
|
+
}
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1199
|
+
/* 打印样式 - 修复el-table打印时列宽问题 */
|
|
1200
|
+
@media print {
|
|
1201
|
+
|
|
1202
|
+
/* 强制设置表格列宽为auto,让内容正常显示 */
|
|
1203
|
+
.el-table__header-wrapper,
|
|
1204
|
+
.el-table__body-wrapper {
|
|
1205
|
+
overflow: visible !important;
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
.el-table__header,
|
|
1209
|
+
.el-table__body {
|
|
1210
|
+
width: 100% !important;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
.el-table th,
|
|
1214
|
+
.el-table td {
|
|
1215
|
+
width: auto !important;
|
|
1216
|
+
min-width: 80px !important;
|
|
1217
|
+
max-width: none !important;
|
|
1218
|
+
white-space: normal !important;
|
|
1219
|
+
word-wrap: break-word !important;
|
|
1220
|
+
overflow: visible !important;
|
|
1221
|
+
}
|
|
1222
|
+
|
|
1223
|
+
.el-table__fixed,
|
|
1224
|
+
.el-table__fixed-right {
|
|
1225
|
+
display: none !important;
|
|
1226
|
+
}
|
|
1227
|
+
|
|
1228
|
+
/* 隐藏不需要打印的元素 */
|
|
1229
|
+
.dialog-footer,
|
|
1230
|
+
.el-dialog__header {
|
|
1231
|
+
display: none !important;
|
|
1232
|
+
}
|
|
1233
|
+
|
|
1234
|
+
/* 确保打印时表格宽度100% */
|
|
1235
|
+
.el-table {
|
|
1236
|
+
width: 100% !important;
|
|
1237
|
+
table-layout: auto !important;
|
|
1238
|
+
}
|
|
1239
|
+
|
|
1240
|
+
.el-table__body {
|
|
1241
|
+
table-layout: auto !important;
|
|
1242
|
+
}
|
|
1243
|
+
}
|
|
1244
|
+
</style>
|