幼儿评估

This commit is contained in:
paidaxing444
2020-11-05 17:19:00 +08:00
parent d90fa8a860
commit ff6935c349
10 changed files with 356 additions and 8 deletions

View File

@ -424,6 +424,21 @@ export const constantRoutes = [{
}
}]
},
{
path: '/benyi/assessmentchild',
component: Layout,
hidden: true,
children: [{
path: 'student/:id(\\d+)',
component: () =>
import ('@/views/benyi/assessment/student'),
name: 'assessmentchild',
meta: {
title: '幼儿评估详情',
icon: ''
}
}]
},
{
path: '/job',
component: Layout,

View File

@ -0,0 +1,201 @@
<template>
<div class="app-container">
<el-form
:model="queryParams"
ref="queryForm"
:inline="true"
label-width="68px"
>
<el-form-item label="幼儿姓名" prop="name">
<el-input
v-model="queryParams.name"
placeholder="请输入幼儿姓名"
clearable
size="small"
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button
type="primary"
icon="el-icon-search"
size="mini"
@click="handleQuery"
>搜索</el-button
>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery"
>重置</el-button
>
</el-form-item>
</el-form>
<el-table
v-loading="loading"
:data="childList"
@selection-change="handleSelectionChange"
>
<el-table-column type="selection" width="55" align="center" />
<!-- <el-table-column label="编号" align="center" prop="id" /> -->
<!-- <el-table-column label="幼儿园名称" align="center" prop="schoolid" /> -->
<el-table-column
label="班级名称"
align="center"
prop="classid"
:formatter="classFormat"
/>
<el-table-column label="幼儿姓名" align="center" prop="name" />
<el-table-column label="幼儿出生日期" align="center" prop="csrq" />
<el-table-column
label="性别"
align="center"
prop="xb"
:formatter="xbFormat"
/>
<el-table-column
label="状态"
align="center"
prop="status"
:formatter="statusFormat"
/>
<el-table-column
label="操作"
align="center"
class-name="small-padding fixed-width"
>
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleAssessment(scope.row)"
>评估</el-button
>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total > 0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
</div>
</template>
<script>
import {
listChild,
getChild,
delChild,
addChild,
updateChild,
updateChild_tb,
importTemplate,
} from "@/api/benyi/child";
import { listClass } from "@/api/system/class";
export default {
name: "assessmentChild",
data() {
return {
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 总条数
total: 0,
// 幼儿信息表格数据
childList: [],
// 状态数据字典
statusOptions: [],
// 性别状态字典
sexOptions: [],
//班级
classOptions: [],
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 10,
classid: undefined,
name: undefined,
},
// 表单参数
form: {},
};
},
created() {
this.getList();
this.getClassList();
this.getDicts("sys_user_sex").then((response) => {
this.sexOptions = response.data;
});
this.getDicts("sys_normal_disable").then((response) => {
this.statusOptions = response.data;
});
},
methods: {
// 性别字典翻译
xbFormat(row, column) {
return this.selectDictLabel(this.sexOptions, row.xb);
},
// 字典翻译
statusFormat(row, column) {
return this.selectDictLabel(this.statusOptions, row.status);
},
// 字典翻译
classFormat(row, column) {
// return this.selectDictLabel(this.classOptions, row.classid);
var actions = [];
var datas = this.classOptions;
Object.keys(datas).map((key) => {
if (datas[key].bjbh == "" + row.classid) {
actions.push(datas[key].bjmc);
return false;
}
});
return actions.join("");
},
getClassList() {
listClass(null).then((response) => {
this.classOptions = response.rows;
});
},
/** 查询幼儿信息列表 */
getList() {
this.loading = true;
listChild(this.queryParams).then((response) => {
this.childList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map((item) => item.id);
this.single = selection.length != 1;
this.multiple = !selection.length;
},
handleAssessment(row) {
const id = row.id;
this.$router.push({ path: "/benyi/assessmentchild/student/" + id });
},
},
};
</script>

View File

@ -0,0 +1,92 @@
<template>
<div class="app-container">
<el-table
v-loading="loading"
:data="assessmentcontentList"
row-key="id"
default-expand-all
:tree-props="{ children: 'children', hasChildren: 'hasChildren' }"
>
<el-table-column prop="name" label="评估内容"></el-table-column>
<el-table-column label="是否达标" align="center">
<template slot-scope="scope">
<el-checkbox v-if="scope.row.iselement == 'Y'" v-model="checked"
></el-checkbox
>
</template>
</el-table-column>
</el-table>
</div>
</template>
<script>
import {
listAssessmentcontent,
getAssessmentcontent,
delAssessmentcontent,
addAssessmentcontent,
updateAssessmentcontent,
exportAssessmentcontent,
} from "@/api/benyi/assessmentcontent";
export default {
name: "Assessmentstudent",
data() {
return {
checked: true,
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 评估内容表格数据
assessmentcontentList: [],
// 查询参数
queryParams: {
parentid: undefined,
name: undefined,
iselement: undefined,
scope: undefined,
sort: undefined,
},
};
},
created() {
this.getList();
},
methods: {
/** 查询评估内容列表 */
getList() {
this.loading = true;
listAssessmentcontent(this.queryParams).then((response) => {
this.assessmentcontentList = this.handleTree(response.rows, "id");
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
},
};
</script>
<style lang="scss" scoped>
// 禁止复制
div {
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
</style>