1
This commit is contained in:
parent
5299fd6b91
commit
392145c50b
@ -45,7 +45,7 @@ export function delPay(id) {
|
|||||||
|
|
||||||
export function findJlListAll(jlId) {
|
export function findJlListAll(jlId) {
|
||||||
return request({
|
return request({
|
||||||
url: `/drivingSchool/system/schoolCoach/findSelfJlListByJxId?jxId=${jlId}`,
|
url: `/base/dl-drive-school-coach/list`,
|
||||||
method: 'get'
|
method: 'get'
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -250,7 +250,7 @@
|
|||||||
|
|
||||||
<el-table v-loading="loading" :data="jlListAll" @selection-change="handleSelectionChange">
|
<el-table v-loading="loading" :data="jlListAll" @selection-change="handleSelectionChange">
|
||||||
|
|
||||||
<el-table-column label="教练姓名" align="center" prop="instructorName" />
|
<el-table-column label="教练姓名" align="center" prop="name" />
|
||||||
<el-table-column label="手机号" align="center" prop="phone" />
|
<el-table-column label="手机号" align="center" prop="phone" />
|
||||||
|
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
@ -259,7 +259,7 @@
|
|||||||
size="mini"
|
size="mini"
|
||||||
type="text"
|
type="text"
|
||||||
icon="el-icon-edit"
|
icon="el-icon-edit"
|
||||||
@click="okJlClick(scope.row.instructorName, scope.row.id)"
|
@click="okJlClick(scope.row.name, scope.row.userId)"
|
||||||
>选择</el-button>
|
>选择</el-button>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
@ -356,7 +356,7 @@ export default {
|
|||||||
async changeJlClick(jlId, bmId) {
|
async changeJlClick(jlId, bmId) {
|
||||||
this.isJl = true
|
this.isJl = true
|
||||||
let res = await findJlListAll(jlId);
|
let res = await findJlListAll(jlId);
|
||||||
this.jlListAll = res
|
this.jlListAll = res.data
|
||||||
this.bmId = bmId
|
this.bmId = bmId
|
||||||
},
|
},
|
||||||
/** 查询订单列表 */
|
/** 查询订单列表 */
|
||||||
|
Loading…
Reference in New Issue
Block a user