This commit is contained in:
zhanglipeng 2020-12-18 15:57:30 +08:00
parent 56fd60a4cf
commit 0e021d2f83
3 changed files with 6 additions and 3 deletions

View File

@ -123,7 +123,7 @@ export default {
}, },
methods: { methods: {
handleEventClick(info) { handleEventClick(info) {
this.msgSuccess("活动: " + info.event.title); this.msgSuccess("事件: " + info.event.title);
}, },
}, },
mounted() { mounted() {

View File

@ -942,6 +942,8 @@ export default {
getClassList() { getClassList() {
listClass(null).then((response) => { listClass(null).then((response) => {
this.classOptions = response.rows; this.classOptions = response.rows;
// console.log(response.rows[0].bjbh);
// this.form.classid = response.rows[0].bjbh;
}); });
}, },
/** 查询幼儿信息列表 */ /** 查询幼儿信息列表 */
@ -1067,6 +1069,7 @@ export default {
this.reset(); this.reset();
this.open = true; this.open = true;
this.title = "添加幼儿信息"; this.title = "添加幼儿信息";
this.form.classid = this.classOptions[0].bjbh;
}, },
/** 修改按钮操作 */ /** 修改按钮操作 */
async handleUpdate(row) { async handleUpdate(row) {

View File

@ -85,7 +85,7 @@ export default {
}, },
methods: { methods: {
handleEventClick(info) { handleEventClick(info) {
this.msgSuccess("活动: " + info.event.title); this.msgSuccess("事件: " + info.event.title);
} }
}, },
mounted() { mounted() {