@liuqiongqiong/vue-pages 1.1.3 → 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,
|
|
@@ -359,18 +390,22 @@ export default {
|
|
|
359
390
|
});
|
|
360
391
|
},
|
|
361
392
|
handleQueryPending() {
|
|
362
|
-
this
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
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
|
+
}
|
|
374
409
|
});
|
|
375
410
|
},
|
|
376
411
|
handleDrawerQuery() {
|