mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-16 14:26:45 +08:00
讲师列表调整
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
<div class="qr_header"></div>
|
||||
<div class="qr_main">
|
||||
<div class="qrm_header">
|
||||
<span style="title">导入授课记录</span>
|
||||
<span style="title">{{ title }}</span>
|
||||
<div class="close_exit" @click="closeCodeModal"></div>
|
||||
</div>
|
||||
<div class="line"></div>
|
||||
@@ -156,6 +156,10 @@ import {getCookieForName} from "@/api/method";
|
||||
type: String,
|
||||
default: null,
|
||||
},
|
||||
title:{
|
||||
type: String,
|
||||
default: null,
|
||||
}
|
||||
},
|
||||
setup(props, ctx) {
|
||||
const state = reactive({
|
||||
|
||||
@@ -627,7 +627,7 @@ export default {
|
||||
//导出功能
|
||||
const handleExport = () => {
|
||||
window.open(
|
||||
`${process.env.VUE_APP_BASE_API}/teacher/export?pageNo=${state.searchParam.currentPage
|
||||
`${process.env.VUE_APP_BASE_API}/teacher/export?pageNo=${state.searchParam.pageNo
|
||||
}&pageSize=${state.searchParam.pageSize}&teacherNameOrMobel=${state.searchParam.teacherNameOrMobel ? state.searchParam.teacherNameOrMobel : ""}&status=${state.searchParam.status ? state.searchParam.status : ""}`
|
||||
);
|
||||
// this.download('lesson_records/export', {
|
||||
|
||||
@@ -777,7 +777,7 @@ const handleImport = () => {
|
||||
//导出功能
|
||||
const handleExport = () => {
|
||||
window.open(
|
||||
`${process.env.VUE_APP_BASE_API}/teacher/export?pageNo=${state.searchParam.currentPage
|
||||
`${process.env.VUE_APP_BASE_API}/lesson_records/export?pageNo=${state.searchParam.currentPage
|
||||
}&pageSize=${state.searchParam.pageSize}
|
||||
&userNo=${state.searchParam.userNo ? state.searchParam.userNo : ""
|
||||
}
|
||||
|
||||
@@ -597,7 +597,7 @@ export default {
|
||||
photo: 'https://p0.itc.cn/q_70/images01/20211013/f45d91616a364d6ea9c42a8db69734aa.png'
|
||||
},
|
||||
searchParam: {
|
||||
currentPage: 1,
|
||||
pageNo: 1,
|
||||
// pageSize1: "10",
|
||||
teacherNameOrUserNo: null,
|
||||
systemId: null,
|
||||
@@ -783,12 +783,12 @@ export default {
|
||||
}
|
||||
changetlevel()
|
||||
const OnTheJobStatusList = ref([
|
||||
{ value: '', label: "全部" },
|
||||
{ value: null, label: "全部" },
|
||||
{ value: 0, label: "在职" },
|
||||
{ value: 1, label: "离职" },
|
||||
])
|
||||
const AuthenticationStatusList = ref([
|
||||
{ value: '', label: "全部" },
|
||||
{ value: null, label: "全部" },
|
||||
{ value: 0, label: "未认证" },
|
||||
{ value: 1, label: "已认证" },
|
||||
])
|
||||
@@ -1008,7 +1008,7 @@ export default {
|
||||
// // 翻页
|
||||
const changePagination = (page, pageSize) => {
|
||||
state.searchParam.pageNo = page;
|
||||
// state.currentPage = page;
|
||||
// state.pageNo = page;
|
||||
state.searchParam.pageSize = pageSize;
|
||||
getTableDate();
|
||||
};
|
||||
@@ -1268,9 +1268,8 @@ export default {
|
||||
//导出功能
|
||||
const handleExport = () => {
|
||||
window.open(
|
||||
`${process.env.VUE_APP_BASE_API}/teacher/export?pageNo=${state.searchParam.currentPage
|
||||
}&pageSize=${state.searchParam.pageSize}
|
||||
&teacherNameOrUserNo=${state.searchParam.teacherNameOrUserNo ? state.searchParam.teacherNameOrUserNo : ""}
|
||||
`${process.env.VUE_APP_BASE_API}/teacher/export?pageNo=${state.searchParam.pageNo
|
||||
}&pageSize=${state.searchParam.pageSize}&teacherNameOrUserNo=${state.searchParam.teacherNameOrUserNo ? state.searchParam.teacherNameOrUserNo : ""}
|
||||
&systemId=${state.searchParam.systemId ? state.searchParam.systemId : ""}
|
||||
&levelId=${state.searchParam.levelId ? state.searchParam.levelId : ""
|
||||
}&waitStatus=${state.searchParam.waitStatus ? state.searchParam.waitStatus : ""}
|
||||
|
||||
@@ -144,7 +144,7 @@
|
||||
<a-col :span="12">
|
||||
<a-form-item label="讲师名称" name="teacher">
|
||||
|
||||
<SearchTeacher v-model:value="formParam.name" v-model:lable="formParam.orgName"
|
||||
<SearchTeacher v-model:value="formParam.teacher" v-model:lable="formParam.orgName"
|
||||
v-model:newlable="formParam.neworgName"></SearchTeacher>
|
||||
</a-form-item>
|
||||
</a-col>
|
||||
|
||||
Reference in New Issue
Block a user