dev
lion 7 months ago
parent 0395bc1355
commit c238985de3

@ -91,7 +91,9 @@
name: '', name: '',
page: 1, page: 1,
page_size: 10, page_size: 10,
position: '' position: '',
sort_type:'ASC',
sort_name:'sort'
}, },
position_options: [{ position_options: [{
id: 1, id: 1,
@ -171,7 +173,9 @@
async getList() { async getList() {
const res = await index({ const res = await index({
page: this.select.page, page: this.select.page,
page_size: this.select.page_size, page_size: this.select.page_size,
sort_type:'ASC',
sort_name:'sort',
filter: [{ filter: [{
key: 'name', key: 'name',
op: 'like', op: 'like',

@ -159,9 +159,9 @@
if(e===2){ if(e===2){
this.canSelect = true this.canSelect = true
this.form.course_id = '' this.form.course_id = ''
this.form.jump_url = '' // this.form.jump_url = ''
this.form.image_id = '' // this.form.image_id = ''
this.imgList = [] // this.imgList = []
}else{ }else{
this.canSelect = false this.canSelect = false
} }

@ -128,9 +128,9 @@
<el-table-column align='center' label="姓名" width="120" header-align="center"> <el-table-column align='center' label="姓名" width="120" header-align="center">
<template slot-scope="scope"> <template slot-scope="scope">
<div>{{scope.row.user.username}}</div> <div>{{scope.row.user.username}}</div>
<div style="color:red" v-if="scope.row.change_data && scope.row.change_data.length>0"> <!-- <div style="color:red" v-if="scope.row.change_data && scope.row.change_data.length>0">
报名信息有变更 报名信息有变更
</div> </div> -->
</template> </template>
</el-table-column> </el-table-column>
</template> </template>

Loading…
Cancel
Save