重新同步教职工数据修改
This commit is contained in:
@@ -222,7 +222,6 @@ export default {
|
|||||||
getList() {
|
getList() {
|
||||||
this.loading = true
|
this.loading = true
|
||||||
listInstructor(this.queryParams).then(response => {
|
listInstructor(this.queryParams).then(response => {
|
||||||
console.log(response.data);
|
|
||||||
this.middleList = response.data
|
this.middleList = response.data
|
||||||
this.total = response.total
|
this.total = response.total
|
||||||
this.loading = false
|
this.loading = false
|
||||||
|
|||||||
@@ -80,13 +80,13 @@ export default {
|
|||||||
}, `middle_${new Date().getTime()}.xlsx`)
|
}, `middle_${new Date().getTime()}.xlsx`)
|
||||||
},
|
},
|
||||||
//同步数据
|
//同步数据
|
||||||
handleSync() {
|
async handleSync() {
|
||||||
syncInstructorinfonew().then(res => {
|
let res = await syncInstructorinfonew()
|
||||||
|
if (res.code == 200) {
|
||||||
this.$modal.msgSuccess(res.msg)
|
this.$modal.msgSuccess(res.msg)
|
||||||
})
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
@@ -190,7 +190,7 @@
|
|||||||
:label="dict.value"
|
:label="dict.value"
|
||||||
>{{ dict.label }}</el-radio>
|
>{{ dict.label }}</el-radio>
|
||||||
</el-radio-group> -->
|
</el-radio-group> -->
|
||||||
<el-select v-model="queryParams.status" placeholder="请选择状态" clearable>
|
<el-select v-model="form.status" placeholder="请选择状态" clearable>
|
||||||
<el-option
|
<el-option
|
||||||
v-for="dict in dict.type.teacher_status"
|
v-for="dict in dict.type.teacher_status"
|
||||||
:key="dict.value"
|
:key="dict.value"
|
||||||
|
|||||||
Reference in New Issue
Block a user