修改教师管理和试卷管理逻辑,优化手机端样式

This commit is contained in:
2023-02-28 17:56:56 +08:00
parent 0e709b5698
commit f9d865b615
10 changed files with 1697 additions and 439 deletions

View File

@@ -1,375 +1,21 @@
<script setup>
// 引入依赖
import api from '@/api/teacher'
import capi from '@/api/course'
import custom from '@/utils/custom'
import {formatDate} from '@/utils/format'
// import { toSQLLine } from '@/utils/stringFun'
// import WarningBar from '@/components/warningBar/warningBar.vue'
// import coursePool from './components/coursePool.vue'
// import exercisesPool from '@/view/course/components/exercisesPool.vue'
import {ref,onMounted,provide } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRouter, useRoute } from 'vue-router'
const router = useRouter()
const route = useRoute()
// store
import { useUserStore } from '@/pinia/modules/user'
const userStore = useUserStore()
// 变量
const path = ref(import.meta.env.VITE_BASE_API)
// const typeList = custom.getExercisesTypeList()
const queryParams = ref({
page:1,
pageSize:10,
name:''
})
const subjectParams = ref({
pageIndex:1,
pageSize:100,
})
const tableData = ref([])
const subjectList = ref([])
const current_subject = ref('')
const deleteVisible = ref(false)
const question_ids = ref([])
const total = ref(0)
const dialogFormVisible = ref(false)
const dialogTitle = ref('')
const form =ref({})
const rules = ref({
name: [{ required: true, message: '请输入课程名称', trigger: 'blur' }]
})
const question_id = ref(0)
const content = ref(null)
// const options = ref([]) // 答案选项数组
const exam_types = ref([])
const exam_ids = ref([])
// 生命周期
onMounted(() => {
getTeacherList()
// getSubject()
})
provide('subjectList', subjectList)
provide('current_subject', current_subject)
// 方法
async function getTeacherList() {
const res = await api.getTeacherList(queryParams.value)
if(res.code === 0) {
tableData.value = res.data.records
total.value = res.data.total
}
}
async function getSubject(){ // 获取课程分类
const res = await capi.getSubjectList(subjectParams.value)
if(res.code === 0) {
subjectList.value = custom.getStdSubject(res.data.records)
}
}
function onSubmit() {
getTeacherList()
}
const onReset = () => {
queryParams.value = {
pageIndex:1,
pageSize:10,
name:'',
status:'',
subject:''
}
}
function openDialog(type) {
// let params = {}
switch (type){
case 'add':
dialogTitle.value = '新增试卷'
form.value = {}
break;
case 'edit':
// params.question_id = question_id.value
dialogTitle.value = '编辑试卷'
break;
}
dialogFormVisible.value = true
// router.push({name:'addCourse',params})
}
async function onDelete() {
const ids = exam_ids.value
const res = await api.delExamination({ exam_ids:ids })
if (res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
// if (tableData.value.length === ids.length && page.value > 1) {
// page.value--
// }
deleteVisible.value = false
getTeacherList()
}
}
const handleSelectionChange = (val) => {
exam_ids.value = val.map((item) => {
return item.exam_id
})
}
function editCourseFunc(row) {
row.course_ids = JSON.parse(row.course_ids)
row.question_ids = JSON.parse(row.question_ids)
form.value = row.exam
exam_types.value = row.exam_types.map((item) => {
return item.persons
})
current_subject.value = form.value.subject
openDialog('edit')
}
function deleteExamFunc(row) {
ElMessageBox.confirm('此操作将永久删除该数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(async() => {
const res = await api.delExamination({
exam_ids:[row.exam_id]
})
if (res.code === 0) {
ElMessage({
type: 'success',
message: '删除成功!'
})
getTeacherList()
}
},() => {
})
}
function handleCurrentChange(val) {
queryParams.value.pageIndex = val
getTeacherList()
}
function handleSizeChange(val) {
queryParams.value.pageSize = val
getTeacherList()
}
function closeDialog(){
dialogFormVisible.value = false
exam_types.value = []
form.value = {}
}
async function enterDialog() { // 提交
form.value.teacher_id = 0
form.value.exam_type = exam_types.value.map((item) => {
return item = parseInt(item)
})
form.value.duration = parseInt(form.value.duration)
// return
const params = {
...form.value
}
params.question_ids = JSON.stringify(form.value.question_ids)
params.course_ids = JSON.stringify(form.value.course_ids)
let func_name = 'addExamination'
if(form.value.exam_id) { // 编辑
func_name = 'editExamination'
}
const res = await api[func_name](params)
if(res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
closeDialog()
getTeacherList()
}
}
function viewTeacherFunc(row) { // 查看订单
console.log(row)
router.push({name:'teacherDetail',params:{id:row.teacher_info_id}})
}
function getExercisesName(row) {
return JSON.parse(row.question).title
}
// const std_options_title = ref(['A','B','C','D','E','F'])
function addOptionFunc() {
exam_types.value.push('')
}
function delet_func() {
exam_types.value.pop()
}
function getStateName(state) {
let str = ''
switch (state){
case 1:
str = '未付款'
break;
case 2:
str = '已付款'
break;
case 3:
str = '已过期'
break;
}
return str
}
function handleAvatarSuccess(res) {
form.value.cover = res.data.file.url
// handlerChange()
}
function beforeAvatarUpload(file) {
const isLt05M = file.size / 1024 / 1024 < 20
const isJPG = file.type.indexOf('image/') === -1
if (isJPG) {
ElMessage.error('文件格式错误,请上传图片类型,如JPGPNG后缀的文件')
}
if (!isLt05M) {
ElMessage.error('上传头像图片大小不能超过 2M!')
}
return !isJPG && isLt05M
}
function changeSubjectFunc(e) {
current_subject.value = e
}
function addExercisesFunc(data) {
form.value.question_ids = data
}
function addCourseFunc(data) {
form.value.course_ids = data
}
function getTypeName(type) {
let name = ""
switch (type) {
case 1:
name = '课程';
break;
case 2:
name = '章节';
break;
case 3:
name = '子章节';
break;
case 4:
name = '试卷';
break;
}
return name
}
</script>
<template>
<div>
<!-- 搜索框-->
<div class="gva-search-box">
<el-form ref="searchForm" :inline="true" :model="queryParams">
<el-form-item label="订单名称">
<el-input v-model="queryParams.name" placeholder="根据订单名称进行查询" />
</el-form-item>
<el-form-item>
<el-button size="small" type="primary" icon="search" @click="onSubmit">查询</el-button>
<el-button size="small" icon="refresh" @click="onReset">重置</el-button>
</el-form-item>
</el-form>
</div>
<!-- 表格数据-->
<div class="gva-table-box">
<!-- 批量操作-->
<div class="gva-btn-list">
<el-popover v-model="deleteVisible" placement="top" width="160">
<p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;">
<el-button size="small" type="primary" link @click="deleteVisible = false">取消</el-button>
<el-button size="small" type="primary" @click="onDelete">确定</el-button>
</div>
</el-popover>
</div>
<!-- 数据列表-->
<el-table :data="tableData" @selection-change="handleSelectionChange">
<el-table-column align="center" label="ID" prop="teacher_info_id" sortable="custom" />
<el-table-column align="center" label="头像">
<template #default="scope">
<img class="avatar-box" :src="scope.row.avatar" alt="">
</template>
</el-table-column>
<el-table-column align="center" label="姓名" prop="name" />
<el-table-column align="center" label="手机号" min-width="150" prop="phone" />
<el-table-column align="center" label="所属区域" min-width="150" prop="province" />
<el-table-column align="center" label="申请时间" min-width="150" >
<template #default="scope">
{{formatDate(scope.row.CreatedAt)}}
</template>
</el-table-column>
<el-table-column align="center" label="推荐人ID" prop="invite_id" />
<el-table-column align="center" label="授课次数" prop="publish_course" />
<el-table-column align="center" label="测试次数" prop="publish_exam" />
<el-table-column align="center" label="累计销售" prop="exam_sale" />
<el-table-column align="center" label="状态" min-width="150" prop="exam_sale">
<template #default="scope">
<div>{{scope.row.status == 1?'查看':scope.row.status == 2?'已拒绝':'已同意'}}</div>
</template>
</el-table-column>
<el-table-column align="center" fixed="right" label="操作" width="200">
<template #default="scope">
<el-button
icon="edit"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>查看</el-button>
<el-button v-if="scope.row.status == 1"
icon="edit"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>同意</el-button>
<el-button v-if="scope.row.status == 1"
icon="delete"
size="small"
type="danger"
link
@click="deleteExamFunc(scope.row)"
>拒绝</el-button>
</template>
</el-table-column>
</el-table>
<div class="gva-pagination">
<el-pagination
:current-page="queryParams.page"
:page-size="queryParams.pageSize"
:page-sizes="[10, 30, 50, 100]"
:total="total"
layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
/>
</div>
</div>
<router-view v-slot="{ Component }">
<transition mode="out-in" name="el-fade-in-linear">
<keep-alive :include="routerStore.keepAliveRouters">
<component :is="Component" />
</keep-alive>
</transition>
</router-view>
</div>
</template>
<style scoped lang="scss">
.avatar-box{
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid #dbdbdb;
}
.e-img{
width: 150px;
height: 100px;
}
.option-item{
display: flex;
align-items: center;
margin-bottom: 10px;
}
.button-box {
padding: 10px 20px;
.el-button {
float: right;
}
}
.warning {
color: #dc143c;
}
</style>
<script>
export default {
name: 'teacherManage'
}
</script>
<script setup>
import { useRouterStore } from '@/pinia/modules/router'
const routerStore = useRouterStore()
</script>

View File

@@ -0,0 +1,405 @@
<script setup>
// 引入依赖
import api from '@/api/teacher'
import capi from '@/api/course'
import custom from '@/utils/custom'
import {formatDate} from '@/utils/format'
import cityList from '@/utils/city.json'
// import { toSQLLine } from '@/utils/stringFun'
// import WarningBar from '@/components/warningBar/warningBar.vue'
// import coursePool from './components/coursePool.vue'
// import exercisesPool from '@/view/course/components/exercisesPool.vue'
import {ref,onMounted,provide } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRouter, useRoute } from 'vue-router'
const router = useRouter()
const route = useRoute()
// store
import { useUserStore } from '@/pinia/modules/user'
const userStore = useUserStore()
// 变量
const path = ref(import.meta.env.VITE_BASE_API)
// const typeList = custom.getExercisesTypeList()
const queryParams = ref({
page:1,
pageSize:10,
name:'',
status:''
})
const subjectParams = ref({
pageIndex:1,
pageSize:100,
})
const state_arr = ref([
{
name:'申请中',
id:1
},
{
name:'拒绝',
id:2
},
{
name:'同意',
id:3
}
])
const tableData = ref([])
const subjectList = ref([])
const current_subject = ref('')
const deleteVisible = ref(false)
const question_ids = ref([])
const total = ref(0)
const dialogFormVisible = ref(false)
const dialogTitle = ref('')
const form =ref({})
const rules = ref({
name: [{ required: true, message: '请输入课程名称', trigger: 'blur' }]
})
const question_id = ref(0)
const content = ref(null)
// const options = ref([]) // 答案选项数组
const exam_types = ref([])
const exam_ids = ref([])
// 生命周期
onMounted(() => {
getTeacherList()
// getSubject()
})
provide('subjectList', subjectList)
provide('current_subject', current_subject)
// 方法
async function getTeacherList() {
const res = await api.getTeacherList(queryParams.value)
if(res.code === 0) {
tableData.value = res.data.records
total.value = res.data.total
}
}
async function getSubject(){ // 获取课程分类
const res = await capi.getSubjectList(subjectParams.value)
if(res.code === 0) {
subjectList.value = custom.getStdSubject(res.data.records)
}
}
function onSubmit() {
getTeacherList()
}
const onReset = () => {
queryParams.value = {
pageIndex:1,
pageSize:10,
name:'',
status:'',
subject:''
}
}
function openDialog(type) {
// let params = {}
switch (type){
case 'add':
dialogTitle.value = '新增试卷'
form.value = {}
break;
case 'edit':
// params.question_id = question_id.value
dialogTitle.value = '编辑试卷'
break;
}
dialogFormVisible.value = true
// router.push({name:'addCourse',params})
}
async function onDelete() {
const ids = exam_ids.value
const res = await api.delExamination({ exam_ids:ids })
if (res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
// if (tableData.value.length === ids.length && page.value > 1) {
// page.value--
// }
deleteVisible.value = false
getTeacherList()
}
}
const handleSelectionChange = (val) => {
exam_ids.value = val.map((item) => {
return item.exam_id
})
}
function editCourseFunc(row) {
row.course_ids = JSON.parse(row.course_ids)
row.question_ids = JSON.parse(row.question_ids)
form.value = row.exam
exam_types.value = row.exam_types.map((item) => {
return item.persons
})
current_subject.value = form.value.subject
openDialog('edit')
}
function deleteExamFunc(row) {
ElMessageBox.confirm('此操作将永久删除该数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(async() => {
const res = await api.delExamination({
exam_ids:[row.exam_id]
})
if (res.code === 0) {
ElMessage({
type: 'success',
message: '删除成功!'
})
getTeacherList()
}
},() => {
})
}
function handleCurrentChange(val) {
queryParams.value.pageIndex = val
getTeacherList()
}
function handleSizeChange(val) {
queryParams.value.pageSize = val
getTeacherList()
}
function closeDialog(){
dialogFormVisible.value = false
exam_types.value = []
form.value = {}
}
async function enterDialog() { // 提交
form.value.teacher_id = 0
form.value.exam_type = exam_types.value.map((item) => {
return item = parseInt(item)
})
form.value.duration = parseInt(form.value.duration)
// return
const params = {
...form.value
}
params.question_ids = JSON.stringify(form.value.question_ids)
params.course_ids = JSON.stringify(form.value.course_ids)
let func_name = 'addExamination'
if(form.value.exam_id) { // 编辑
func_name = 'editExamination'
}
const res = await api[func_name](params)
if(res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
closeDialog()
getTeacherList()
}
}
function viewTeacherFunc(row) { // 查看订单
console.log(row)
router.push({name:'teacherDetail',params:{id:row.teacher_info_id}})
}
function getExercisesName(row) {
return JSON.parse(row.question).title
}
// const std_options_title = ref(['A','B','C','D','E','F'])
function addOptionFunc() {
exam_types.value.push('')
}
function delet_func() {
exam_types.value.pop()
}
function getStateName(state) {
let str = ''
switch (state){
case 1:
str = '未付款'
break;
case 2:
str = '已付款'
break;
case 3:
str = '已过期'
break;
}
return str
}
function handleAvatarSuccess(res) {
form.value.cover = res.data.file.url
// handlerChange()
}
function beforeAvatarUpload(file) {
const isLt05M = file.size / 1024 / 1024 < 20
const isJPG = file.type.indexOf('image/') === -1
if (isJPG) {
ElMessage.error('文件格式错误,请上传图片类型,如JPGPNG后缀的文件')
}
if (!isLt05M) {
ElMessage.error('上传头像图片大小不能超过 2M!')
}
return !isJPG && isLt05M
}
function changeSubjectFunc(e) {
current_subject.value = e
}
function addExercisesFunc(data) {
form.value.question_ids = data
}
function addCourseFunc(data) {
form.value.course_ids = data
}
function getTypeName(type) {
let name = ""
switch (type) {
case 1:
name = '课程';
break;
case 2:
name = '章节';
break;
case 3:
name = '子章节';
break;
case 4:
name = '试卷';
break;
}
return name
}
</script>
<template>
<div>
<!-- 搜索框-->
<div class="gva-search-box">
<el-form ref="searchForm" :inline="true" :model="queryParams">
<el-form-item label="教师名称">
<el-input v-model="queryParams.name" placeholder="根据教师名称进行查询" />
</el-form-item>
<el-form-item label="教师状态">
<el-select v-model="queryParams.status" clearable placeholder="请选择">
<el-option
v-for="item in state_arr"
:key="item.id"
:label="item.name"
:value="item.id"
/>
</el-select>
</el-form-item>
<el-form-item>
<el-button size="small" type="primary" icon="search" @click="onSubmit">查询</el-button>
<el-button size="small" icon="refresh" @click="onReset">重置</el-button>
</el-form-item>
</el-form>
</div>
<!-- 表格数据-->
<div class="gva-table-box">
<!-- 批量操作-->
<div class="gva-btn-list">
<el-popover v-model="deleteVisible" placement="top" width="160">
<p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;">
<el-button size="small" type="primary" link @click="deleteVisible = false">取消</el-button>
<el-button size="small" type="primary" @click="onDelete">确定</el-button>
</div>
</el-popover>
</div>
<!-- 数据列表-->
<el-table :data="tableData" @selection-change="handleSelectionChange">
<el-table-column align="center" label="ID" prop="teacher_info_id" sortable="custom" />
<el-table-column align="center" label="头像">
<template #default="scope">
<img class="avatar-box" :src="scope.row.avatar" alt="">
</template>
</el-table-column>
<el-table-column align="center" label="姓名" prop="name" />
<el-table-column align="center" label="手机号" min-width="150" prop="phone" />
<el-table-column align="center" label="所属区域" min-width="150" prop="province">
<template #default="scope">
{{cityList[scope.row.province].name}}
</template>
</el-table-column>
<el-table-column align="center" label="申请时间" min-width="150" >
<template #default="scope">
{{formatDate(scope.row.CreatedAt)}}
</template>
</el-table-column>
<el-table-column align="center" label="推荐人ID" prop="invite_id" />
<el-table-column align="center" label="授课次数" prop="publish_course" />
<el-table-column align="center" label="测试次数" prop="publish_exam" />
<el-table-column align="center" label="累计销售" prop="exam_sale" />
<el-table-column align="center" label="状态" prop="exam_sale">
<template #default="scope">
<div>{{scope.row.status == 1?'查看':scope.row.status == 2?'已拒绝':'已同意'}}</div>
</template>
</el-table-column>
<el-table-column align="center" fixed="right" label="操作" width="200">
<template #default="scope">
<el-button
icon="view"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>查看</el-button>
<el-button v-if="scope.row.status == 1"
icon="edit"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>同意</el-button>
<el-button v-if="scope.row.status == 1"
icon="delete"
size="small"
type="danger"
link
@click="deleteExamFunc(scope.row)"
>拒绝</el-button>
</template>
</el-table-column>
</el-table>
<div class="gva-pagination">
<el-pagination
:current-page="queryParams.page"
:page-size="queryParams.pageSize"
:page-sizes="[10, 30, 50, 100]"
:total="total"
layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
/>
</div>
</div>
</div>
</template>
<style scoped lang="scss">
.avatar-box{
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid #dbdbdb;
}
.e-img{
width: 150px;
height: 100px;
}
.option-item{
display: flex;
align-items: center;
margin-bottom: 10px;
}
.button-box {
padding: 10px 20px;
.el-button {
float: right;
}
}
.warning {
color: #dc143c;
}
</style>

View File

@@ -0,0 +1,405 @@
<script setup>
// 引入依赖
import api from '@/api/teacher'
import capi from '@/api/course'
import custom from '@/utils/custom'
import {formatDate} from '@/utils/format'
import cityList from '@/utils/city.json'
// import { toSQLLine } from '@/utils/stringFun'
// import WarningBar from '@/components/warningBar/warningBar.vue'
// import coursePool from './components/coursePool.vue'
// import exercisesPool from '@/view/course/components/exercisesPool.vue'
import {ref,onMounted,provide } from 'vue'
import { ElMessage, ElMessageBox } from 'element-plus'
import { useRouter, useRoute } from 'vue-router'
const router = useRouter()
const route = useRoute()
// store
import { useUserStore } from '@/pinia/modules/user'
const userStore = useUserStore()
// 变量
const path = ref(import.meta.env.VITE_BASE_API)
// const typeList = custom.getExercisesTypeList()
const queryParams = ref({
page:1,
pageSize:10,
name:'',
status:''
})
const subjectParams = ref({
pageIndex:1,
pageSize:100,
})
const state_arr = ref([
{
name:'申请中',
id:1
},
{
name:'拒绝',
id:2
},
{
name:'同意',
id:3
}
])
const tableData = ref([])
const subjectList = ref([])
const current_subject = ref('')
const deleteVisible = ref(false)
const question_ids = ref([])
const total = ref(0)
const dialogFormVisible = ref(false)
const dialogTitle = ref('')
const form =ref({})
const rules = ref({
name: [{ required: true, message: '请输入课程名称', trigger: 'blur' }]
})
const question_id = ref(0)
const content = ref(null)
// const options = ref([]) // 答案选项数组
const exam_types = ref([])
const exam_ids = ref([])
// 生命周期
onMounted(() => {
getTeacherList()
// getSubject()
})
provide('subjectList', subjectList)
provide('current_subject', current_subject)
// 方法
async function getTeacherList() {
const res = await api.getTeacherList(queryParams.value)
if(res.code === 0) {
tableData.value = res.data.records
total.value = res.data.total
}
}
async function getSubject(){ // 获取课程分类
const res = await capi.getSubjectList(subjectParams.value)
if(res.code === 0) {
subjectList.value = custom.getStdSubject(res.data.records)
}
}
function onSubmit() {
getTeacherList()
}
const onReset = () => {
queryParams.value = {
pageIndex:1,
pageSize:10,
name:'',
status:'',
subject:''
}
}
function openDialog(type) {
// let params = {}
switch (type){
case 'add':
dialogTitle.value = '新增试卷'
form.value = {}
break;
case 'edit':
// params.question_id = question_id.value
dialogTitle.value = '编辑试卷'
break;
}
dialogFormVisible.value = true
// router.push({name:'addCourse',params})
}
async function onDelete() {
const ids = exam_ids.value
const res = await api.delExamination({ exam_ids:ids })
if (res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
// if (tableData.value.length === ids.length && page.value > 1) {
// page.value--
// }
deleteVisible.value = false
getTeacherList()
}
}
const handleSelectionChange = (val) => {
exam_ids.value = val.map((item) => {
return item.exam_id
})
}
function editCourseFunc(row) {
row.course_ids = JSON.parse(row.course_ids)
row.question_ids = JSON.parse(row.question_ids)
form.value = row.exam
exam_types.value = row.exam_types.map((item) => {
return item.persons
})
current_subject.value = form.value.subject
openDialog('edit')
}
function deleteExamFunc(row) {
ElMessageBox.confirm('此操作将永久删除该数据, 是否继续?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
})
.then(async() => {
const res = await api.delExamination({
exam_ids:[row.exam_id]
})
if (res.code === 0) {
ElMessage({
type: 'success',
message: '删除成功!'
})
getTeacherList()
}
},() => {
})
}
function handleCurrentChange(val) {
queryParams.value.pageIndex = val
getTeacherList()
}
function handleSizeChange(val) {
queryParams.value.pageSize = val
getTeacherList()
}
function closeDialog(){
dialogFormVisible.value = false
exam_types.value = []
form.value = {}
}
async function enterDialog() { // 提交
form.value.teacher_id = 0
form.value.exam_type = exam_types.value.map((item) => {
return item = parseInt(item)
})
form.value.duration = parseInt(form.value.duration)
// return
const params = {
...form.value
}
params.question_ids = JSON.stringify(form.value.question_ids)
params.course_ids = JSON.stringify(form.value.course_ids)
let func_name = 'addExamination'
if(form.value.exam_id) { // 编辑
func_name = 'editExamination'
}
const res = await api[func_name](params)
if(res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
closeDialog()
getTeacherList()
}
}
function viewTeacherFunc(row) { // 查看订单
console.log(row)
router.push({name:'teacherDetail',params:{id:row.teacher_info_id}})
}
function getExercisesName(row) {
return JSON.parse(row.question).title
}
// const std_options_title = ref(['A','B','C','D','E','F'])
function addOptionFunc() {
exam_types.value.push('')
}
function delet_func() {
exam_types.value.pop()
}
function getStateName(state) {
let str = ''
switch (state){
case 1:
str = '未付款'
break;
case 2:
str = '已付款'
break;
case 3:
str = '已过期'
break;
}
return str
}
function handleAvatarSuccess(res) {
form.value.cover = res.data.file.url
// handlerChange()
}
function beforeAvatarUpload(file) {
const isLt05M = file.size / 1024 / 1024 < 20
const isJPG = file.type.indexOf('image/') === -1
if (isJPG) {
ElMessage.error('文件格式错误,请上传图片类型,如JPGPNG后缀的文件')
}
if (!isLt05M) {
ElMessage.error('上传头像图片大小不能超过 2M!')
}
return !isJPG && isLt05M
}
function changeSubjectFunc(e) {
current_subject.value = e
}
function addExercisesFunc(data) {
form.value.question_ids = data
}
function addCourseFunc(data) {
form.value.course_ids = data
}
function getTypeName(type) {
let name = ""
switch (type) {
case 1:
name = '课程';
break;
case 2:
name = '章节';
break;
case 3:
name = '子章节';
break;
case 4:
name = '试卷';
break;
}
return name
}
</script>
<template>
<div>
<!-- 搜索框-->
<div class="gva-search-box">
<el-form ref="searchForm" :inline="true" :model="queryParams">
<el-form-item label="教师名称">
<el-input v-model="queryParams.name" placeholder="根据教师名称进行查询" />
</el-form-item>
<!-- <el-form-item label="教师状态">-->
<!-- <el-select v-model="queryParams.status" clearable placeholder="请选择">-->
<!-- <el-option-->
<!-- v-for="item in state_arr"-->
<!-- :key="item.id"-->
<!-- :label="item.name"-->
<!-- :value="item.id"-->
<!-- />-->
<!-- </el-select>-->
<!-- </el-form-item>-->
<el-form-item>
<el-button size="small" type="primary" icon="search" @click="onSubmit">查询</el-button>
<el-button size="small" icon="refresh" @click="onReset">重置</el-button>
</el-form-item>
</el-form>
</div>
<!-- 表格数据-->
<div class="gva-table-box">
<!-- 批量操作-->
<div class="gva-btn-list">
<el-popover v-model="deleteVisible" placement="top" width="160">
<p>确定要删除吗</p>
<div style="text-align: right; margin-top: 8px;">
<el-button size="small" type="primary" link @click="deleteVisible = false">取消</el-button>
<el-button size="small" type="primary" @click="onDelete">确定</el-button>
</div>
</el-popover>
</div>
<!-- 数据列表-->
<el-table :data="tableData" @selection-change="handleSelectionChange">
<el-table-column align="center" label="ID" prop="teacher_info_id" sortable="custom" />
<el-table-column align="center" label="头像">
<template #default="scope">
<img class="avatar-box" :src="scope.row.avatar" alt="">
</template>
</el-table-column>
<el-table-column align="center" label="姓名" prop="name" />
<el-table-column align="center" label="手机号" min-width="150" prop="phone" />
<el-table-column align="center" label="所属区域" min-width="150" prop="province">
<template #default="scope">
{{cityList[scope.row.province].name}}
</template>
</el-table-column>
<el-table-column align="center" label="申请时间" min-width="150" >
<template #default="scope">
{{formatDate(scope.row.CreatedAt)}}
</template>
</el-table-column>
<el-table-column align="center" label="推荐人ID" prop="invite_id" />
<el-table-column align="center" label="授课次数" prop="publish_course" />
<el-table-column align="center" label="测试次数" prop="publish_exam" />
<el-table-column align="center" label="累计销售" prop="exam_sale" />
<!-- <el-table-column align="center" label="状态" prop="exam_sale">-->
<!-- <template #default="scope">-->
<!-- <div>{{scope.row.status == 1?'查看':scope.row.status == 2?'已拒绝':'已同意'}}</div>-->
<!-- </template>-->
<!-- </el-table-column>-->
<el-table-column align="center" fixed="right" label="操作" width="200">
<template #default="scope">
<el-button
icon="view"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>查看</el-button>
<el-button v-if="scope.row.status == 1"
icon="edit"
size="small"
type="primary"
link
@click="viewTeacherFunc(scope.row)"
>同意</el-button>
<el-button v-if="scope.row.status == 1"
icon="delete"
size="small"
type="danger"
link
@click="deleteExamFunc(scope.row)"
>拒绝</el-button>
</template>
</el-table-column>
</el-table>
<div class="gva-pagination">
<el-pagination
:current-page="queryParams.page"
:page-size="queryParams.pageSize"
:page-sizes="[10, 30, 50, 100]"
:total="total"
layout="total, sizes, prev, pager, next, jumper"
@current-change="handleCurrentChange"
@size-change="handleSizeChange"
/>
</div>
</div>
</div>
</template>
<style scoped lang="scss">
.avatar-box{
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid #dbdbdb;
}
.e-img{
width: 150px;
height: 100px;
}
.option-item{
display: flex;
align-items: center;
margin-bottom: 10px;
}
.button-box {
padding: 10px 20px;
.el-button {
float: right;
}
}
.warning {
color: #dc143c;
}
</style>