|
@@ -50,7 +50,7 @@
|
|
|
<el-form-item>
|
|
|
<el-input v-model.trim="searchForm.search"
|
|
|
@keyup.enter.native="search"
|
|
|
- placeholder='学生编号,手机号'></el-input>
|
|
|
+ placeholder='学员编号,手机号'></el-input>
|
|
|
</el-form-item>
|
|
|
<el-form-item>
|
|
|
<el-select v-model.trim="searchForm.subjectId"
|
|
@@ -113,11 +113,11 @@
|
|
|
<div class="newBand"
|
|
|
@click="addStudentBtn"
|
|
|
v-if="info.paymentStatus != 2"
|
|
|
- v-permission="'musicGroupPaymentCalenderDetail/add'">新增学生</div>
|
|
|
+ v-permission="'musicGroupPaymentCalenderDetail/add'">新增学员</div>
|
|
|
<div class="newBand"
|
|
|
@click="delStudentBtn"
|
|
|
v-if="info.paymentStatus == 0"
|
|
|
- v-permission="'musicGroupPaymentCalenderDetail/batchDel'">删除学生</div>
|
|
|
+ v-permission="'musicGroupPaymentCalenderDetail/batchDel'">删除学员</div>
|
|
|
</div>
|
|
|
|
|
|
<div class="tableWrap">
|
|
@@ -260,8 +260,8 @@
|
|
|
label-width="120px"
|
|
|
label-position="right"
|
|
|
ref='resetPayForm'>
|
|
|
- <!-- <el-form-item label="学生姓名"
|
|
|
- :rules="[{ required: true, message: '学生姓名',trigger: 'blur'}]"
|
|
|
+ <!-- <el-form-item label="学员姓名"
|
|
|
+ :rules="[{ required: true, message: '学员姓名',trigger: 'blur'}]"
|
|
|
prop="startDate">
|
|
|
<el-input disabled
|
|
|
value="张三"></el-input>
|
|
@@ -439,7 +439,7 @@ export default {
|
|
|
resetPay () {
|
|
|
// this.activeRow = row;
|
|
|
if (this.activeChiose.length < 1) {
|
|
|
- this.$message.error('请至少选择一名学生')
|
|
|
+ this.$message.error('请至少选择一名学员')
|
|
|
return
|
|
|
}
|
|
|
let ids = this.activeChiose.map(item => {
|
|
@@ -461,7 +461,7 @@ export default {
|
|
|
},
|
|
|
startPay () {
|
|
|
if (this.activeChiose.length < 1) {
|
|
|
- this.$message.error('请至少选择一名学生')
|
|
|
+ this.$message.error('请至少选择一名学员')
|
|
|
return
|
|
|
}
|
|
|
|
|
@@ -502,7 +502,7 @@ export default {
|
|
|
},
|
|
|
delStudentBtn () {
|
|
|
if (this.activeChiose.length < 1) {
|
|
|
- this.$message.error('请至少选择一名学生')
|
|
|
+ this.$message.error('请至少选择一名学员')
|
|
|
return
|
|
|
}
|
|
|
this.$confirm(`是否删除此学员`, '提示', {
|
|
@@ -527,7 +527,7 @@ export default {
|
|
|
},
|
|
|
submitAddStudent () {
|
|
|
if (!this.chioseStudent) {
|
|
|
- this.$message.error('请选择学生')
|
|
|
+ this.$message.error('请选择学员')
|
|
|
return
|
|
|
}
|
|
|
addMusicGroupPaymentCalenderStudent({ musicGroupPaymentCalenderId: this.id, userId: this.chioseStudent.userId }).then(res => {
|