mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-10 19:36:46 +08:00
165 lines
3.5 KiB
Vue
165 lines
3.5 KiB
Vue
<template>
|
|
<a-drawer
|
|
:visible="Changevisible"
|
|
class="drawerStyle changegroup"
|
|
placement="right"
|
|
width="70%"
|
|
@after-visible-change="afterVisibleChange"
|
|
>
|
|
<div class="drawerMain">
|
|
<div class="header">
|
|
<div class="headerTitle">学员换组</div>
|
|
<img
|
|
style="width: 29px; height: 29px; cursor: pointer"
|
|
src="../../assets/images/basicinfo/close.png"
|
|
@click="closeDrawer"
|
|
/>
|
|
</div>
|
|
<div class="main">
|
|
<div class="onerow">将此学员移动到</div>
|
|
<div class="secondrow">
|
|
<a-select
|
|
v-model:value="value"
|
|
style="width: 264px; border-radius: 8px"
|
|
placeholder="好好学习"
|
|
:options="stugroupList"
|
|
allowClear
|
|
showSearch
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="btnn">
|
|
<button class="btn1">取消</button>
|
|
<button class="btn2">确定</button>
|
|
</div>
|
|
</div>
|
|
</a-drawer>
|
|
</template>
|
|
|
|
<script>
|
|
import { reactive, toRefs } from "vue";
|
|
export default {
|
|
name: "ChangeGroup",
|
|
props: {
|
|
Changevisible: {
|
|
type: Boolean,
|
|
default: false,
|
|
},
|
|
},
|
|
setup(props, ctx) {
|
|
const state = reactive({
|
|
stugroupList: [
|
|
{
|
|
id: "1",
|
|
value: "好好学习",
|
|
label: "好好学习",
|
|
},
|
|
{
|
|
id: "2",
|
|
value: "天天向上",
|
|
label: "天天向上",
|
|
},
|
|
{
|
|
id: "3",
|
|
value: "最强小组",
|
|
label: "最强小组",
|
|
},
|
|
],
|
|
});
|
|
const closeDrawer = () => {
|
|
ctx.emit("update:Changevisible", false);
|
|
};
|
|
|
|
const afterVisibleChange = (bool) => {
|
|
console.log("state", bool);
|
|
};
|
|
|
|
return {
|
|
...toRefs(state),
|
|
afterVisibleChange,
|
|
closeDrawer,
|
|
// change,
|
|
};
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.changegroup {
|
|
.drawerMain {
|
|
min-width: 600px;
|
|
margin: 0px 32px 0px 32px;
|
|
overflow-x: scroll;
|
|
display: flex;
|
|
flex-direction: column;
|
|
.header {
|
|
height: 73px;
|
|
border-bottom: 1px solid #e8e8e8;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
// background-color: red;
|
|
margin-bottom: 20px;
|
|
.headerTitle {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333333;
|
|
line-height: 25px;
|
|
// margin-left: 24px;
|
|
}
|
|
}
|
|
.main {
|
|
.onerow {
|
|
margin: 32px 0 32px 24px;
|
|
color: rgba(51, 51, 51, 1);
|
|
font-size: 16px;
|
|
}
|
|
.secondrow {
|
|
margin-left: 24px;
|
|
.ant-select {
|
|
height: 40px;
|
|
}
|
|
.ant-select-selector {
|
|
height: 40px;
|
|
padding: 4px 11px;
|
|
border-radius: 8px;
|
|
}
|
|
.ant-select-selection-search-input {
|
|
height: 40px;
|
|
}
|
|
}
|
|
}
|
|
.btnn {
|
|
height: 72px;
|
|
width: 100%;
|
|
position: absolute;
|
|
bottom: 0;
|
|
left: 0;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.16);
|
|
.btn1 {
|
|
width: 100px;
|
|
height: 40px;
|
|
border: 1px solid #4ea6ff;
|
|
border-radius: 8px;
|
|
color: #4ea6ff;
|
|
background-color: #fff;
|
|
cursor: pointer;
|
|
}
|
|
.btn2 {
|
|
cursor: pointer;
|
|
width: 100px;
|
|
height: 40px;
|
|
background: #4ea6ff;
|
|
border-radius: 8px;
|
|
border: 0;
|
|
margin-left: 15px;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|