优化
This commit is contained in:
parent
31d69d8ded
commit
2fa26a8890
@ -3,10 +3,9 @@
|
|||||||
<div class="flex align-center justify-between">
|
<div class="flex align-center justify-between">
|
||||||
<p class="title flex align-center">
|
<p class="title flex align-center">
|
||||||
<span
|
<span
|
||||||
>幼儿姓名:{{ this.childName }} 出身日期:{{
|
>幼儿姓名:{{ this.childName }} 出身日期:{{ this.bridth }} ({{
|
||||||
this.bridth
|
this.months
|
||||||
}}
|
}}个月) 评估结果图表
|
||||||
评估结果图表
|
|
||||||
</span>
|
</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
@ -403,6 +402,7 @@ export default {
|
|||||||
childName: "",
|
childName: "",
|
||||||
bridth: "",
|
bridth: "",
|
||||||
classid: "",
|
classid: "",
|
||||||
|
months: "",
|
||||||
// tabs列表
|
// tabs列表
|
||||||
tabsList: [],
|
tabsList: [],
|
||||||
activeName: "",
|
activeName: "",
|
||||||
@ -439,6 +439,7 @@ export default {
|
|||||||
this.childName = response.data.name;
|
this.childName = response.data.name;
|
||||||
this.bridth = response.data.csrq;
|
this.bridth = response.data.csrq;
|
||||||
this.classid = response.data.classid;
|
this.classid = response.data.classid;
|
||||||
|
this.months = response.months;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -27,17 +27,20 @@
|
|||||||
|
|
||||||
<el-table
|
<el-table
|
||||||
v-loading="loading"
|
v-loading="loading"
|
||||||
|
border
|
||||||
:data="schoolchargeList"
|
:data="schoolchargeList"
|
||||||
@selection-change="handleSelectionChange"
|
@selection-change="handleSelectionChange"
|
||||||
>
|
>
|
||||||
<el-table-column type="selection" width="55" align="center" />
|
<el-table-column type="selection" width="55" align="center" />
|
||||||
<el-table-column label="园所名称" align="center" prop="dept.deptName" />
|
<el-table-column label="园所名称" fixed="" align="center" prop="dept.deptName" />
|
||||||
<el-table-column label="保育费/月" align="center" prop="byf" />
|
<el-table-column label="保育费/月" align="center" prop="byf" />
|
||||||
<el-table-column label="伙食费/天" align="center" prop="hsf" />
|
<el-table-column label="伙食费/天" align="center" prop="hsf" />
|
||||||
<el-table-column
|
<el-table-column
|
||||||
label="操作"
|
label="操作"
|
||||||
align="center"
|
align="center"
|
||||||
class-name="small-padding fixed-width"
|
class-name="small-padding fixed-width edit-btns"
|
||||||
|
width="60"
|
||||||
|
fixed="right"
|
||||||
>
|
>
|
||||||
<template slot-scope="scope">
|
<template slot-scope="scope">
|
||||||
<el-button
|
<el-button
|
||||||
@ -69,7 +72,7 @@
|
|||||||
/>
|
/>
|
||||||
|
|
||||||
<!-- 添加或修改园所收费标准对话框 -->
|
<!-- 添加或修改园所收费标准对话框 -->
|
||||||
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
<el-dialog :title="title" :visible.sync="open" class="v-dialog">
|
||||||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||||||
<el-form-item label="保育费(月)" prop="byf">
|
<el-form-item label="保育费(月)" prop="byf">
|
||||||
<el-input-number v-model="form.byf" :precision="2" placeholder="请输入保育费" />
|
<el-input-number v-model="form.byf" :precision="2" placeholder="请输入保育费" />
|
||||||
@ -225,3 +228,11 @@ export default {
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
<style lang="scss" scoped>
|
||||||
|
.edit-btns {
|
||||||
|
.el-button {
|
||||||
|
display: block;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
@ -171,10 +171,35 @@ export default {
|
|||||||
{
|
{
|
||||||
value: this.mbvalues,
|
value: this.mbvalues,
|
||||||
name: "60-72个月幼儿测评范围值",
|
name: "60-72个月幼儿测评范围值",
|
||||||
|
symbol: "circle",
|
||||||
|
symbolSize: 10,
|
||||||
|
lineStyle: {
|
||||||
|
normal: {
|
||||||
|
type: "solid",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: "#f08080",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
opacity: 0.7,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: this.values,
|
value: this.values,
|
||||||
name: "幼儿实际测评值",
|
name: "幼儿实际测评值",
|
||||||
|
symbolSize: 5,
|
||||||
|
lineStyle: {
|
||||||
|
normal: {
|
||||||
|
type: "dotted",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: "#ebcc7b",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
opacity: 0.5,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
animationDuration: animationDuration,
|
animationDuration: animationDuration,
|
||||||
@ -236,10 +261,35 @@ export default {
|
|||||||
{
|
{
|
||||||
value: this.mbvalues,
|
value: this.mbvalues,
|
||||||
name: "48-60个月幼儿测评范围值",
|
name: "48-60个月幼儿测评范围值",
|
||||||
|
symbol: "circle",
|
||||||
|
symbolSize: 10,
|
||||||
|
lineStyle: {
|
||||||
|
normal: {
|
||||||
|
type: "solid",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: "#f08080",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
opacity: 0.7,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
value: this.values,
|
value: this.values,
|
||||||
name: "幼儿实际测评值",
|
name: "幼儿实际测评值",
|
||||||
|
symbolSize: 5,
|
||||||
|
lineStyle: {
|
||||||
|
normal: {
|
||||||
|
type: "dotted",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
itemStyle: {
|
||||||
|
color: "#ebcc7b",
|
||||||
|
},
|
||||||
|
areaStyle: {
|
||||||
|
opacity: 0.5,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
animationDuration: animationDuration,
|
animationDuration: animationDuration,
|
||||||
|
@ -155,6 +155,7 @@ public class ByChildController extends BaseController {
|
|||||||
} else {
|
} else {
|
||||||
ajax.put("isAssessment", 0);
|
ajax.put("isAssessment", 0);
|
||||||
}
|
}
|
||||||
|
ajax.put("months", iMonths);
|
||||||
} else {
|
} else {
|
||||||
ajax.put("isAssessment", 0);
|
ajax.put("isAssessment", 0);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user