feat:学习路径图任务数据获取初始化

This commit is contained in:
wyx
2023-01-03 17:41:05 +08:00
parent 84c53c6bc0
commit 5d534cfcfd
5 changed files with 157 additions and 79 deletions

View File

@@ -1,5 +1,6 @@
<template>
<a-drawer
v-if="ExaminationModelVisible"
:visible="ExaminationModelVisible"
class="drawerStyle ProjectExamManage"
placement="right"
@@ -16,7 +17,7 @@
/>
</div>
<div class="main">
<div class="endtime">起止时间2022-07-21 14:00 2022-7-30 14:00</div>
<div class="endtime">起止时间{{datasource.startTime}} {{datasource.endTime}}</div>
<div class="search">
<div class="namecon" style="margin-right: 30px">
<div class="name">姓名</div>
@@ -274,10 +275,11 @@
state.projectName = "";
state.selectedRowKeys = [];
state.currentPage = 1;
state.tabledata = [];
};
const afterVisibleChange = (bol) => {
if (bol == true) {
// getManageList();
getData();
}
};
const selectProjectName = (value) => {
@@ -303,6 +305,22 @@
const clearLine = () => {
state.selectedRowKeys = [];
};
// 获取数据
function getData() {
state.tabledata = [
{
workNum: "123",
userName: "li",
deptName: "开发",
jobName: "前端开发",
score: 89,
examNum: 1,
comptime: "2022-07-22 14:00:30",
status: "已完成",
},
]
}
return {
...toRefs(state),