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

@@ -33,7 +33,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>
@@ -56,7 +56,7 @@
<div class="select">
<a-select
v-model:value="projectName2"
style="width: 160px"
style="width: 200px"
placeholder="请选择"
:options="projectNameList2"
@change="selectProjectName2"
@@ -258,7 +258,7 @@ export default {
closeStop: false, //签退弹窗关闭图标
signQRvisible: false, //二维码弹窗
name: null,
projectName2: null,
projectName2: undefined,
showmodal: false, //勾选提示框
closable: false, //modal右上角的关闭按钮
pageSize: 10,
@@ -352,7 +352,7 @@ export default {
const closeDrawer = () => {
ctx.emit("update:FSvisible", false);
state.name = null;
state.projectName2 = null;
state.projectName2 = undefined;
state.selectedRowKeys = [];
state.selectedStudents = [];
state.currentPage = 1;
@@ -430,8 +430,9 @@ export default {
dataIndex: "studentUserNo",
// width: "30%",
key: "studentUserNo",
width: 50,
width: 120,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -467,7 +468,8 @@ export default {
dataIndex: "studentDepartName",
// width: "30%",
key: "studentDepartName",
width: 50,
width: 60,
ellipsis: true,
align: "center",
className: "h",
customRender: (text) => {
@@ -488,6 +490,7 @@ export default {
key: "studentJobName",
width: 50,
align: "center",
ellipsis: true,
className: "h",
customRender: (text) => {
return (
@@ -507,6 +510,7 @@ export default {
key: "cur",
width: 110,
align: "center",
ellipsis: true,
className: "h",
},
// {
@@ -523,6 +527,7 @@ export default {
key: "time",
width: 50,
align: "center",
ellipsis: true,
className: "h",
},
{
@@ -531,10 +536,12 @@ export default {
key: "state",
width: 50,
align: "center",
ellipsis: true,
className: "h",
},
{
title: "考勤情况",
ellipsis: true,
className: "h",
dataIndex: "opacation",
key: "opacation",
@@ -746,7 +753,7 @@ export default {
function resetTaskList() {
state.currentPage = 1;
state.name = null;
state.projectName2 = null;
state.projectName2 = undefined;
state.tableDataTotal = -1;
state.tableDataTotal2 = 0;
getStudent();