@liuqiongqiong/vue-pages 1.1.2 → 1.1.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/package.json
CHANGED
|
@@ -154,19 +154,19 @@
|
|
|
154
154
|
</div>
|
|
155
155
|
</el-dialog>
|
|
156
156
|
<!-- 待申报结算查询抽屉 -->
|
|
157
|
-
<el-drawer
|
|
157
|
+
<el-drawer
|
|
158
|
+
title="待申报结算查询"
|
|
159
|
+
:visible.sync="drawerVisible"
|
|
160
|
+
direction="rtl"
|
|
161
|
+
size="60%"
|
|
162
|
+
>
|
|
158
163
|
<div style="padding: 20px;">
|
|
159
|
-
<el-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
<el-button type="primary" size="small" @click="handleDrawerQuery">查询</el-button>
|
|
166
|
-
</el-form-item>
|
|
167
|
-
</el-form>
|
|
168
|
-
|
|
169
|
-
<el-table v-loading="drawerLoading" :data="drawerList" border style="width: 100%">
|
|
164
|
+
<el-table
|
|
165
|
+
v-loading="drawerLoading"
|
|
166
|
+
:data="drawerList"
|
|
167
|
+
border
|
|
168
|
+
style="width: 100%"
|
|
169
|
+
>
|
|
170
170
|
<el-table-column label="长护辅助器具结算ID" prop="longtermAidsSetlId" align="center" show-overflow-tooltip
|
|
171
171
|
min-width="160" />
|
|
172
172
|
<el-table-column label="护理机构ID" prop="nurscareOrgNo" align="center" show-overflow-tooltip min-width="120" />
|
|
@@ -192,6 +192,28 @@
|
|
|
192
192
|
</div>
|
|
193
193
|
</el-drawer>
|
|
194
194
|
|
|
195
|
+
<!-- 查询条件对话框 -->
|
|
196
|
+
<el-dialog title="查询条件" :visible.sync="queryDialogVisible" width="30%">
|
|
197
|
+
<el-form ref="queryForm" :model="queryForm" :rules="queryRules" label-width="140px">
|
|
198
|
+
<el-form-item label="结算月份" prop="setlMon">
|
|
199
|
+
<el-date-picker
|
|
200
|
+
v-model="queryForm.setlMon"
|
|
201
|
+
type="month"
|
|
202
|
+
placeholder="选择月份"
|
|
203
|
+
value-format="yyyy-MM"
|
|
204
|
+
style="width: 100%"
|
|
205
|
+
/>
|
|
206
|
+
</el-form-item>
|
|
207
|
+
<el-form-item label="长期护理申报原因" prop="longtermDclaRea">
|
|
208
|
+
<el-input v-model="queryForm.longtermDclaRea" placeholder="请输入长期护理申报原因" />
|
|
209
|
+
</el-form-item>
|
|
210
|
+
</el-form>
|
|
211
|
+
<div slot="footer" class="dialog-footer">
|
|
212
|
+
<el-button @click="queryDialogVisible = false">取消</el-button>
|
|
213
|
+
<el-button type="primary" @click="submitQuery">确定</el-button>
|
|
214
|
+
</div>
|
|
215
|
+
</el-dialog>
|
|
216
|
+
|
|
195
217
|
<!-- 结算明细对话框 -->
|
|
196
218
|
<el-dialog title="结算明细" :visible.sync="detailDialogVisible" width="60%" append-to-body>
|
|
197
219
|
<el-table v-loading="detailLoading" :data="detailList" border style="width: 100%">
|
|
@@ -260,6 +282,15 @@ export default {
|
|
|
260
282
|
instDrName: [{ required: true, message: "请输入安装医生姓名", trigger: "blur" }],
|
|
261
283
|
},
|
|
262
284
|
areaOptions: [],
|
|
285
|
+
queryDialogVisible: false,
|
|
286
|
+
queryForm: {
|
|
287
|
+
setlMon: "",
|
|
288
|
+
longtermDclaRea: ""
|
|
289
|
+
},
|
|
290
|
+
queryRules: {
|
|
291
|
+
setlMon: [{ required: true, message: "请选择结算月份", trigger: "change" }],
|
|
292
|
+
longtermDclaRea: [{ required: true, message: "请输入长期护理申报原因", trigger: "blur" }]
|
|
293
|
+
},
|
|
263
294
|
// 抽屉相关数据
|
|
264
295
|
drawerVisible: false,
|
|
265
296
|
drawerLoading: false,
|
|
@@ -268,7 +299,8 @@ export default {
|
|
|
268
299
|
drawerQuery: {
|
|
269
300
|
pageNo: 1,
|
|
270
301
|
size: 10,
|
|
271
|
-
setlMon: ""
|
|
302
|
+
setlMon: "",
|
|
303
|
+
longtermDclaRea: ""
|
|
272
304
|
},
|
|
273
305
|
// 明细弹窗相关数据
|
|
274
306
|
detailDialogVisible: false,
|
|
@@ -358,9 +390,23 @@ export default {
|
|
|
358
390
|
});
|
|
359
391
|
},
|
|
360
392
|
handleQueryPending() {
|
|
361
|
-
this.
|
|
362
|
-
this.
|
|
363
|
-
this
|
|
393
|
+
this.queryForm = { setlMon: "", longtermDclaRea: "" };
|
|
394
|
+
this.queryDialogVisible = true;
|
|
395
|
+
this.$nextTick(() => {
|
|
396
|
+
this.$refs.queryForm.clearValidate();
|
|
397
|
+
});
|
|
398
|
+
},
|
|
399
|
+
submitQuery() {
|
|
400
|
+
this.$refs.queryForm.validate((valid) => {
|
|
401
|
+
if (valid) {
|
|
402
|
+
this.drawerQuery.setlMon = this.queryForm.setlMon;
|
|
403
|
+
this.drawerQuery.longtermDclaRea = this.queryForm.longtermDclaRea;
|
|
404
|
+
this.queryDialogVisible = false;
|
|
405
|
+
this.drawerVisible = true;
|
|
406
|
+
this.drawerQuery.pageNo = 1;
|
|
407
|
+
this.getDrawerList();
|
|
408
|
+
}
|
|
409
|
+
});
|
|
364
410
|
},
|
|
365
411
|
handleDrawerQuery() {
|
|
366
412
|
this.drawerQuery.pageNo = 1;
|
|
@@ -369,7 +415,7 @@ export default {
|
|
|
369
415
|
getDrawerList() {
|
|
370
416
|
this.drawerLoading = true;
|
|
371
417
|
const params = {
|
|
372
|
-
longtermDclaRea:
|
|
418
|
+
longtermDclaRea: this.drawerQuery.longtermDclaRea,
|
|
373
419
|
setlMon: this.drawerQuery.setlMon,
|
|
374
420
|
pageNum: this.drawerQuery.pageNo,
|
|
375
421
|
pageSize: this.drawerQuery.size
|
|
@@ -393,7 +439,7 @@ export default {
|
|
|
393
439
|
getDetailList() {
|
|
394
440
|
this.detailLoading = true;
|
|
395
441
|
const params = {
|
|
396
|
-
longtermDclaRea:
|
|
442
|
+
longtermDclaRea: this.drawerQuery.longtermDclaRea,
|
|
397
443
|
longtermAidsSetlId: this.detailQuery.longtermAidsSetlId,
|
|
398
444
|
pageNum: this.detailQuery.pageNo,
|
|
399
445
|
pageSize: this.detailQuery.size
|