mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-12 12:26:47 +08:00
420 lines
12 KiB
Vue
420 lines
12 KiB
Vue
<template>
|
||
<a-drawer
|
||
:visible="AddImpStuvisible"
|
||
class="drawerStyle AddLevelImpStu"
|
||
placement="right"
|
||
width="40%"
|
||
@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="minatitl">
|
||
<div class="up1">请下载</div>
|
||
<div class="up2">模板</div>
|
||
<div class="up1">,按要求填写数据并导入</div>
|
||
</div>
|
||
<div class="upload">
|
||
<div class="text">上传:</div>
|
||
<div class="right">
|
||
<div class="load">
|
||
<div class="cloud"></div>
|
||
<div class="tip">点击或将文件拖拽到此处上传</div>
|
||
<div class="tipz">支持扩展名:.xls/.xlsx</div>
|
||
</div>
|
||
<div class="loadstate">
|
||
<div class="loadborder">
|
||
<div class="content">
|
||
<div class="img"></div>
|
||
<div class="timebox">
|
||
<div class="timetop">
|
||
<div class="tit">京东方商业模型.xls</div>
|
||
<div class="stateloading">正在上传</div>
|
||
</div>
|
||
<div class="prog">
|
||
<div class="inprogloading"></div>
|
||
</div>
|
||
</div>
|
||
<div class="curloading">
|
||
<div class="cur">55%</div>
|
||
<div class="cancel" style="margin-left: 20px">暂停</div>
|
||
<div class="cancel" style="margin-left: 15px">取消</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="loadborder">
|
||
<div class="content">
|
||
<div class="img"></div>
|
||
<div class="timebox">
|
||
<div class="timetop">
|
||
<div class="tit">京东方商业模型.xls</div>
|
||
<div class="statedefeat">上传失败</div>
|
||
</div>
|
||
<div class="prog">
|
||
<div class="inprogdefeat"></div>
|
||
</div>
|
||
</div>
|
||
<div class="curloading">
|
||
<div class="cur">55%</div>
|
||
<div class="cancel" style="margin-left: 20px">重传</div>
|
||
<div class="cancel" style="margin-left: 15px">取消</div>
|
||
</div>
|
||
<div class="defeat">
|
||
<div class="detext">下载失败数据</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="defeatbox">
|
||
<div class="lefimg"></div>
|
||
<div class="tacl">20条数据导入成功,5条数据导入失败</div>
|
||
</div>
|
||
<div class="loadborder">
|
||
<div class="content">
|
||
<div class="img"></div>
|
||
<div class="timebox">
|
||
<div class="timetop">
|
||
<div class="tit">京东方商业模型.xls</div>
|
||
<div class="statesucce">上传成功</div>
|
||
</div>
|
||
<div class="prog">
|
||
<div class="inprogsucce"></div>
|
||
</div>
|
||
</div>
|
||
<div class="curloading">
|
||
<div class="cur">55%</div>
|
||
<div class="cancel" style="margin-left: 20px">删除</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
<div class="succebox">
|
||
<div class="lefimg"></div>
|
||
<div class="tacl">20条数据导入成功,5条数据导入失败</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</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: "ImpStu",
|
||
props: {
|
||
AddImpStuvisible: {
|
||
type: Boolean,
|
||
default: false,
|
||
},
|
||
},
|
||
setup(props, ctx) {
|
||
const state = reactive({});
|
||
const closeDrawer = () => {
|
||
ctx.emit("update:AddImpStuvisible", false);
|
||
};
|
||
|
||
const afterVisibleChange = (bool) => {
|
||
console.log("state", bool);
|
||
};
|
||
|
||
return {
|
||
...toRefs(state),
|
||
afterVisibleChange,
|
||
closeDrawer,
|
||
// change,
|
||
};
|
||
},
|
||
};
|
||
</script>
|
||
|
||
<style lang="scss" >
|
||
.AddLevelImpStu {
|
||
.drawerMain {
|
||
min-width: 500px;
|
||
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 {
|
||
.minatitl {
|
||
display: flex;
|
||
.up1 {
|
||
font-size: 16px;
|
||
font-weight: 400;
|
||
color: #333333;
|
||
}
|
||
.up2 {
|
||
font-size: 16px;
|
||
font-weight: 400;
|
||
color: #388be1;
|
||
margin-left: 4px;
|
||
}
|
||
}
|
||
.upload {
|
||
margin-top: 32px;
|
||
display: flex;
|
||
.text {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #333333;
|
||
}
|
||
.right {
|
||
margin-left: 6px;
|
||
.load {
|
||
width: 500px;
|
||
height: 176px;
|
||
background: #f5f9fd;
|
||
border-radius: 4px;
|
||
// opacity: 0.3;
|
||
border: 1px dashed #caddfd;
|
||
display: flex;
|
||
flex-direction: column;
|
||
align-items: center;
|
||
margin-bottom: 20px;
|
||
.cloud {
|
||
margin-top: 52px;
|
||
width: 28px;
|
||
height: 28px;
|
||
background-image: url(../../assets/images/basicinfo/cloud.png);
|
||
}
|
||
.tip {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #388be1;
|
||
margin-top: 15px;
|
||
cursor: pointer;
|
||
}
|
||
.tipz {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #999999;
|
||
margin-top: 10px;
|
||
}
|
||
}
|
||
.loadstate {
|
||
width: 500px;
|
||
margin-bottom: 100px;
|
||
|
||
.loadborder {
|
||
width: 500px;
|
||
height: 173px;
|
||
border-radius: 4px;
|
||
border: 1px dashed #eaeaea;
|
||
margin-bottom: 10px;
|
||
margin-top: 10px;
|
||
display: flex;
|
||
align-items: center;
|
||
.content {
|
||
display: flex;
|
||
margin-left: 20px;
|
||
position: relative;
|
||
.defeat {
|
||
position: absolute;
|
||
left: 46px;
|
||
top: 42px;
|
||
font-size: 14px;
|
||
font-weight: 500;
|
||
width: 120px;
|
||
height: 32px;
|
||
border-radius: 2px;
|
||
border: 1px solid #387df7;
|
||
display: flex;
|
||
justify-content: center;
|
||
align-items: center;
|
||
cursor: pointer;
|
||
.detext {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #387df7;
|
||
}
|
||
}
|
||
.img {
|
||
width: 30px;
|
||
height: 34px;
|
||
background-image: url(../../assets/images/basicinfo/exl.png);
|
||
}
|
||
.timebox {
|
||
margin-left: 15px;
|
||
margin-top: -5px;
|
||
.timetop {
|
||
display: flex;
|
||
width: 262px;
|
||
justify-content: space-between;
|
||
margin-bottom: 8px;
|
||
.tit {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #333333;
|
||
}
|
||
.stateloading {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #388be1;
|
||
}
|
||
.statedefeat {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #ff7474;
|
||
}
|
||
.statesucce {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #35ae69;
|
||
}
|
||
}
|
||
.prog {
|
||
width: 262px;
|
||
height: 5px;
|
||
background: #eaf1fe;
|
||
border-radius: 4px;
|
||
.inprogloading {
|
||
width: 55%;
|
||
height: 5px;
|
||
border-radius: 4px;
|
||
|
||
background: #388be1;
|
||
}
|
||
//下载失败条
|
||
.inprogdefeat {
|
||
width: 55%;
|
||
height: 5px;
|
||
border-radius: 4px;
|
||
|
||
background: #ff7474;
|
||
}
|
||
//下载成功条
|
||
.inprogsucce {
|
||
width: 100%;
|
||
height: 5px;
|
||
border-radius: 4px;
|
||
|
||
background: #57c887;
|
||
}
|
||
}
|
||
}
|
||
.curloading {
|
||
margin-left: 15px;
|
||
margin-top: 15px;
|
||
display: flex;
|
||
.cur {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #333333;
|
||
}
|
||
.cancel {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #387df7;
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.defeatbox {
|
||
width: 500px;
|
||
height: 40px;
|
||
background: rgba(255, 116, 116, 0.1);
|
||
border: 1px solid #ff7474;
|
||
display: flex;
|
||
align-items: center;
|
||
.lefimg {
|
||
width: 14px;
|
||
height: 14px;
|
||
margin-left: 17px;
|
||
margin-right: 8px;
|
||
background-image: url(../../assets/images/leveladd/nodone.png);
|
||
background-size: 100%;
|
||
}
|
||
.tacl {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
color: #ff7474;
|
||
}
|
||
}
|
||
.succebox {
|
||
width: 500px;
|
||
height: 40px;
|
||
background: rgba(53, 174, 105, 0.1);
|
||
border: 1px solid #35ae69;
|
||
display: flex;
|
||
align-items: center;
|
||
.lefimg {
|
||
width: 14px;
|
||
height: 14px;
|
||
margin-left: 17px;
|
||
margin-right: 8px;
|
||
background-image: url(../../assets/images/leveladd/done.png);
|
||
background-size: 100%;
|
||
}
|
||
.tacl {
|
||
font-size: 14px;
|
||
font-weight: 400;
|
||
|
||
color: rgba(0, 0, 0, 0.65);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
}
|
||
.btnn {
|
||
height: 72px;
|
||
width: 100%;
|
||
position: absolute;
|
||
background-color: #fff;
|
||
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> |