Commit 9185ecce authored by 黄奎's avatar 黄奎

页面修改

parent 529686b6
......@@ -14,6 +14,15 @@
</q-tabs>
<template v-if="tabCheck=='first'">
<div class="col row wrap" style="margin-top:30px;">
<div class="col-2 baseSet_Title">
基础课时:
</div>
<div class="col-3">
<q-input filled stack-label maxlength="8" :dense="false" v-model="msg.BasicHours" ref="BasicHours"
class="q-pb-lg" @keyup.native="checkInteger(msg,'BasicHours')" :rules="[val => !!val || '请填写基础课时']" />
</div>
</div>
<div class="col row wrap">
<div class="col-2 baseSet_Title">
基础课时费:
</div>
......@@ -138,7 +147,8 @@
ConfigId: 0,
BasicHourFee: '', //基础课时费
BasicClassNum: '', //基础带班人数
BasicMinutes: '' //课时分钟数
BasicMinutes: '', //课时分钟数
BasicHours: 0, //基础课时
},
columns: [{
name: 'CTypeName',
......@@ -182,7 +192,8 @@
CTypeId: 0, //班级类型主键编号
CTypeName: '', //类型名称
AddHourFee: '', //课时费加价
DefaultClassNum: '' //默认班级人数
DefaultClassNum: '', //默认班级人数
},
//列表数据参数
tabeMsg: {
......@@ -224,6 +235,7 @@
this.msg.BasicHourFee = res.Data.BasicHourFee;
this.msg.BasicClassNum = res.Data.BasicClassNum;
this.msg.BasicMinutes = res.Data.BasicMinutes;
this.msg.BasicHours = res.Data.BasicHours;
}
}
})
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment