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="EvaluationModelVisible"
:visible="EvaluationModelVisible"
class="drawerStyle ProjectEvalManage"
placement="right"
@@ -258,10 +259,11 @@
state.projectName = "";
state.selectedRowKeys = [];
state.currentPage = 1;
state.tabledata = [];
};
const afterVisibleChange = (bol) => {
if (bol == true) {
// getManageList();
getData();
}
};
const selectProjectName = (value) => {
@@ -283,7 +285,22 @@
const clearLine = () => {
state.selectedRowKeys = [];
};
// 获取数据
function getData() {
state.tabledata = [
{
workNum: "123",
userName: "li",
deptName: "开发",
jobName: "前端开发",
submitTime: "2022-07-22 14:00:30",
status: "已完成",
PDFstatus: "未生成",
},
]
}
return {
...toRefs(state),
selectProjectName,