优化
This commit is contained in:
parent
31d69d8ded
commit
2fa26a8890
@ -3,10 +3,9 @@
|
||||
<div class="flex align-center justify-between">
|
||||
<p class="title flex align-center">
|
||||
<span
|
||||
>幼儿姓名:{{ this.childName }} 出身日期:{{
|
||||
this.bridth
|
||||
}}
|
||||
评估结果图表
|
||||
>幼儿姓名:{{ this.childName }} 出身日期:{{ this.bridth }} ({{
|
||||
this.months
|
||||
}}个月) 评估结果图表
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
@ -403,6 +402,7 @@ export default {
|
||||
childName: "",
|
||||
bridth: "",
|
||||
classid: "",
|
||||
months: "",
|
||||
// tabs列表
|
||||
tabsList: [],
|
||||
activeName: "",
|
||||
@ -439,6 +439,7 @@ export default {
|
||||
this.childName = response.data.name;
|
||||
this.bridth = response.data.csrq;
|
||||
this.classid = response.data.classid;
|
||||
this.months = response.months;
|
||||
}
|
||||
});
|
||||
},
|
||||
|
@ -27,17 +27,20 @@
|
||||
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
border
|
||||
:data="schoolchargeList"
|
||||
@selection-change="handleSelectionChange"
|
||||
>
|
||||
<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="hsf" />
|
||||
<el-table-column
|
||||
label="操作"
|
||||
align="center"
|
||||
class-name="small-padding fixed-width"
|
||||
class-name="small-padding fixed-width edit-btns"
|
||||
width="60"
|
||||
fixed="right"
|
||||
>
|
||||
<template slot-scope="scope">
|
||||
<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-item label="保育费(月)" prop="byf">
|
||||
<el-input-number v-model="form.byf" :precision="2" placeholder="请输入保育费" />
|
||||
@ -224,4 +227,12 @@ 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,
|
||||
name: "60-72个月幼儿测评范围值",
|
||||
symbol: "circle",
|
||||
symbolSize: 10,
|
||||
lineStyle: {
|
||||
normal: {
|
||||
type: "solid",
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
color: "#f08080",
|
||||
},
|
||||
areaStyle: {
|
||||
opacity: 0.7,
|
||||
},
|
||||
},
|
||||
{
|
||||
value: this.values,
|
||||
name: "幼儿实际测评值",
|
||||
symbolSize: 5,
|
||||
lineStyle: {
|
||||
normal: {
|
||||
type: "dotted",
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
color: "#ebcc7b",
|
||||
},
|
||||
areaStyle: {
|
||||
opacity: 0.5,
|
||||
},
|
||||
},
|
||||
],
|
||||
animationDuration: animationDuration,
|
||||
@ -236,10 +261,35 @@ export default {
|
||||
{
|
||||
value: this.mbvalues,
|
||||
name: "48-60个月幼儿测评范围值",
|
||||
symbol: "circle",
|
||||
symbolSize: 10,
|
||||
lineStyle: {
|
||||
normal: {
|
||||
type: "solid",
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
color: "#f08080",
|
||||
},
|
||||
areaStyle: {
|
||||
opacity: 0.7,
|
||||
},
|
||||
},
|
||||
{
|
||||
value: this.values,
|
||||
name: "幼儿实际测评值",
|
||||
symbolSize: 5,
|
||||
lineStyle: {
|
||||
normal: {
|
||||
type: "dotted",
|
||||
},
|
||||
},
|
||||
itemStyle: {
|
||||
color: "#ebcc7b",
|
||||
},
|
||||
areaStyle: {
|
||||
opacity: 0.5,
|
||||
},
|
||||
},
|
||||
],
|
||||
animationDuration: animationDuration,
|
||||
|
@ -155,6 +155,7 @@ public class ByChildController extends BaseController {
|
||||
} else {
|
||||
ajax.put("isAssessment", 0);
|
||||
}
|
||||
ajax.put("months", iMonths);
|
||||
} else {
|
||||
ajax.put("isAssessment", 0);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user