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

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

@@ -0,0 +1,451 @@
<script setup>
// 引入依赖
import api from '@/api/userManage'
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()
import cityList from '@/utils/city.json';
// 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:'',
province:''
})
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(() => {
getUserList()
getSubject()
})
provide('subjectList', subjectList)
provide('current_subject', current_subject)
// 方法
async function getUserList() {
const res = await api.getUserList(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() {
getUserList()
}
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
getUserList()
}
}
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: '删除成功!'
})
getUserList()
}
},() => {
})
}
function handleCurrentChange(val) {
queryParams.value.pageIndex = val
getUserList()
}
function handleSizeChange(val) {
queryParams.value.pageSize = val
getUserList()
}
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()
getUserList()
}
}
function viewUserFunc(row) { // 查看订单
router.push({name:'viewUserManage',params:{id:row.user_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
}
function getProvinceName(province) {
if(province < 0) return ''
return cityList[province].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.province" clearable placeholder="请选择">
<el-option
v-for="item in cityList"
:key="item.ProID"
:label="item.name"
:value="item.ProID"
/>
</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-button size="small" type="primary" icon="plus" @click="openDialog('add')">新增</el-button>-->
<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>
<!-- <template #reference>-->
<!-- <el-button icon="delete" size="small" type="danger" :disabled="!exam_ids.length" style="margin-left: 10px;" @click="deleteVisible = true">删除</el-button>-->
<!-- </template>-->
</el-popover>
</div>
<!-- 数据列表-->
<el-table :data="tableData" @selection-change="handleSelectionChange">
<!-- <el-table-column-->
<!-- type="selection"-->
<!-- width="55"-->
<!-- />-->
<el-table-column align="center" label="ID" prop="user_id" sortable="custom" />
<el-table-column align="center" label="头像" min-width="150">
<template #default="scope">
<img class="avatar-css" :src="scope.row.avatar" alt="">
</template>
</el-table-column>
<el-table-column align="center" label="姓名" prop="nickname" />
<el-table-column align="center" label="手机号" min-width="150" prop="phone" />
<el-table-column align="center" label="身份" min-width="150" prop="order_type">
<template #default="scope">
{{scope.row.idCard}}
</template>
</el-table-column>
<el-table-column align="center" label="所属区域" min-width="150">
<template #default="scope">
{{getProvinceName(scope.row.province)}}
</template>
</el-table-column>
<el-table-column align="center" label="推荐人ID" min-width="150" prop="invite_id" />
<el-table-column align="center" label="报课次数" min-width="150" prop="name" />
<el-table-column align="center" label="测试次数" min-width="150" prop="price" />
<el-table-column align="center" label="累计金额" min-width="150" prop="balance" />
<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" fixed="right" label="操作" width="200">
<template #default="scope">
<el-button
icon="edit"
size="small"
type="primary"
link
@click="viewUserFunc(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>
<el-dialog v-model="dialogFormVisible" :before-close="closeDialog" :title="dialogTitle">
<el-form ref="apiForm" :model="form" :rules="rules" label-width="80px">
<el-form-item label="试卷名称" >
<el-input v-model="form.name" placeholder="请输入试卷名称" />
</el-form-item>
<el-form-item label="科目" prop="subject">
<el-select v-model="form.subject" @change="changeSubjectFunc" clearable placeholder="请选择">
<el-option
v-for="item in subjectList"
:key="item.id"
:label="item.name"
:value="item.name"
/>
</el-select>
</el-form-item>
<el-form-item label="封面">
<el-upload
class="avatar-uploader"
:action="`${path}/fileUploadAndDownload/upload`"
:headers="{ 'x-token': userStore.token }"
:show-file-list="false"
:on-success="handleAvatarSuccess"
:before-upload="beforeAvatarUpload"
>
<img v-if="form.cover" :src="form.cover" class="avatar" />
<el-icon v-else class="avatar-uploader-icon"><Plus /></el-icon>
</el-upload>
</el-form-item>
<el-form-item label="测试时长" >
<el-input type="number" v-model="form.duration" placeholder="请输入测试时长(分钟)" />
</el-form-item>
<el-form-item label="测试组别" >
<!-- <el-input v-model="form.score" placeholder="请输入分值" />-->
<view class="options-box">
<view class="option-item" v-if="exam_types.length>0" v-for="(item,i) in exam_types">
<view>{{i+1}}</view>
<el-input type="number" style="margin-left:5px" v-model="exam_types[i]" placeholder="请输入组别人数" />
<el-icon style="margin-left: 5px;cursor: pointer" v-if="(i+1) == exam_types.length" @click="delet_func(item)"><Delete /></el-icon>
</view>
<el-button @click="addOptionFunc">添加组别</el-button>
</view>
</el-form-item>
<!-- <el-form-item label="添加习题" >-->
<!-- <exercisesPool @addFunc="addExercisesFunc" :seleted_arr="form.question_ids" />-->
<!-- </el-form-item>-->
<!-- <el-form-item label="适用课程" >-->
<!-- <coursePool @addFunc="addCourseFunc" :seleted_arr="form.course_ids" />-->
<!-- </el-form-item>-->
<el-form-item label="受否上架" >
<el-switch
v-model="form.status"
active-text="上架"
inactive-text="下架"
:active-value="1"
:inactive-value="-1"
/>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button size="small" @click="closeDialog"> </el-button>
<el-button size="small" type="primary" @click="enterDialog"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<style scoped lang="scss">
.avatar-css{
height: 100px;
width: 150px;
}
.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,279 @@
<script setup>
// 引入依赖
import api from '@/api/userManage'
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()
// 变量
const userManageInfo = ref({})
const imgs = ref([])
// 生命周期
onMounted(() => {
getUserDetail()
})
// funstions
async function getUserDetail() {
const res = await api.viewUser({id:route.params.id})
if(res.code === 0) {
userManageInfo.value = res.data.user
// let teacher_cert = JSON.parse(res.data.teacher_cert)
// let skill_cert = JSON.parse(res.data.skill_cert)
// imgs.value = [...skill_cert,...teacher_cert]
// console.log(imgs.value)
}
}
const tip_text = ref('')
const dialogVisible = ref(false)
const a_type = ref(0)
function actionFunc(type) {
dialogVisible.value = true
a_type.value = type
switch (type){
case 3:
tip_text.value = '是否同意该教师申请?';
break;
case 2:
tip_text.value = '是否拒绝该教师申请?';
break;
}
}
async function actionOk() { // 确认提交
const res = await api.teacherOperator({
teacher_id:userManageInfo.value.user_id,
status:a_type.value
})
if(res.code === 0) {
ElMessage({
type: 'success',
message: res.msg
})
getUserDetail()
}
}
function getStateName(state) {
let str = ''
switch (state){
case 1:
str = '待审核'
break;
case 2:
str = '已拒绝'
break;
case 3:
str = '已同意'
break;
}
return str
}
</script>
<template>
<div>
<!-- 基本信息-->
<div class="gva-search-box">
<div class="baseInfo-box">
<div class="bb-item">
<img class="avatar" :src="userManageInfo.avatar" alt="">
</div>
<div class="bb-item">
昵称{{userManageInfo.nickname}}
</div>
<div class="bb-item">
ID{{userManageInfo.user_id}}
</div>
<div class="bb-item">
注册时间{{userManageInfo.CreatedAt}}
</div>
<div class="bb-item">
身份教师
</div>
<div class="bb-item">
邀请人数105
</div>
</div>
</div>
<!-- 章节信息-->
<div class="gva-table-box">
<div class="detail-info-box">
<div class="dib-row">
<div class="dib-item">
<div class="di-left">身份证号码</div>
<div class="di-right">{{userManageInfo.id_card}}</div>
</div>
<div class="dib-item">
<div class="di-left">手机号码</div>
<div class="di-right">{{userManageInfo.phone}}</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">区域</div>
<div class="di-right">{{custom.getProvinceName(userManageInfo.province)}}</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">余额</div>
<div class="di-right">{{userManageInfo.balance}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看交易明细</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">积分</div>
<div class="di-right">{{userManageInfo.points}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看交易明细</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">报课次数</div>
<div class="di-right">{{userManageInfo.course_sale}}</div>
</div>
<div class="dib-item">
<div class="di-left">累计金额</div>
<div class="di-right">{{userManageInfo.course_income}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看学习记录</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">测试次数</div>
<div class="di-right">{{userManageInfo.exam_sale}}</div>
</div>
<div class="dib-item">
<div class="di-left">累计金额</div>
<div class="di-right">{{userManageInfo.exam_income}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看测试记录</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">抽奖次数</div>
<div class="di-right">{{userManageInfo.exam_sale}}</div>
</div>
<div class="dib-item">
<div class="di-left">中奖次数</div>
<div class="di-right">{{userManageInfo.exam_income}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看抽奖记录</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">竞拍次数</div>
<div class="di-right">{{userManageInfo.exam_sale}}</div>
</div>
<div class="dib-item">
<div class="di-left">中奖次数</div>
<div class="di-right">{{userManageInfo.exam_income}}</div>
</div>
<div class="dib-item link-item">
<div class="di-left">查看竞拍记录</div>
</div>
</div>
<div class="dib-row">
<div class="dib-item">
<div class="di-left">邀请人姓名</div>
<div class="di-right">{{userManageInfo.invite_id}}</div>
</div>
<div class="dib-item">
<div class="di-left">邀请人姓名ID</div>
<div class="di-right">{{userManageInfo.invite_id}}</div>
</div>
</div>
</div>
</div>
</div>
</template>
<style scoped lang="scss">
.action-box{
display: flex;
margin-top: 20px;
justify-content: center;
.a-btn{
background: rgb(60, 106, 112);
color: white;
padding: 10px 50px;
cursor: pointer;
margin: 10px;
border-radius: 5px;
}
.approved{
}
.refuse{
background: white !important;
color:rgb(60, 106, 112) !important;
border: 1px solid rgb(60, 106, 112) !important;
}
}
/*基本信息*/
.gva-search-box{
.baseInfo-box{
display: flex;
align-items: center;
//justify-content: space-around;
.bb-item{
margin: 10px 20px;
.avatar{
width: 50px;
height: 50px;
border-radius: 50%;
border: 1px solid #cdcdcd;
}
}
}
}
/*详细信息*/
.text{
color: red !important;
}
.state-text{
font-size: 15px;
color: gray;
}
.gva-table-box{
.detail-info-box{
.dib-row{
overflow: hidden;
.link-item{
color: #3C6A70 !important;
cursor: pointer;
}
.dib-item{
//color: gray;
padding: 10px 0;
display: flex;
float: left;
margin-right: 30px;
.di-left{
}
.img-css{
width: 100px;
height: 100px;
margin: 0 10px 10px 0;
cursor: pointer;
}
}
}
}
}
</style>