mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/fe-manage.git
synced 2025-12-16 14:26:45 +08:00
Merge branch 'master' of ssh://gitlab.dongwu-inc.com:10022/BOE/fe-manage
This commit is contained in:
BIN
src/assets/images/taskpage/check.png
Normal file
BIN
src/assets/images/taskpage/check.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 563 B |
@@ -78,12 +78,12 @@
|
|||||||
<div class="btnss" style="margin-top: 20px">
|
<div class="btnss" style="margin-top: 20px">
|
||||||
<div class="btn btn1" style="margin-right: 20px">
|
<div class="btn btn1" style="margin-right: 20px">
|
||||||
<div class="img1"></div>
|
<div class="img1"></div>
|
||||||
<div class="wz">导入学员</div>
|
<div class="wz" @click="showImpStu">导入学员</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn btn2">
|
<div class="btn btn2" @click="showCopyModal">
|
||||||
<div class="wz">批量签到</div>
|
<div class="wz">批量签到</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn btn2">
|
<div class="btn btn2" @click="showStopModal">
|
||||||
<div class="wz" @click="showEntryScore">批量签退</div>
|
<div class="wz" @click="showEntryScore">批量签退</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btn btn2">
|
<div class="btn btn2">
|
||||||
@@ -149,12 +149,76 @@
|
|||||||
<button class="btn2">确定</button>
|
<button class="btn2">确定</button>
|
||||||
</div>
|
</div>
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
|
<!-- 导入学员抽屉 -->
|
||||||
|
<imp-stu v-model:AddImpStuvisible="AddImpStuvisible" />
|
||||||
|
<!-- 批量签到弹窗 -->
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="copyModal"
|
||||||
|
:footer="null"
|
||||||
|
:closable="closeCopy"
|
||||||
|
wrapClassName="CopyModal"
|
||||||
|
centered="true"
|
||||||
|
>
|
||||||
|
<div class="delete">
|
||||||
|
<div class="del_header"></div>
|
||||||
|
<div class="del_main">
|
||||||
|
<div class="header">
|
||||||
|
<div class="icon"></div>
|
||||||
|
<span>提示</span>
|
||||||
|
<div class="close_exit" @click="closeCopyModal"></div>
|
||||||
|
</div>
|
||||||
|
<div class="body">
|
||||||
|
<span>您确定要批量签到吗</span>
|
||||||
|
</div>
|
||||||
|
<div class="del_btnbox">
|
||||||
|
<div class="del_btn btn1">
|
||||||
|
<div class="btnText" @click="delete_exit">取消</div>
|
||||||
|
</div>
|
||||||
|
<div class="del_btn btn2">
|
||||||
|
<div class="btnText" @click="delete_exit">确定</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
|
<!-- 批量签退弹窗 -->
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="stopModal"
|
||||||
|
:footer="null"
|
||||||
|
:closable="closeStop"
|
||||||
|
wrapClassName="CopyModal"
|
||||||
|
centered="true"
|
||||||
|
>
|
||||||
|
<div class="delete">
|
||||||
|
<div class="del_header"></div>
|
||||||
|
<div class="del_main">
|
||||||
|
<div class="header">
|
||||||
|
<div class="icon"></div>
|
||||||
|
<span>提示</span>
|
||||||
|
<div class="close_exit" @click="closeStopModal"></div>
|
||||||
|
</div>
|
||||||
|
<div class="body">
|
||||||
|
<span>您确定要批量签退吗</span>
|
||||||
|
</div>
|
||||||
|
<div class="del_btnbox">
|
||||||
|
<div class="del_btn btn1">
|
||||||
|
<div class="btnText" @click="delete_exit">取消</div>
|
||||||
|
</div>
|
||||||
|
<div class="del_btn btn2">
|
||||||
|
<div class="btnText" @click="delete_exit">确定</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { toRefs, reactive } from "vue";
|
import { toRefs, reactive } from "vue";
|
||||||
|
import ImpStu from "../../components/drawers/AddLevelImportStu";
|
||||||
export default {
|
export default {
|
||||||
name: "FaceManage",
|
name: "FaceManage",
|
||||||
|
components: { ImpStu },
|
||||||
props: {
|
props: {
|
||||||
FSvisible: {
|
FSvisible: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
@@ -165,6 +229,11 @@ export default {
|
|||||||
setup(props, ctx) {
|
setup(props, ctx) {
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
Evisible: false, //录入成绩抽屉
|
Evisible: false, //录入成绩抽屉
|
||||||
|
AddImpStuvisible: false, //导入学员抽屉
|
||||||
|
copyModal: false, //批量签到弹窗
|
||||||
|
closeCopy: false, //签到弹窗关闭图标
|
||||||
|
stopModal: false, //签退弹窗
|
||||||
|
closeStop: false, //签退弹窗关闭图标
|
||||||
name: null,
|
name: null,
|
||||||
showmodal: false, //勾选提示框
|
showmodal: false, //勾选提示框
|
||||||
closable: false, //modal右上角的关闭按钮
|
closable: false, //modal右上角的关闭按钮
|
||||||
@@ -346,7 +415,21 @@ export default {
|
|||||||
const closeDrawer = () => {
|
const closeDrawer = () => {
|
||||||
ctx.emit("update:FSvisible", false);
|
ctx.emit("update:FSvisible", false);
|
||||||
};
|
};
|
||||||
|
const showImpStu = () => {
|
||||||
|
state.AddImpStuvisible = true;
|
||||||
|
};
|
||||||
|
const showCopyModal = () => {
|
||||||
|
state.copyModal = true;
|
||||||
|
};
|
||||||
|
const closeCopyModal = () => {
|
||||||
|
state.copyModal = false;
|
||||||
|
};
|
||||||
|
const showStopModal = () => {
|
||||||
|
state.stopModal = true;
|
||||||
|
};
|
||||||
|
const closeStopModal = () => {
|
||||||
|
state.stopModal = false;
|
||||||
|
};
|
||||||
const showEntryScore = () => {
|
const showEntryScore = () => {
|
||||||
state.Evisible = true;
|
state.Evisible = true;
|
||||||
};
|
};
|
||||||
@@ -498,6 +581,11 @@ export default {
|
|||||||
showEntryScore,
|
showEntryScore,
|
||||||
tableDataFunc,
|
tableDataFunc,
|
||||||
getTableData,
|
getTableData,
|
||||||
|
showImpStu,
|
||||||
|
showCopyModal,
|
||||||
|
closeCopyModal,
|
||||||
|
showStopModal,
|
||||||
|
closeStopModal,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -509,7 +597,117 @@ export default {
|
|||||||
padding: 0px;
|
padding: 0px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
.CopyModal {
|
||||||
|
.ant-modal {
|
||||||
|
width: 424px !important;
|
||||||
|
height: 258px !important;
|
||||||
|
.ant-modal-content {
|
||||||
|
width: 424px !important;
|
||||||
|
height: 258px !important;
|
||||||
|
.ant-modal-body {
|
||||||
|
width: 424px !important;
|
||||||
|
height: 258px !important;
|
||||||
|
padding: 0 !important;
|
||||||
|
.delete {
|
||||||
|
z-index: 999;
|
||||||
|
width: 424px;
|
||||||
|
height: 258px;
|
||||||
|
background: #ffffff;
|
||||||
|
box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.21);
|
||||||
|
border-radius: 4px;
|
||||||
|
// position: absolute;
|
||||||
|
// left: 50%;
|
||||||
|
// top: 10%;
|
||||||
|
// transform: translate(-50%, -50%);
|
||||||
|
.del_header {
|
||||||
|
position: absolute;
|
||||||
|
width: calc(100%);
|
||||||
|
height: 68px;
|
||||||
|
background: linear-gradient(
|
||||||
|
rgba(78, 166, 255, 0.2) 0%,
|
||||||
|
rgba(78, 166, 255, 0) 100%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.del_main {
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-top: 20px;
|
||||||
|
padding-left: 26px;
|
||||||
|
font-size: 16px;
|
||||||
|
.icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin-right: 10px;
|
||||||
|
background-image: url(@/assets/images/coursewareManage/QR.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
.close_exit {
|
||||||
|
position: absolute;
|
||||||
|
right: 42px;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-image: url(@/assets/images/coursewareManage/close.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.body {
|
||||||
|
width: 100%;
|
||||||
|
margin: 34px auto 56px auto;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
flex-direction: column;
|
||||||
|
// background-color: red;
|
||||||
|
position: relative;
|
||||||
|
.back {
|
||||||
|
position: absolute;
|
||||||
|
top: 30px;
|
||||||
|
font-size: 12px;
|
||||||
|
font-weight: 400;
|
||||||
|
color: #666666;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.del_btnbox {
|
||||||
|
display: flex;
|
||||||
|
margin: 30px auto;
|
||||||
|
justify-content: center;
|
||||||
|
.del_btn {
|
||||||
|
width: 100px;
|
||||||
|
height: 40px;
|
||||||
|
background: rgba(64, 158, 255, 0);
|
||||||
|
border-radius: 8px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
|
||||||
|
flex-shrink: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
.btnText {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.btn1 {
|
||||||
|
border: 1px solid rgba(64, 158, 255, 1);
|
||||||
|
color: #4ea6ff;
|
||||||
|
margin-right: 14px;
|
||||||
|
}
|
||||||
|
.btn2 {
|
||||||
|
background-color: #4ea6ff;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
.largeDrawerStyle {
|
.largeDrawerStyle {
|
||||||
// width: 80%;
|
// width: 80%;
|
||||||
.ant-drawer-content-wrapper {
|
.ant-drawer-content-wrapper {
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btnss" style="margin-top: 20px">
|
<div class="btnss" style="margin-top: 20px">
|
||||||
<div class="btn btn1" style="margin-right: 20px; cursor: pointer">
|
<div class="btn btn1" @click="showopen" style="margin-right: 20px; cursor: pointer">
|
||||||
<div class="img2"></div>
|
<div class="img2"></div>
|
||||||
<div class="wz">催促考试</div>
|
<div class="wz">催促考试</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -80,12 +80,17 @@
|
|||||||
<button class="btn1">取消</button>
|
<button class="btn1">取消</button>
|
||||||
<button class="btn2">确定</button>
|
<button class="btn2">确定</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="noticebox" v-show="open">
|
||||||
|
<div><img src="../../assets/images/taskpage/check.png"/></div>
|
||||||
|
<div class="notext">催促学员成功</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { toRefs, reactive } from "vue";
|
import { toRefs, reactive, onMounted, onUnmounted} from "vue";
|
||||||
export default {
|
export default {
|
||||||
name: "TestManage",
|
name: "TestManage",
|
||||||
props: {
|
props: {
|
||||||
@@ -102,6 +107,7 @@ export default {
|
|||||||
setup(props, ctx) {
|
setup(props, ctx) {
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
name: null,
|
name: null,
|
||||||
|
open: false,
|
||||||
projectNameList: [
|
projectNameList: [
|
||||||
{
|
{
|
||||||
id: 1,
|
id: 1,
|
||||||
@@ -291,11 +297,25 @@ export default {
|
|||||||
const closeDrawer = () => {
|
const closeDrawer = () => {
|
||||||
ctx.emit("update:TMvisible", false);
|
ctx.emit("update:TMvisible", false);
|
||||||
};
|
};
|
||||||
|
const showopen=()=>{
|
||||||
|
state.open = true;
|
||||||
|
};
|
||||||
|
let timer;
|
||||||
|
onMounted(()=> {
|
||||||
|
timer = setInterval(()=>{
|
||||||
|
state.open = false;
|
||||||
|
},3000);
|
||||||
|
});
|
||||||
|
onUnmounted(()=>{
|
||||||
|
clearInterval(timer);
|
||||||
|
});
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
selectProjectName,
|
selectProjectName,
|
||||||
closeDrawer,
|
closeDrawer,
|
||||||
|
showopen,
|
||||||
|
onMounted,
|
||||||
|
onUnmounted,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -324,6 +344,24 @@ export default {
|
|||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
position: relative;
|
||||||
|
.noticebox {
|
||||||
|
width: 240px;
|
||||||
|
height: 64px;
|
||||||
|
background: rgba(255, 255, 255, 1);
|
||||||
|
border-radius: 4px;
|
||||||
|
position: absolute;
|
||||||
|
top: 161px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
.notext {
|
||||||
|
color: rgba(51, 51, 51, 1);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.header {
|
.header {
|
||||||
height: 73px;
|
height: 73px;
|
||||||
border-bottom: 1px solid #e8e8e8;
|
border-bottom: 1px solid #e8e8e8;
|
||||||
|
|||||||
@@ -54,7 +54,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="btnss" style="margin-top: 20px">
|
<div class="btnss" style="margin-top: 20px">
|
||||||
<div class="btn btn1" style="margin-right: 20px">
|
<div class="btn btn1" @click="showopen" style="margin-right: 20px">
|
||||||
<div class="img1"></div>
|
<div class="img1"></div>
|
||||||
<div class="wz">催促学习</div>
|
<div class="wz">催促学习</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -91,12 +91,16 @@
|
|||||||
<button class="btn1">取消</button>
|
<button class="btn1">取消</button>
|
||||||
<button class="btn2">确定</button>
|
<button class="btn2">确定</button>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="noticebox" v-show="open">
|
||||||
|
<div><img src="../../assets/images/taskpage/check.png"/></div>
|
||||||
|
<div class="notext">催促学员成功</div>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</a-drawer>
|
</a-drawer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import { toRefs, reactive } from "vue";
|
import { toRefs, reactive, onMounted, onUnmounted} from "vue";
|
||||||
export default {
|
export default {
|
||||||
name: "TimeManage",
|
name: "TimeManage",
|
||||||
props: {
|
props: {
|
||||||
@@ -113,6 +117,7 @@ export default {
|
|||||||
setup(props, ctx) {
|
setup(props, ctx) {
|
||||||
const state = reactive({
|
const state = reactive({
|
||||||
name: null,
|
name: null,
|
||||||
|
open: false,
|
||||||
pageSize: 10,
|
pageSize: 10,
|
||||||
currentPage: 1,
|
currentPage: 1,
|
||||||
tableDataTotal: 100,
|
tableDataTotal: 100,
|
||||||
@@ -269,10 +274,25 @@ export default {
|
|||||||
const closeDrawer = () => {
|
const closeDrawer = () => {
|
||||||
ctx.emit("update:Tvisible", false);
|
ctx.emit("update:Tvisible", false);
|
||||||
};
|
};
|
||||||
|
const showopen=()=>{
|
||||||
|
state.open = true;
|
||||||
|
};
|
||||||
|
let timer;
|
||||||
|
onMounted(()=> {
|
||||||
|
timer = setInterval(()=>{
|
||||||
|
state.open = false;
|
||||||
|
},3000);
|
||||||
|
});
|
||||||
|
onUnmounted(()=>{
|
||||||
|
clearInterval(timer);
|
||||||
|
});
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
selectProjectName,
|
selectProjectName,
|
||||||
closeDrawer,
|
closeDrawer,
|
||||||
|
showopen,
|
||||||
|
onMounted,
|
||||||
|
onUnmounted,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -297,6 +317,23 @@ export default {
|
|||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
.noticebox {
|
||||||
|
width: 240px;
|
||||||
|
height: 64px;
|
||||||
|
background: rgba(255, 255, 255, 1);
|
||||||
|
border-radius: 4px;
|
||||||
|
position: absolute;
|
||||||
|
top: 161px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
.notext {
|
||||||
|
color: rgba(51, 51, 51, 1);
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 500;
|
||||||
|
margin-left: 20px;
|
||||||
|
}
|
||||||
|
}
|
||||||
.header {
|
.header {
|
||||||
height: 73px;
|
height: 73px;
|
||||||
border-bottom: 1px solid #e8e8e8;
|
border-bottom: 1px solid #e8e8e8;
|
||||||
|
|||||||
@@ -628,7 +628,7 @@ export default defineComponent({
|
|||||||
},
|
},
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<style lang="scss" scoped>
|
<style lang="scss">
|
||||||
.clearfix:before,
|
.clearfix:before,
|
||||||
.clearfix:after {
|
.clearfix:after {
|
||||||
content: " ";
|
content: " ";
|
||||||
@@ -858,7 +858,7 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
.taskSyllabus {
|
.taskSyllabus {
|
||||||
// flex: 1;
|
// flex: 1;
|
||||||
overflow-x: scroll;
|
overflow-x: auto;
|
||||||
|
|
||||||
.ant-collapse {
|
.ant-collapse {
|
||||||
border: 0px;
|
border: 0px;
|
||||||
@@ -876,7 +876,7 @@ export default defineComponent({
|
|||||||
.ant-collapse-header {
|
.ant-collapse-header {
|
||||||
display: flex;
|
display: flex;
|
||||||
height: 49px;
|
height: 49px;
|
||||||
background-color: #fcf0ef;
|
background-color: #eff4fc;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
margin-top: 20px;
|
margin-top: 20px;
|
||||||
margin-left: 38px;
|
margin-left: 38px;
|
||||||
@@ -894,98 +894,98 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.course {
|
.course {
|
||||||
//width: 100%;
|
//width: 100%;
|
||||||
flex-shrink: 0;
|
flex-shrink: 0;
|
||||||
margin-right: 24px;
|
margin-right: 24px;
|
||||||
|
|
||||||
display: flex;
|
|
||||||
flex-wrap: wrap;
|
|
||||||
align-items: center;
|
|
||||||
padding: 25px 0px;
|
|
||||||
margin-left: 22px;
|
|
||||||
|
|
||||||
//margin: 0 12px;
|
|
||||||
border: 1px solid #f2f6fc;
|
|
||||||
border-top: 0px;
|
|
||||||
.first {
|
|
||||||
//position: relative;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-grow: 1;
|
flex-wrap: wrap;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
//height: 71px;
|
padding: 25px 0px;
|
||||||
margin-left: 12px;
|
margin-left: 22px;
|
||||||
margin-right: 50px;
|
|
||||||
|
|
||||||
.iconame {
|
//margin: 0 12px;
|
||||||
//position: absolute;
|
border: 1px solid #f2f6fc;
|
||||||
color: #4f5156;
|
border-top: 0px;
|
||||||
font-size: 16px;
|
.first {
|
||||||
margin-left: 4px;
|
//position: relative;
|
||||||
}
|
display: flex;
|
||||||
.icontext {
|
flex-grow: 1;
|
||||||
//positipn: absolute;
|
align-items: center;
|
||||||
color: #999ba3;
|
//height: 71px;
|
||||||
font-size: 14px;
|
|
||||||
margin-left: 12px;
|
margin-left: 12px;
|
||||||
width: 83px;
|
margin-right: 50px;
|
||||||
|
|
||||||
|
.iconame {
|
||||||
|
//position: absolute;
|
||||||
|
color: #4f5156;
|
||||||
|
font-size: 16px;
|
||||||
|
margin-left: 4px;
|
||||||
|
}
|
||||||
|
.icontext {
|
||||||
|
//positipn: absolute;
|
||||||
|
color: #999ba3;
|
||||||
|
font-size: 14px;
|
||||||
|
margin-left: 12px;
|
||||||
|
width: 83px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
.type {
|
||||||
.type {
|
//height: 71px;
|
||||||
//height: 71px;
|
display: flex;
|
||||||
display: flex;
|
flex-grow: 1;
|
||||||
flex-grow: 1;
|
align-items: center;
|
||||||
align-items: center;
|
margin-right: 50px;
|
||||||
margin-right: 50px;
|
.typename {
|
||||||
.typename {
|
width: 63px;
|
||||||
width: 63px;
|
height: 23px;
|
||||||
height: 23px;
|
color: #5dc988;
|
||||||
color: #5dc988;
|
font-size: 14px;
|
||||||
font-size: 14px;
|
background-color: #f2f6fc;
|
||||||
background-color: #f2f6fc;
|
border-radius: 4px;
|
||||||
border-radius: 4px;
|
text-align: center;
|
||||||
text-align: center;
|
}
|
||||||
|
.typename1 {
|
||||||
|
width: 63px;
|
||||||
|
height: 23px;
|
||||||
|
color: #f0f4fe;
|
||||||
|
font-size: 14px;
|
||||||
|
background-color: #5dc988;
|
||||||
|
border-radius: 4px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
.typename1 {
|
.time {
|
||||||
width: 63px;
|
//height: 71px;
|
||||||
height: 23px;
|
flex-grow: 1;
|
||||||
color: #f0f4fe;
|
margin-right: 50px;
|
||||||
font-size: 14px;
|
.timetext {
|
||||||
background-color: #5dc988;
|
font-size: 14px;
|
||||||
border-radius: 4px;
|
color: #999ba3;
|
||||||
text-align: center;
|
}
|
||||||
}
|
}
|
||||||
}
|
.progress {
|
||||||
.time {
|
width: 168px;
|
||||||
//height: 71px;
|
margin-left: 10px;
|
||||||
flex-grow: 1;
|
margin-right: 50px;
|
||||||
margin-right: 50px;
|
flex-grow: 1;
|
||||||
.timetext {
|
.progresstext {
|
||||||
font-size: 14px;
|
color: #ffc067;
|
||||||
color: #999ba3;
|
font-size: 14px;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
.operations {
|
||||||
.progress {
|
display: flex;
|
||||||
width: 168px;
|
width: 200px;
|
||||||
margin-left: 10px;
|
//flex-grow: 1;
|
||||||
margin-right: 50px;
|
.operation {
|
||||||
flex-grow: 1;
|
color: #4ea6ff;
|
||||||
.progresstext {
|
font-size: 14px;
|
||||||
color: #ffc067;
|
padding: 10px;
|
||||||
font-size: 14px;
|
margin-left: auto;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.operations {
|
|
||||||
display: flex;
|
|
||||||
width: 200px;
|
|
||||||
//flex-grow: 1;
|
|
||||||
.operation {
|
|
||||||
color: #4ea6ff;
|
|
||||||
font-size: 14px;
|
|
||||||
padding: 10px;
|
|
||||||
margin-left: auto;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.taskbox {
|
.taskbox {
|
||||||
width: 412px;
|
width: 412px;
|
||||||
height: 160px;
|
height: 160px;
|
||||||
@@ -1171,4 +1171,4 @@ export default defineComponent({
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -69,21 +69,25 @@
|
|||||||
@expand="expandTable"
|
@expand="expandTable"
|
||||||
:pagination="false"
|
:pagination="false"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
<div class="pa">
|
<div class="pa">
|
||||||
<a-pagination
|
<a-pagination
|
||||||
showSizeChanger="true"
|
showSizeChanger="true"
|
||||||
showQuickJumper="true"
|
showQuickJumper="true"
|
||||||
hideOnSinglePage="true"
|
hideOnSinglePage="true"
|
||||||
:pageSize="pageSize"
|
:pageSize="pageSize"
|
||||||
:current="currentPage"
|
:current="currentPage"
|
||||||
:total="tableDataTotal"
|
:total="tableDataTotal"
|
||||||
class="pagination"
|
class="pagination"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<!-- 表格 -->
|
<!-- 表格 -->
|
||||||
<a-modal v-model:visible="out" :footer="null" :closable="false" style="margin-top: 250px">
|
<a-modal
|
||||||
|
v-model:visible="out"
|
||||||
|
:footer="null"
|
||||||
|
:closable="false"
|
||||||
|
style="margin-top: 250px"
|
||||||
|
>
|
||||||
<div class="out">
|
<div class="out">
|
||||||
<div class="top">
|
<div class="top">
|
||||||
<img class="topimg" src="../../assets/images/courseManage/add1.png" />
|
<img class="topimg" src="../../assets/images/courseManage/add1.png" />
|
||||||
@@ -107,7 +111,8 @@
|
|||||||
<div class="in">
|
<div class="in">
|
||||||
<a-input
|
<a-input
|
||||||
v-model:value="value"
|
v-model:value="value"
|
||||||
show-count :maxlength="15"
|
show-count
|
||||||
|
:maxlength="15"
|
||||||
style="border-radius: 8px"
|
style="border-radius: 8px"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -119,6 +124,53 @@
|
|||||||
</div>
|
</div>
|
||||||
</div></a-modal
|
</div></a-modal
|
||||||
>
|
>
|
||||||
|
<!--操作弹窗 -->
|
||||||
|
<a-modal
|
||||||
|
v-model:visible="delete_hs"
|
||||||
|
:footer="null"
|
||||||
|
:closable="closableQR"
|
||||||
|
wrapClassName="DelModal"
|
||||||
|
style="margin-top: 400px"
|
||||||
|
@cancel="delete_exit"
|
||||||
|
>
|
||||||
|
<div class="delete" :style="{ display: delete_hs ? 'block' : 'none' }">
|
||||||
|
<div class="del_header"></div>
|
||||||
|
<div class="del_main">
|
||||||
|
<div class="header">
|
||||||
|
<div class="del-icon" :style="{ display: del_hs || over_hs ? 'block' : 'none' }"><img src="@/assets/images/coursewareManage/notice.png" alt=""></div>
|
||||||
|
<div class="del-icon" :style="{ display: copy_hs || back_hs || pub_hs ? 'block' : 'none' }"><img src="@/assets/images/coursewareManage/QR.png" alt=""></div>
|
||||||
|
<span>提示</span>
|
||||||
|
<div class="close_exit" @click="delete_exit"></div>
|
||||||
|
</div>
|
||||||
|
<div class="body">
|
||||||
|
<div :style="{ display: del_hs ? 'block' : 'none' }">
|
||||||
|
<span>您确定要删除此调研吗</span>
|
||||||
|
</div>
|
||||||
|
<div :style="{ display: over_hs ? 'block' : 'none' }">
|
||||||
|
<span>您确定要结束此调研吗</span>
|
||||||
|
</div>
|
||||||
|
<div :style="{ display: copy_hs ? 'block' : 'none' }">
|
||||||
|
<span>您确定要复制此调研吗</span>
|
||||||
|
</div>
|
||||||
|
<div :style="{ display: back_hs ? 'block' : 'none' }">
|
||||||
|
<span>您确定要撤回此调研吗</span>
|
||||||
|
</div>
|
||||||
|
<div :style="{ display: pub_hs ? 'block' : 'none' }">
|
||||||
|
<span>您确定要发布此调研吗</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="del_btnbox">
|
||||||
|
<div class="del_btn btn1">
|
||||||
|
<div class="btnText" @click="delete_exit">取消</div>
|
||||||
|
</div>
|
||||||
|
<div class="del_btn btn2">
|
||||||
|
<div class="btnText" @click="delete_exit">确定</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</a-modal>
|
||||||
|
<!--操作弹窗 -->
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script>
|
<script>
|
||||||
@@ -219,6 +271,12 @@ export default {
|
|||||||
valueE: ref(" "),
|
valueE: ref(" "),
|
||||||
valueEE: ref(" "),
|
valueEE: ref(" "),
|
||||||
valuei: ref(" "),
|
valuei: ref(" "),
|
||||||
|
delete_hs: false,
|
||||||
|
del_hs: false,
|
||||||
|
over_hs: false,
|
||||||
|
copy_hs: false,
|
||||||
|
back_hs: false,
|
||||||
|
pub_hs: false,
|
||||||
});
|
});
|
||||||
const tableDataFunc = () => {
|
const tableDataFunc = () => {
|
||||||
const columns = [
|
const columns = [
|
||||||
@@ -286,7 +344,6 @@ export default {
|
|||||||
key: "opacation",
|
key: "opacation",
|
||||||
width: 200,
|
width: 200,
|
||||||
align: "center",
|
align: "center",
|
||||||
|
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
return columns;
|
return columns;
|
||||||
@@ -299,38 +356,74 @@ export default {
|
|||||||
//单层项目
|
//单层项目
|
||||||
value.opacation = (
|
value.opacation = (
|
||||||
<div class="operation">
|
<div class="operation">
|
||||||
|
{value.state === "已发布" ? (
|
||||||
{value.state === "已发布" ? (
|
<div class="fb">
|
||||||
<div class="fb">
|
<router-link to="/managepage" class="jc">
|
||||||
<router-link to="/managepage" class="jc">管理</router-link>
|
管理
|
||||||
<div class="jc">复制</div>
|
</router-link>
|
||||||
<div class="jc">撤回</div>
|
<div class="jc"
|
||||||
<div class="jc">结束</div>
|
onClick={()=>{
|
||||||
</div>
|
state.delete_hs = true;
|
||||||
) : (
|
state.copy_hs = true;
|
||||||
<div></div>
|
}}>复制</div>
|
||||||
)}
|
<div class="jc"
|
||||||
{value.state === "待发布" ? (
|
onClick={()=>{
|
||||||
<div class="fb">
|
state.delete_hs = true;
|
||||||
<router-link to="/researchadd" class="jc">基础信息</router-link>
|
state.back_hs = true;
|
||||||
<router-link to="/managepage" class="jc">管理</router-link>
|
}}>撤回</div>
|
||||||
<div class="jc">复制</div>
|
<div class="jc"
|
||||||
<div class="jc">编辑</div>
|
onClick={()=>{
|
||||||
<div class="jc">删除</div>
|
state.delete_hs = true;
|
||||||
</div>
|
state.over_hs = true;
|
||||||
) : (
|
}}>结束</div>
|
||||||
<div></div>
|
</div>
|
||||||
)}
|
) : (
|
||||||
{value.state === "已结束" ? (
|
<div></div>
|
||||||
<div class="fb">
|
)}
|
||||||
<div class="jc">复制</div>
|
{value.state === "待发布" ? (
|
||||||
<div class="jc">删除</div>
|
<div class="fb">
|
||||||
|
<router-link to="/researchadd" class="jc">
|
||||||
</div>
|
基础信息
|
||||||
) : (
|
</router-link>
|
||||||
<div></div>
|
<router-link to="/managepage" class="jc">
|
||||||
)}
|
管理
|
||||||
|
</router-link>
|
||||||
|
<div class="jc"
|
||||||
|
onClick={()=>{
|
||||||
|
state.delete_hs = true;
|
||||||
|
state.pub_hs = true;
|
||||||
|
}}>发布</div>
|
||||||
|
<div class="jc"
|
||||||
|
onClick={()=>{
|
||||||
|
state.delete_hs = true;
|
||||||
|
state.copy_hs = true;
|
||||||
|
}}>复制</div>
|
||||||
|
<div class="jc">编辑</div>
|
||||||
|
<div class="jc"
|
||||||
|
onClick={()=>{
|
||||||
|
state.delete_hs = true;
|
||||||
|
state.del_hs = true;
|
||||||
|
}}>删除</div>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div></div>
|
||||||
|
)}
|
||||||
|
{value.state === "已结束" ? (
|
||||||
|
<div class="fb">
|
||||||
|
<div class="jc"
|
||||||
|
onClick={()=>{
|
||||||
|
state.delete_hs = true;
|
||||||
|
state.copy_hs = true;
|
||||||
|
}}>复制</div>
|
||||||
|
<div class="jc"
|
||||||
|
onClick={()=>{
|
||||||
|
state.delete_hs = true;
|
||||||
|
state.del_hs = true;
|
||||||
|
}}>删除</div>
|
||||||
|
</div>
|
||||||
|
) : (
|
||||||
|
<div></div>
|
||||||
|
)}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
@@ -357,6 +450,14 @@ export default {
|
|||||||
const chooseImg = (id) => {
|
const chooseImg = (id) => {
|
||||||
console.log(id);
|
console.log(id);
|
||||||
};
|
};
|
||||||
|
const delete_exit = () => {
|
||||||
|
state.delete_hs = false;
|
||||||
|
state.del_hs = false;
|
||||||
|
state.over_hs = false;
|
||||||
|
state.copy_hs = false;
|
||||||
|
state.back_hs = false;
|
||||||
|
state.pub_hs = false;
|
||||||
|
};
|
||||||
return {
|
return {
|
||||||
...toRefs(state),
|
...toRefs(state),
|
||||||
selectProjectName,
|
selectProjectName,
|
||||||
@@ -366,6 +467,7 @@ export default {
|
|||||||
tableDataFunc,
|
tableDataFunc,
|
||||||
chooseImg,
|
chooseImg,
|
||||||
getTableDate,
|
getTableDate,
|
||||||
|
delete_exit,
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
@@ -378,108 +480,108 @@ export default {
|
|||||||
clear: both;
|
clear: both;
|
||||||
}
|
}
|
||||||
.out {
|
.out {
|
||||||
//display: flex;
|
//display: flex;
|
||||||
display: block;
|
display: block;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
top: 120px;
|
top: 120px;
|
||||||
width: 680px;
|
width: 680px;
|
||||||
// height: 525px;
|
// height: 525px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
|
|
||||||
box-shadow: 0 0 10px rgba(118, 136, 166, 0.21);
|
box-shadow: 0 0 10px rgba(118, 136, 166, 0.21);
|
||||||
left: 50%;
|
left: 50%;
|
||||||
top: 20%;
|
top: 20%;
|
||||||
transform: translate(-50%, -50%);
|
transform: translate(-50%, -50%);
|
||||||
.top {
|
.top {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 68px;
|
height: 68px;
|
||||||
|
|
||||||
background: linear-gradient(
|
background: linear-gradient(
|
||||||
rgba(78, 166, 255, 0.2) 0%,
|
rgba(78, 166, 255, 0.2) 0%,
|
||||||
rgba(78, 166, 255, 0) 100%
|
rgba(78, 166, 255, 0) 100%
|
||||||
);
|
);
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.topimg {
|
.topimg {
|
||||||
width: 18px;
|
width: 18px;
|
||||||
height: 18px;
|
height: 18px;
|
||||||
margin-left: 27px;
|
margin-left: 27px;
|
||||||
}
|
|
||||||
.topc {
|
|
||||||
color: #000000;
|
|
||||||
font-size: 16px;
|
|
||||||
margin-left: 8px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.mid {
|
.topc {
|
||||||
width: 100%;
|
color: #000000;
|
||||||
height: 100%;
|
font-size: 16px;
|
||||||
background-color: #fff;
|
margin-left: 8px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.mid {
|
||||||
|
width: 100%;
|
||||||
|
height: 100%;
|
||||||
|
background-color: #fff;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
.d {
|
||||||
|
// margin-top: 8px;
|
||||||
|
// color: #ff4e4e;
|
||||||
|
margin-left: -5px;
|
||||||
|
}
|
||||||
|
.name {
|
||||||
|
width: 78%;
|
||||||
|
// background-color: lightcoral;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
margin-top: 20px;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
.d {
|
height: 40px;
|
||||||
// margin-top: 8px;
|
// border: 1px solid black;
|
||||||
// color: #ff4e4e;
|
|
||||||
margin-left: -5px;
|
|
||||||
}
|
|
||||||
.name {
|
|
||||||
width: 78%;
|
|
||||||
// background-color: lightcoral;
|
|
||||||
display: flex;
|
|
||||||
margin-top: 20px;
|
|
||||||
align-items: center;
|
|
||||||
height: 40px;
|
|
||||||
// border: 1px solid black;
|
|
||||||
|
|
||||||
.inname {
|
.inname {
|
||||||
color: #6f6f6f;
|
color: #6f6f6f;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-left: 7px;
|
margin-left: 7px;
|
||||||
|
}
|
||||||
|
.in {
|
||||||
|
margin-left: 14px;
|
||||||
|
width: 81%;
|
||||||
|
.ant-input {
|
||||||
|
border-radius: 5px;
|
||||||
|
// height: 120%;
|
||||||
|
width: 100%;
|
||||||
|
height: 30px;
|
||||||
}
|
}
|
||||||
.in {
|
.showcount {
|
||||||
margin-left: 14px;
|
|
||||||
width: 81%;
|
|
||||||
.ant-input {
|
|
||||||
border-radius: 5px;
|
|
||||||
// height: 120%;
|
|
||||||
width: 100%;
|
|
||||||
height: 30px;
|
|
||||||
}
|
|
||||||
.showcount {
|
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 10px;
|
right: 10px;
|
||||||
color: #c7cbd2;
|
color: #c7cbd2;
|
||||||
bottom: 5px;
|
bottom: 5px;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
.btn {
|
}
|
||||||
width: 33%;
|
.btn {
|
||||||
margin-top: 30px;
|
width: 33%;
|
||||||
display: flex;
|
margin-top: 30px;
|
||||||
justify-content: space-between;
|
display: flex;
|
||||||
margin-bottom: 30px;
|
justify-content: space-between;
|
||||||
.samtn {
|
margin-bottom: 30px;
|
||||||
width: 100px;
|
.samtn {
|
||||||
height: 40px;
|
width: 100px;
|
||||||
font-size: 14px;
|
height: 40px;
|
||||||
border: 1px solid #409EFF;
|
font-size: 14px;
|
||||||
border-radius: 8px;
|
border: 1px solid #409eff;
|
||||||
cursor: pointer;
|
border-radius: 8px;
|
||||||
}
|
cursor: pointer;
|
||||||
.btn1 {
|
}
|
||||||
background-color: #fff;
|
.btn1 {
|
||||||
color: #4ea6ff;
|
background-color: #fff;
|
||||||
}
|
color: #4ea6ff;
|
||||||
.btn2 {
|
}
|
||||||
margin-left: 10px;
|
.btn2 {
|
||||||
background-color: #409EFF;
|
margin-left: 10px;
|
||||||
color: #fff;
|
background-color: #409eff;
|
||||||
}
|
color: #fff;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
.researchmanage {
|
.researchmanage {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
height: 100%;
|
height: 100%;
|
||||||
@@ -581,12 +683,12 @@ export default {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
.tableBox {
|
.tableBox {
|
||||||
margin: 20px 38px 30px ;
|
margin: 20px 38px 30px;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex: 1;
|
flex: 1;
|
||||||
//position: relative;
|
//position: relative;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
th.h {
|
th.h {
|
||||||
background-color: #eff4fc !important;
|
background-color: #eff4fc !important;
|
||||||
}
|
}
|
||||||
@@ -596,38 +698,142 @@ export default {
|
|||||||
> td {
|
> td {
|
||||||
background: #f6f9fd;
|
background: #f6f9fd;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
.pa {
|
.pa {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
// height: 20px;
|
// height: 20px;
|
||||||
// background-color: red;
|
// background-color: red;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
//position: absolute;
|
//position: absolute;
|
||||||
|
margin-bottom: 20px;
|
||||||
|
.pagination {
|
||||||
margin-bottom: 20px;
|
margin-bottom: 20px;
|
||||||
.pagination {
|
|
||||||
margin-bottom: 20px;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.unout {
|
.unout {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.operation {
|
.operation {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: right;
|
justify-content: right;
|
||||||
.fb {
|
.fb {
|
||||||
display: flex;
|
display: flex;
|
||||||
margin-right: 20px;
|
margin-right: 20px;
|
||||||
.jc {
|
.jc {
|
||||||
color: #4ea6ff;
|
color: #4ea6ff;
|
||||||
font-size: 14px;
|
font-size: 14px;
|
||||||
margin-left: 20px;
|
margin-left: 20px;
|
||||||
|
white-space: nowrap;
|
||||||
|
cursor: pointer;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.DelModal {
|
||||||
|
.ant-modal {
|
||||||
|
.ant-modal-content {
|
||||||
|
width: 424px !important;
|
||||||
|
.ant-modal-body {
|
||||||
|
.delete {
|
||||||
|
z-index: 999;
|
||||||
|
width: 424px;
|
||||||
|
background: #ffffff;
|
||||||
|
box-shadow: 0px 1px 35px 0px rgba(118, 136, 166, 0.21);
|
||||||
|
border-radius: 4px;
|
||||||
|
position: absolute;
|
||||||
|
left: 50%;
|
||||||
|
top: 10%;
|
||||||
|
transform: translate(-50%, -50%);
|
||||||
|
.del_header {
|
||||||
|
position: absolute;
|
||||||
|
width: calc(100%);
|
||||||
|
height: 40px;
|
||||||
|
background: linear-gradient(
|
||||||
|
rgba(78, 166, 255, 0.2) 0%,
|
||||||
|
rgba(78, 166, 255, 0) 100%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
.del_main {
|
||||||
|
width: 100%;
|
||||||
|
position: relative;
|
||||||
|
.header {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
padding-top: 20px;
|
||||||
|
padding-left: 26px;
|
||||||
|
font-size: 16px;
|
||||||
|
.del-icon {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
margin-right: 10px;
|
||||||
|
// background-image: url(@/assets/images/coursewareManage/notice.png);
|
||||||
|
img{
|
||||||
|
background-size: 100% 100%;
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.icon {
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
margin-right: 10px;
|
||||||
|
background-image: url(@/assets/images/coursewareManage/QR.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
.close_exit {
|
||||||
|
position: absolute;
|
||||||
|
right: 42px;
|
||||||
|
cursor: pointer;
|
||||||
|
width: 20px;
|
||||||
|
height: 20px;
|
||||||
|
background-image: url(@/assets/images/coursewareManage/close.png);
|
||||||
|
background-size: 100% 100%;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.body {
|
||||||
|
width: 100%;
|
||||||
|
margin: 34px auto 56px auto;
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
.del_btnbox {
|
||||||
|
display: flex;
|
||||||
|
margin: 30px auto;
|
||||||
|
justify-content: center;
|
||||||
|
.del_btn {
|
||||||
|
width: 100px;
|
||||||
|
height: 40px;
|
||||||
|
background: rgba(64, 158, 255, 0);
|
||||||
|
border-radius: 8px;
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
margin-right: 14px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
cursor: pointer;
|
||||||
|
.btnText {
|
||||||
|
font-size: 14px;
|
||||||
|
font-weight: 400;
|
||||||
|
line-height: 40px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
.btn1 {
|
||||||
|
border: 1px solid rgba(64, 158, 255, 1);
|
||||||
|
color: #4ea6ff;
|
||||||
|
}
|
||||||
|
.btn2 {
|
||||||
|
background-color: #4ea6ff;
|
||||||
|
color: #ffffff;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user