人员项目表默认用户调整

v1.2.0
‘wangjiuyun 2024-10-22 17:55:19 +08:00
parent 5f860e2fed
commit 90867530d3
1 changed files with 5 additions and 6 deletions

View File

@ -37,7 +37,6 @@
:summaryMethod="getFixedColumnsSummaries" :summaryMethod="getFixedColumnsSummaries"
tableHeight="600" tableHeight="600"
:border="true" :border="true"
></CustomTable> ></CustomTable>
</div> </div>
</div> </div>
@ -68,11 +67,11 @@ export default {
fixedColumns: [], fixedColumns: [],
executionData: [], executionData: [],
dateRange: [], dateRange: [],
selectedUserName: "超级管理员", selectedUserName: this.$store.state.user.nickName,
selectedUserId: 1, selectedUserId: this.$store.state.user.id,
selectedUser: { selectedUser: {
userId: 1, userId: this.$store.state.user.id,
selectedUserName: "超级管理员", selectedUserName: this.$store.state.user.nickName,
}, },
userSelectDialogVisible: false, userSelectDialogVisible: false,
}; };
@ -316,7 +315,7 @@ export default {
bottom: 0; bottom: 0;
position: absolute; position: absolute;
} }
::v-deep .el-table__footer td{ ::v-deep .el-table__footer td {
border: none !important; border: none !important;
} }
</style> </style>