mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-11 20:06:47 +08:00
414 lines
11 KiB
Vue
414 lines
11 KiB
Vue
<!-- 评估列表 -->
|
|
<template>
|
|
<a-drawer
|
|
:visible="assessmentVisible"
|
|
class="drawerStyle addinvistDrawer"
|
|
width="70%"
|
|
title="添加评估"
|
|
placement="right"
|
|
@after-visible-change="afterVisibleChange"
|
|
>
|
|
<div class="drawerMain">
|
|
<div class="header">
|
|
<div v-if="edit" class="headerTitle">编辑评估</div>
|
|
<div v-else class="headerTitle">添加评估</div>
|
|
<img
|
|
style="width: 29px; height: 29px; cursor: pointer"
|
|
src="../../assets/images/basicinfo/close.png"
|
|
@click="closeDrawer"
|
|
/>
|
|
</div>
|
|
<div class="contentMain">
|
|
<div class="main_left">
|
|
<div class="main_item">
|
|
<div class="fi_input">
|
|
<a-input
|
|
v-model:value="inputV1"
|
|
style="width: 424px; height: 40px; border-radius: 8px;"
|
|
placeholder="请输入评估名称"
|
|
maxlength="20"
|
|
/>
|
|
</div>
|
|
<div class="btns" @click="getAllInvistText">
|
|
<div class="search"></div>
|
|
<div class="btnText">搜索</div>
|
|
</div>
|
|
<div class="btnsn" @click="resetInvist">
|
|
<div class="search"></div>
|
|
<div class="btnText">重置</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="main_table">
|
|
<a-table
|
|
style="border: 1px solid #f2f6fe"
|
|
:columns="tableDataFunc()"
|
|
:data-source="tableData"
|
|
:loading="tableDataTotal === -1 ? true : false"
|
|
expandRowByClick="true"
|
|
@expand="expandTable"
|
|
:pagination="false"
|
|
:row-selection="rowSelection"
|
|
filterMultiple:false
|
|
/>
|
|
<div class="tableBox" style="margin-top:85px;">
|
|
<div class="pa">
|
|
<a-pagination
|
|
:showSizeChanger="false"
|
|
showQuickJumper="true"
|
|
hideOnSinglePage="true"
|
|
:pageSize="pageSize"
|
|
:current="currentPage"
|
|
:total="tableDataTotal"
|
|
class="pagination"
|
|
@change="handelChangePage"
|
|
/>
|
|
</div></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="main_btns">
|
|
<button class="btn1" @click="closeDrawer">取消</button>
|
|
<button class="btn2" @click="submitCheck">确定</button>
|
|
</div>
|
|
|
|
</div>
|
|
</a-drawer>
|
|
</template>
|
|
<script>
|
|
import { reactive, toRefs } from "vue";
|
|
import * as api from "../../api/indexInvist.js";
|
|
import dayjs from "dayjs";
|
|
export default {
|
|
name: "AssessmentList",
|
|
// components: {
|
|
// },
|
|
props: {
|
|
assessmentVisible: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
assessmentId: {
|
|
type: Number,
|
|
default: null,
|
|
},
|
|
assessmentName: {
|
|
type: String,
|
|
default: null,
|
|
},
|
|
},
|
|
setup(props, ctx) {
|
|
const state = reactive({
|
|
assessmentVisible: false,
|
|
assessment: null,
|
|
inputV1: "",
|
|
currentPage: 1,
|
|
pageSize: 10,
|
|
tableDataTotal: 0,
|
|
tableData: [],
|
|
selectedRowKeys: [],
|
|
assessmentName:null,
|
|
assessmentId:null,
|
|
});
|
|
const closeDrawer = () => {
|
|
ctx.emit("update:assessmentVisible", false);
|
|
};
|
|
const afterVisibleChange = (bool) => {
|
|
console.log("state getAllInvistText", bool);
|
|
if (props.assessmentVisible) {
|
|
getAllInvistText();
|
|
}
|
|
};
|
|
const tableDataFunc = () => {
|
|
const columns = [
|
|
{
|
|
title: "名称",
|
|
dataIndex: "name",
|
|
// width: "30%",
|
|
key: "name",
|
|
width: "40%",
|
|
className: "classify",
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: "题数",
|
|
dataIndex: "num",
|
|
key: "num",
|
|
width: "20%",
|
|
align: "center",
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: "创建人",
|
|
dataIndex: "creator",
|
|
key: "creator",
|
|
width: "20%",
|
|
align: "center",
|
|
ellipsis: true,
|
|
},
|
|
{
|
|
title: "创建时间",
|
|
dataIndex: "time",
|
|
key: "time",
|
|
width: "20%",
|
|
align: "center",
|
|
ellipsis: true,
|
|
},
|
|
];
|
|
return columns;
|
|
};
|
|
const rowSelection = {
|
|
type: "radio",
|
|
onSelect: (selectedRows) => {
|
|
state.assessment = selectedRows;
|
|
console.log("selectedRows=======", state.assessment);
|
|
ctx.emit("checkedAss", state.assessment);
|
|
state.selectedRowKeys = [];
|
|
|
|
},
|
|
};
|
|
const submitCheck=()=>{
|
|
ctx.emit("update:assessmentId", state.assessment.assessmentId);
|
|
ctx.emit("update:assessmentName", state.assessment.name);
|
|
closeDrawer();
|
|
}
|
|
|
|
const handelChangePage = (page, pageSize) => {
|
|
state.currentPage = page;
|
|
state.pageSize = pageSize;
|
|
getAllInvistText();
|
|
};
|
|
const getTableDate = (tableData) => {
|
|
let data = tableData;
|
|
let array = [];
|
|
data.map((value, index) => {
|
|
let n1 = value.essayQuestionVoList
|
|
? Number(value.essayQuestionVoList.length)
|
|
: 0 ;
|
|
let n2 = value.multipleStemVoList
|
|
? Number(value.multipleStemVoList.length)
|
|
: 0;
|
|
|
|
let n3 = value.scoringQuestionVoList
|
|
? Number(value.scoringQuestionVoList.length)
|
|
: 0;
|
|
let n4 = value.singleStemVoList
|
|
? Number(value.singleStemVoList.length)
|
|
: 0;
|
|
|
|
let num = n1 + n2 + n3 +n4;
|
|
let obj = {
|
|
key: index,
|
|
assessmentId: value.assessmentId,
|
|
num: num,
|
|
name: value.assessmentName ? value.assessmentName : "-",
|
|
creator: value.createUserName ? value.createUserName : "-",
|
|
time: dayjs(value.createTime).format("YYYY-MM-DD HH:mm"),
|
|
};
|
|
array.push(obj);
|
|
});
|
|
(state.selectedRowKeys = []), (state.tableData = array);
|
|
};
|
|
//获取全部评估信息接口
|
|
const getAllInvistText = () => {
|
|
api
|
|
.queryAssessmentDetailList({
|
|
assessmentName: state.inputV1,
|
|
pageNo: state.currentPage,
|
|
pageSize: state.pageSize,
|
|
releaseStatus: 2 ,
|
|
searchEndTime:"",
|
|
})
|
|
.then((res) => {
|
|
let arr = res.data.data.rows;
|
|
if (res.status === 200) {
|
|
// console.log("获取全部评估信息", res.data.data);
|
|
getTableDate(arr);
|
|
state.tableDataTotal = Number(res.data.data.total);
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
console.log("获取全部评估信息接口失败", err);
|
|
// state.createLoading = false;
|
|
});
|
|
};
|
|
|
|
//重置评估信息
|
|
const resetInvist = () => {
|
|
state.inputV1 = "";
|
|
getAllInvistText();
|
|
};
|
|
return {
|
|
...toRefs(state),
|
|
afterVisibleChange,
|
|
closeDrawer,
|
|
tableDataFunc,
|
|
rowSelection,
|
|
getAllInvistText,
|
|
resetInvist,
|
|
handelChangePage,
|
|
submitCheck,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
<style lang="scss">
|
|
.ant-table-striped :deep(.table-striped) td {
|
|
background-color: #fafafa !important;
|
|
}
|
|
.addinvistDrawer {
|
|
.drawerMain {
|
|
.header {
|
|
height: 73px;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.headerTitle {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
line-height: 25px;
|
|
margin-left: 24px;
|
|
}
|
|
}
|
|
.contentMain {
|
|
|
|
.main_left {
|
|
padding-right: 30px;
|
|
margin-top: 32px;
|
|
.main_item {
|
|
display: flex;
|
|
align-items: center;
|
|
margin-bottom: 32px;
|
|
.fi_input {
|
|
margin-right: 20px;
|
|
}
|
|
.btns {
|
|
margin-right: 20px;
|
|
padding: 0px 26px 0px 26px;
|
|
height: 38px;
|
|
background: #4ea6ff;
|
|
border-radius: 8px;
|
|
//border: 1px solid rgba(64, 158, 255, 1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 14px;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
.search {
|
|
width: 15px;
|
|
height: 17px;
|
|
background-image: url("../../assets/images/courseManage/search0.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
.btnText {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #ffffff;
|
|
line-height: 36px;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
.btnsn {
|
|
padding: 0px 26px 0px 26px;
|
|
height: 38px;
|
|
background: #ffffff;
|
|
border-radius: 8px;
|
|
border: 1px solid rgba(64, 158, 255, 1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin-right: 14px;
|
|
flex-shrink: 0;
|
|
cursor: pointer;
|
|
.search {
|
|
width: 16px;
|
|
height: 18px;
|
|
background-image: url("../../assets/images/courseManage/reset1.png");
|
|
background-size: 100% 100%;
|
|
}
|
|
.btnText {
|
|
font-size: 14px;
|
|
font-weight: 400;
|
|
color: #4ea6ff;
|
|
line-height: 36px;
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
.main_item2 {
|
|
.pa {
|
|
width: 100%;
|
|
margin: 15px auto;
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.main_table {
|
|
position: relative;
|
|
padding-bottom: 80px;
|
|
.ant-checkbox-wrapper {
|
|
align-items: center;
|
|
margin-top: -2px;
|
|
}
|
|
.ant-table-selection-column {
|
|
padding: 0px !important;
|
|
padding-left: 5px !important;
|
|
}
|
|
.ant-table-thead > tr > th {
|
|
background-color: rgba(239, 244, 252, 1);
|
|
}
|
|
th.h {
|
|
background-color: #eff4fc !important;
|
|
}
|
|
.ant-table-tbody
|
|
> tr:hover:not(.ant-table-expanded-row):not(.ant-table-row-selected)
|
|
> td {
|
|
background: #f6f9fd;
|
|
}
|
|
.pa {
|
|
left: 0;
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
position: absolute;
|
|
bottom: 20px;
|
|
}
|
|
}
|
|
.main_btns {
|
|
height: 72px;
|
|
width: 100%;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.16);
|
|
.btn1 {
|
|
width: 100px;
|
|
height: 40px;
|
|
border: 1px solid #4ea6ff;
|
|
border-radius: 8px;
|
|
color: #4ea6ff;
|
|
background-color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
.btn2 {
|
|
cursor: pointer;
|
|
width: 100px;
|
|
height: 40px;
|
|
background: #4ea6ff;
|
|
border-radius: 8px;
|
|
border: 0;
|
|
margin-left: 15px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|