This commit is contained in:
Pengxiansen
2025-02-20 16:36:25 +08:00
parent 3f8e42a239
commit 5dc774f312
21 changed files with 1483 additions and 133 deletions

View File

@@ -360,8 +360,13 @@ const deleteDepSelect = () => {
//确定添加授权
const confirm = () => {
if(!stuSelectRows.value.length && !projectSelectRows.value.length){
message.warning('请选择学员')
return
}
visiable.value = false;
emit("confirm", stuSelectRows.value, projectSelectRows.value);
closeDrawer()
};
onMounted(() => {
@@ -378,7 +383,7 @@ onMounted(() => {
}
});
</script>
<style lang="scss">
<style lang="scss" scoped>
.CommonStudent > .ant-drawer-content-wrapper {
min-width: 1200px !important;
width: 1200px !important;
@@ -390,6 +395,10 @@ onMounted(() => {
margin-left: 24px;
}
.CommonStudent {
.ant-form-item{
display: flex;
align-items: center;
}
.ant-btn-primary {
background-color: #4ea6ff !important;
}