出生日期改为时间段

This commit is contained in:
闫晓茹 2022-08-30 16:57:25 +08:00
parent 5ab8d48451
commit 4b5162557f

View File

@ -43,10 +43,13 @@
<el-form-item label="出生日期" prop="birthDate"> <el-form-item label="出生日期" prop="birthDate">
<el-date-picker <el-date-picker
clearable clearable
v-model="queryParams.birthDate" v-model="Data"
type="date"
value-format="yyyy-MM-dd" value-format="yyyy-MM-dd"
placeholder="请选择出生日期" type="daterange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
unlink-panels
> >
</el-date-picker> </el-date-picker>
</el-form-item> </el-form-item>
@ -82,6 +85,7 @@
@click="handleQuery" @click="handleQuery"
>搜索</el-button >搜索</el-button
> >
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery1" <el-button icon="el-icon-refresh" size="mini" @click="resetQuery1"
>重置</el-button >重置</el-button
> >
@ -215,14 +219,8 @@
/> />
<!-- 添加或修改学生信息对话框 --> <!-- 添加或修改学生信息对话框 -->
<el-dialog <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
:title="title" <el-form ref="form" :model="form" :rules="rules" label-width="85px">
:visible.sync="open"
width="500px"
append-to-body
:before-close="cancel"
>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="所属班级" prop="classId"> <el-form-item label="所属班级" prop="classId">
<el-button <el-button
type="" type=""
@ -329,7 +327,6 @@
:visible.sync="innerVisible2" :visible.sync="innerVisible2"
append-to-body append-to-body
:before-close="prentclickok" :before-close="prentclickok"
> >
<el-form <el-form
:model="parentInfoList2" :model="parentInfoList2"
@ -338,7 +335,6 @@
:inline="true" :inline="true"
v-show="showSearch" v-show="showSearch"
label-width="70px" label-width="70px"
style="margin-bottom:-30px;"
> >
<el-form-item label="家长姓名" prop="parentName"> <el-form-item label="家长姓名" prop="parentName">
<el-input <el-input
@ -427,6 +423,14 @@
</el-table-column> </el-table-column>
</el-table> </el-table>
<el-button
type="success"
plain
size="mini"
@click="prentclickok"
style="margin-top: 30px; margin-left: 20px"
>选择完成</el-button
>
<pagination <pagination
v-show="total3 > 0" v-show="total3 > 0"
@ -434,16 +438,7 @@
:page.sync="parentInfoList2.pageNum" :page.sync="parentInfoList2.pageNum"
:limit.sync="parentInfoList2.pageSize" :limit.sync="parentInfoList2.pageSize"
@pagination="getList" @pagination="getList"
style="margin-top:40px"
/> />
<el-button
type="primary"
size="mini"
@click="prentclickok"
style="margin-top: 30px; margin-left: 85%;width: 100px; height: 50px;font-size:15px"
>选择完成</el-button
>
</el-dialog> </el-dialog>
<!-- // --> <!-- // -->
@ -721,6 +716,8 @@ export default {
return time.getTime() > Date.now(); return time.getTime() > Date.now();
}, },
}, },
Data: "",
// //
parentStudentInfoList: [], parentStudentInfoList: [],
// //
@ -729,6 +726,7 @@ export default {
male: "MALE", male: "MALE",
female: "FEMALE", female: "FEMALE",
// //
kindergartenshow: false,
loading: true, loading: true,
innerVisible: false, innerVisible: false,
innerVisible2: false, innerVisible2: false,
@ -811,6 +809,7 @@ export default {
// //
open: false, open: false,
// //
queryParams: { queryParams: {
pageNum: 1, pageNum: 1,
pageSize: 10, pageSize: 10,
@ -1319,6 +1318,10 @@ export default {
}, },
/** 搜索按钮操作 */ /** 搜索按钮操作 */
handleQuery() { handleQuery() {
console.log(this.Data);
this.queryParams.startTime = this.Data[0];
this.queryParams.endTime = this.Data[1];
this.queryParams.pageNum = 1; this.queryParams.pageNum = 1;
listStudentInfo(this.queryParams).then((res) => { listStudentInfo(this.queryParams).then((res) => {
this.studentInfoList = res.rows; this.studentInfoList = res.rows;
@ -1333,7 +1336,23 @@ export default {
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery1() { resetQuery1() {
this.resetForm("queryForm"); this.resetForm("queryForm");
this.queryParams = {
pageNum: 1,
pageSize: 10,
classId: null,
nationDictId: null,
studentName: null,
studentSex: null,
studentNumber: null,
birthDate: null,
cardNumber: null,
onceName: null,
homeAddress: null,
};
this.Data = [];
this.handleQuery(); this.handleQuery();
// this.reload();
}, },
/** 重置按钮操作 */ /** 重置按钮操作 */
resetQuery3() { resetQuery3() {