|
@@ -14,6 +14,8 @@
|
|
<u-cell-item title="学生性别" :value="studentInfo.sex" :arrow="false"></u-cell-item>
|
|
<u-cell-item title="学生性别" :value="studentInfo.sex" :arrow="false"></u-cell-item>
|
|
<u-cell-item title="学生年龄" :value="studentInfo.age" :arrow="false"></u-cell-item>
|
|
<u-cell-item title="学生年龄" :value="studentInfo.age" :arrow="false"></u-cell-item>
|
|
<u-cell-item title="手机号码" :value="studentInfo.phone" :arrow="false"></u-cell-item>
|
|
<u-cell-item title="手机号码" :value="studentInfo.phone" :arrow="false"></u-cell-item>
|
|
|
|
+ <u-cell-item title="剩余课时" :value="studentInfo.residue" :arrow="false"></u-cell-item>
|
|
|
|
+ <u-cell-item title="过期时间" :value="studentInfo.expireTime" :arrow="false"></u-cell-item>
|
|
<u-cell-item :title="type == 1 ? '成长历程' : '沟通记录'" :arrow="false" :title-style="{fontSize: '16px',fontWeight: 'bold'}"></u-cell-item>
|
|
<u-cell-item :title="type == 1 ? '成长历程' : '沟通记录'" :arrow="false" :title-style="{fontSize: '16px',fontWeight: 'bold'}"></u-cell-item>
|
|
<u-cell-item :title="type == 1 ? item.name : item.coachName" :value="item.time" :label="item.content" :arrow="false"
|
|
<u-cell-item :title="type == 1 ? item.name : item.coachName" :value="item.time" :label="item.content" :arrow="false"
|
|
v-for="(item, index1) in tableList" :key="index1" :title-style="{fontSize: '14px',fontWeight: 'bold'}"></u-cell-item>
|
|
v-for="(item, index1) in tableList" :key="index1" :title-style="{fontSize: '14px',fontWeight: 'bold'}"></u-cell-item>
|
|
@@ -74,7 +76,8 @@
|
|
methods: {
|
|
methods: {
|
|
initialize() {
|
|
initialize() {
|
|
NET.request(this.type == 1 ? API.getStudentDetail : API.getSignStudentInfo, {
|
|
NET.request(this.type == 1 ? API.getStudentDetail : API.getSignStudentInfo, {
|
|
- id: this.id
|
|
|
|
|
|
+ id: this.id,
|
|
|
|
+ classId:this.classId
|
|
}, 'POST').then(res => {
|
|
}, 'POST').then(res => {
|
|
this.studentInfo = res.data
|
|
this.studentInfo = res.data
|
|
if (this.type == 1) {
|
|
if (this.type == 1) {
|