|
@@ -1,7 +1,7 @@
|
|
<template>
|
|
<template>
|
|
<div class="m-container">
|
|
<div class="m-container">
|
|
<h2>
|
|
<h2>
|
|
- <el-page-header @back="goBack" content="陪练课程组"></el-page-header>
|
|
|
|
|
|
+ <el-page-header @back="goBack" :content="name"></el-page-header>
|
|
</h2>
|
|
</h2>
|
|
<!-- v-permission="'vipGroupManage/updateVipBaseInfo'" -->
|
|
<!-- v-permission="'vipGroupManage/updateVipBaseInfo'" -->
|
|
<!-- <div
|
|
<!-- <div
|
|
@@ -137,6 +137,7 @@ export default {
|
|
},
|
|
},
|
|
data() {
|
|
data() {
|
|
return {
|
|
return {
|
|
|
|
+ name:'陪练课程组',
|
|
courseVisible: false,
|
|
courseVisible: false,
|
|
Frules: null,
|
|
Frules: null,
|
|
FsearchForm: null,
|
|
FsearchForm: null,
|
|
@@ -188,6 +189,9 @@ export default {
|
|
if (res.code == 200) {
|
|
if (res.code == 200) {
|
|
this.tableList = res.data.pageInfo.rows;
|
|
this.tableList = res.data.pageInfo.rows;
|
|
this.rules.total = res.data.pageInfo.total;
|
|
this.rules.total = res.data.pageInfo.total;
|
|
|
|
+ if( this.tableList.length >0){
|
|
|
|
+ this.name = this.tableList[0].name;
|
|
|
|
+ }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
);
|
|
);
|