From dc76ce3105dbcba8c7358bb96429575de4bcb0b2 Mon Sep 17 00:00:00 2001
From: zhanglipeng <chinazhanglipeng@qq.com>
Date: Tue, 26 Jan 2021 16:16:38 +0800
Subject: [PATCH] =?UTF-8?q?=E8=80=83=E5=8B=A4=E5=92=8C=E7=BB=9F=E8=AE=A1bu?=
 =?UTF-8?q?g?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

---
 ruoyi-ui/src/views/benyi/checkindetail/index.vue | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/ruoyi-ui/src/views/benyi/checkindetail/index.vue b/ruoyi-ui/src/views/benyi/checkindetail/index.vue
index fc4058198..76f490a4b 100644
--- a/ruoyi-ui/src/views/benyi/checkindetail/index.vue
+++ b/ruoyi-ui/src/views/benyi/checkindetail/index.vue
@@ -291,6 +291,10 @@ export default {
         createuserid: undefined,
         createTime: undefined,
       },
+      // 查询参数
+      queryParams_child: {
+        status: '0',
+      },
       // 表单参数
       form: {},
       // 表单校验
@@ -402,7 +406,7 @@ export default {
       this.isable = false;
       this.open = true;
       this.title = "幼儿考勤";
-      listByCheck(null).then((response) => {
+      listByCheck(this.queryParams_child).then((response) => {
         this.childs = response.rows;
       });
     },
@@ -413,7 +417,7 @@ export default {
       const id = row.id || this.ids;
       getDetail(id).then((response) => {
         this.form = response.data;
-        listChild(null).then((response) => {
+        listChild(this.queryParams_child).then((response) => {
           this.childs = response.rows;
         });
         this.checkedChilds.push(response.data.childid);