style:增加下载中心

This commit is contained in:
lixg
2023-01-06 11:56:19 +08:00
parent 047e553d7b
commit 9879020c6b
10 changed files with 665 additions and 190 deletions

257
src/views/DownLoad.vue Normal file
View File

@@ -0,0 +1,257 @@
<!--
* @Author: lixg lixg@dongwu-inc.com
* @Date: 2023-01-06 11:30:15
* @LastEditors: lixg lixg@dongwu-inc.com
* @LastEditTime: 2023-01-06 11:55:38
* @FilePath: /fe-manage/src/views/DownLoad.vue
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
-->
<template>
<div class="DownLoad">
<div
style="
display: flex;
align-items: center;
justify-content: space-between;
width: 100%;
"
>
<div class="tab1">
<div class="nameinp">
<div class="namee">作业名称</div>
<a-input
v-model:value="name"
style="width: 330px; height: 40px; border-radius: 8px"
placeholder="请输入作业名称"
/>
</div>
<div class="btns">
<div class="btn1">
<div class="img1">
<img src="../assets/images/courseManage/search0.png" />
</div>
<div class="wz">搜索</div>
</div>
<div class="btn2">
<div class="img2">
<img src="../assets/images/courseManage/reset1.png" />
</div>
<div class="wz">重置</div>
</div>
</div>
</div>
<div style="width: 200px">
<div
style="
display: flex;
align-items: center;
font-size: 12px;
font-weight: 400;
color: rgba(153, 153, 153, 0.85);
line-height: 22px;
justify-content: space-between;
"
>
<div>当前容量:</div>
<div>55.01MB / 2GB</div>
</div>
<a-progress :percent="40" :width="200" :show-info="false" />
</div>
</div>
<!-- 文件容器 -->
<div class="zipcontainer">
<!-- 单个文件 -->
<div class="item">
<div class="itemup">
<div class="lefttop"></div>
<div class="cent">
<div class="zip"></div>
<div class="ziprit">
<div class="textop">作业名称</div>
<div class="texdown">
<div class="timemanag" style="margin-top: 12px">
2022-08-08 10:30:30 管理员
</div>
<div class="timemanag">来源管理者进阶-腾飞班Z1</div>
</div>
</div>
</div>
</div>
<div class="itemdown">
<div class="download">下载</div>
<div class="delete">删除</div>
</div>
</div>
</div>
</div>
</template>
<script>
import { toRefs, reactive } from "vue";
export default {
name: "DownLoad",
setup() {
const state = reactive({
name: "",
});
return {
...toRefs(state),
};
},
};
</script>
<style lang="scss">
.DownLoad {
width: 100%;
margin: 42px 64px 0 32px;
.tab1 {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
align-items: center;
.t1 {
display: flex;
align-items: center;
margin-bottom: 5px;
}
.nameinp {
display: flex;
align-items: center;
margin-top: 10px;
margin-right: 10px;
.namee {
color: rgba(0, 0, 0, 0.85);
font-size: 14px;
}
}
.btns {
display: flex;
margin-top: 10px;
.btn1 {
width: 100px;
height: 40px;
margin-right: 16px;
display: flex;
align-items: center;
justify-content: center;
color: #ffffff;
font-size: 14px;
background: #4ea6ff;
border-radius: 8px;
border: 1px solid #4ea6ff;
cursor: pointer;
.wz {
margin-left: 10px;
}
}
.btn2 {
width: 100px;
height: 40px;
display: flex;
align-items: center;
justify-content: center;
color: #4ea6ff;
font-size: 14px;
background: #ffffff;
border-radius: 8px;
cursor: pointer;
border: 1px solid #4ea6ff;
.wz {
margin-left: 10px;
}
}
}
}
.zipcontainer {
display: flex;
flex-wrap: wrap;
margin-top: 30px;
.item {
margin-right: 50px;
margin-bottom: 50px;
.itemup {
width: 352px;
height: 160px;
background: #ffffff;
border-radius: 2px 2px 0px 0px;
border: 1px solid #4ea6ff;
position: relative;
.lefttop {
width: 8px;
height: 21px;
background: #4ea6ff;
border-radius: 0px 4px 4px 0px;
top: 18px;
position: absolute;
}
.cent {
display: flex;
margin-top: 40px;
margin-left: 40px;
.zip {
width: 62px;
height: 72px;
background-image: url(../assets/images/leveladd/zip.png);
background-size: 100%;
}
.ziprit {
margin-left: 20px;
margin-top: -5px;
.textop {
font-size: 18px;
font-weight: 600;
color: #4ea6ff;
}
.texdown {
.timemanag {
font-size: 14px;
font-weight: 400;
color: #878b92;
}
}
}
}
}
.itemdown {
width: 352px;
height: 48px;
border-radius: 0px 0px 2px 2px;
border: 1px solid #4ea6ff;
border-top: 0;
display: flex;
font-size: 16px;
font-weight: 600;
line-height: 22px;
.download {
width: 176px;
height: 48px;
color: #ffffff;
cursor: pointer;
background: #409eff;
display: flex;
justify-content: center;
align-items: center;
}
.delete {
width: 176px;
height: 48px;
color: #4ea6ff;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
.outime {
font-size: 16px;
font-weight: 400;
color: #878b92;
margin-left: 10px;
}
}
}
}
}
</style>