mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-13 12:56:45 +08:00
feat:组员名单抽屉遮挡问题,概览无数据的跳转
This commit is contained in:
@@ -120,9 +120,10 @@
|
||||
<button class="btn btn2" @click="closeModal">确定</button>
|
||||
</div>
|
||||
</a-modal>
|
||||
<stu-add v-model:Stuvisible="Stuvisible" />
|
||||
</div>
|
||||
</a-drawer>
|
||||
<stu-add v-model:Stuvisible="Stuvisible" />
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
:visible="Stuvisible"
|
||||
class="drawerStyle stuadd"
|
||||
placement="right"
|
||||
width="60%"
|
||||
width="70%"
|
||||
@after-visible-change="afterVisibleChange"
|
||||
>
|
||||
<div class="drawerMain">
|
||||
@@ -1048,7 +1048,7 @@ export default {
|
||||
<style lang="scss">
|
||||
.stuadd {
|
||||
.drawerMain {
|
||||
min-width: 540px;
|
||||
min-width: 600px;
|
||||
margin: 0px 32px 0px 32px;
|
||||
// overflow-y: scroll;
|
||||
display: flex;
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
:visible="Svisible"
|
||||
class="drawerStyle subset"
|
||||
placement="right"
|
||||
width="70%"
|
||||
width="50%"
|
||||
@after-visible-change="afterVisibleChange"
|
||||
>
|
||||
<div class="drawerMain">
|
||||
@@ -54,9 +54,10 @@
|
||||
<button class="btn2">确定</button>
|
||||
</div>
|
||||
</div>
|
||||
<!-- 创建小组抽屉 -->
|
||||
<add-group v-model:Avisible="Avisible" />
|
||||
</a-drawer>
|
||||
<!-- 创建小组抽屉 -->
|
||||
<add-group v-model:Avisible="Avisible" />
|
||||
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
@@ -45,14 +45,17 @@
|
||||
style="width: 270px"
|
||||
/>
|
||||
</div>
|
||||
<div class="btnn btn1">
|
||||
<div class="search"></div>
|
||||
<div class="btnText">搜索</div>
|
||||
</div>
|
||||
<div class="btn btn2">
|
||||
<div class="search"></div>
|
||||
<div class="btnText">重置</div>
|
||||
<div style="display: flex;margin-bottom: 20px">
|
||||
<div class="btnn btn1">
|
||||
<div class="search"></div>
|
||||
<div class="btnText">搜索</div>
|
||||
</div>
|
||||
<div class="btn btn2">
|
||||
<div class="search"></div>
|
||||
<div class="btnText">重置</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="btns">
|
||||
<div class="btn btn3" @click="showModal1">
|
||||
|
||||
@@ -2229,6 +2229,7 @@ export default {
|
||||
};
|
||||
const tostudent = () => {
|
||||
state.activeKey = "3";
|
||||
state.activeKey1 = "8";
|
||||
};
|
||||
const showModal = () => {
|
||||
state.pubproject = true;
|
||||
|
||||
@@ -51,7 +51,7 @@
|
||||
:data-source="dataSource"
|
||||
:loading="tableDataTotal === -1 ? true : false"
|
||||
expandRowByClick="true"
|
||||
:scroll="{ x: 1500, y: 800 }"
|
||||
:scroll="{ x: 1500}"
|
||||
@expand="expandTable"
|
||||
:pagination="false"
|
||||
/>
|
||||
@@ -108,31 +108,37 @@ export default {
|
||||
columns: [
|
||||
{
|
||||
title: '姓名',
|
||||
width: 50,
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
},
|
||||
{
|
||||
title: '部门',
|
||||
width: 50,
|
||||
dataIndex: 'department',
|
||||
key: 'department',
|
||||
},
|
||||
{
|
||||
width: 50,
|
||||
title: '岗位',
|
||||
dataIndex: 'post',
|
||||
key: 'post',
|
||||
},
|
||||
{
|
||||
title: '项目',
|
||||
width: 50,
|
||||
dataIndex: 'project',
|
||||
key: 'project',
|
||||
},
|
||||
{
|
||||
title: '学习路径',
|
||||
width: 50,
|
||||
dataIndex: 'learning',
|
||||
key: 'learning',
|
||||
},
|
||||
{
|
||||
title: '提交时间',
|
||||
width: 50,
|
||||
dataIndex: 'submit',
|
||||
key: 'submit',
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user