Merge branch 'master' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage

This commit is contained in:
songwc
2022-10-22 09:49:37 +08:00
20 changed files with 21078 additions and 20409 deletions

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入活动名称"
maxlength="20"
/>
</div>
</div>
@@ -51,6 +52,7 @@
v-model:value="textV1"
placeholder="请输入活动公告"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入讨论名称"
maxlength="20"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入测评名称"
maxlength="20"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 384px; height: 32px"
placeholder="请输入小组名称"
maxlength="20"
/>
</div>
</div>
@@ -57,13 +58,14 @@
</div>
<div class="main_item2">
<div class="signbox">
<span style="margin-right: 3px">项目说明</span>
<span style="margin-right: 3px">面授说明</span>
</div>
<div class="textarea">
<a-textarea
v-model:value="textV1"
placeholder="请输入说明"
allow-clear
maxlength="100"
/>
</div>
</div>
@@ -134,6 +136,7 @@
v-model:value="inputV4"
style="width: 384px; height: 32px"
placeholder="请输入上课地址"
maxlength="100"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入作业名称"
maxlength="20"
/>
</div>
</div>
@@ -51,6 +52,7 @@
v-model:value="textV1"
placeholder="请输入作业名称"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入测评名称"
maxlength="20"
/>
</div>
</div>
@@ -75,8 +76,9 @@
<div class="textarea">
<a-textarea
v-model:value="textV1"
placeholder="请输入活动说明"
placeholder="请输入调研说明"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入考试名称"
maxlength="20"
/>
</div>
</div>
@@ -45,6 +46,7 @@
v-model:value="textV1"
placeholder="请输入考试说明"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入外链名称"
maxlength="20"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入考试名称"
maxlength="20"
/>
</div>
</div>
@@ -45,6 +46,7 @@
v-model:value="textV1"
placeholder="请输入考试说明"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -33,6 +33,7 @@
v-model:value="inputV1"
style="width: 424px; height: 32px"
placeholder="请输入投票名称"
maxlength="20"
/>
</div>
</div>
@@ -89,6 +90,7 @@
v-model:value="textV1"
placeholder="请输入投票说明"
allow-clear
maxlength="150"
/>
</div>
</div>

View File

@@ -0,0 +1,164 @@
<template>
<a-drawer
:visible="Changevisible"
class="drawerStyle changegroup"
placement="right"
width="50%"
@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"
/>
</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 scoped 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: 100%;
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>

View File

@@ -8,7 +8,7 @@
>
<div class="drawerMain">
<div class="header">
<div class="headerTitle">考试管理</div>
<div class="headerTitle">{{ title }}</div>
<img
style="width: 29px; height: 29px; cursor: pointer"
src="../../assets/images/basicinfo/close.png"
@@ -93,6 +93,10 @@ export default {
type: Boolean,
default: false,
},
title: {
type: String,
default: "",
},
},
setup(props, ctx) {
@@ -297,7 +301,7 @@ export default {
};
</script>
<style lang="scss" >
<style lang="scss">
// .drawerStyle {
// .ant-drawer-content-wrapper {
// // max-width: 1000px;
@@ -490,4 +494,4 @@ export default {
}
}
}
</style>
</style>

View File

@@ -8,7 +8,7 @@
>
<div class="drawerMain">
<div class="header">
<div class="headerTitle">在线时间管理</div>
<div class="headerTitle">{{ title }}</div>
<img
style="width: 29px; height: 29px; cursor: pointer"
src="../../assets/images/basicinfo/close.png"
@@ -104,6 +104,10 @@ export default {
type: Boolean,
default: false,
},
title: {
type: String,
default: "",
},
},
setup(props, ctx) {
@@ -274,7 +278,7 @@ export default {
};
</script>
<style lang="scss" >
<style lang="scss">
// .drawerStyle {
// .ant-drawer-content-wrapper {
// // max-width: 1000px;
@@ -474,4 +478,4 @@ export default {
}
}
}
</style>
</style>