This commit is contained in:
zhangyc
2023-01-11 10:14:27 +08:00
parent f15e726cc7
commit 0cd2efad61
12 changed files with 1409 additions and 1338 deletions

View File

@@ -4,7 +4,7 @@
:visible="Tvisible"
class="drawerStyle ProjectOnlineManage"
placement="right"
width="60%"
width="80%"
@after-visible-change="afterVisibleChange"
>
<div class="drawerMain">
@@ -51,7 +51,7 @@
<div class="name">姓名</div>
<a-input
v-model:value="name"
style="width: 270px; height: 40px; border-radius: 8px"
style="width: 200px; height: 40px; border-radius: 8px"
placeholder="请输入姓名"
/>
</div>
@@ -60,7 +60,7 @@
<div class="select">
<a-select
v-model:value="projectName"
style="width: 270px"
style="width: 200px"
placeholder="请选择"
:options="projectNameList"
@change="selectProjectName"
@@ -175,7 +175,7 @@ export default {
pageSize: 10,
currentPage: 1,
tableDataTotal: 0,
projectName: "",
projectName: undefined,
projectNameList: [
{
id: 1,
@@ -234,6 +234,7 @@ export default {
key: "studentDepartName",
width: 60,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -249,6 +250,7 @@ export default {
key: "studentJobName",
width: 60,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -264,6 +266,7 @@ export default {
key: "currentStageName",
width: 60,
align: "center",
ellipsis: true,
className: "h",
customRender: () => {
return (
@@ -279,6 +282,7 @@ export default {
key: "lastStudyTime",
width: 100,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -294,6 +298,7 @@ export default {
key: "finishStatus",
width: 60,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -311,7 +316,7 @@ export default {
ctx.emit("update:Tvisible", false);
state.currentPage = 1;
state.name = "";
state.projectName = "";
state.projectName = undefined;
state.tabledata = [];
};
const afterVisibleChange = (bol) => {