整体样式调整1.1

This commit is contained in:
wangxuemei
2024-07-18 16:23:26 +08:00
parent fd3ef9de10
commit 768b395d4e
7 changed files with 570 additions and 104 deletions

View File

@@ -128,16 +128,21 @@
</div>
</div>
<!-- 弹窗组件 -->
<a-modal :visible="teacherdialog" :title="teacherdialogtitle" @ok="closeModal2" :footer="null" :closable="false"
wrapClassName="doublepro" width="774px" height="476px">
<div style="cursor: pointer; margin-right: 32px;float: right; margin-top: -40px;" @click="cancelTeacherDialog">
<a-modal :visible="teacherdialog" @ok="closeModal2" :footer="null" :closable="false" wrapClassName="CreatePath"
>
<div class="out">
<div class="top">
<!-- <img class="topimg" src="../../assets/images/courseManage/add1.png" /> -->
<div class="topc">{{teacherdialogtitle }}</div>
<div @click="cancelTeacherDialog" style="margin-left: 650px; cursor: pointer">
<img
style="width: 22px; height: 22px"
src="../../assets/images/basicinfo/close22.png"
style="width: 20px; height: 20px"
src="../../assets/images/basicinfo/close.png"
/>
</div>
</div>
<div style="padding-bottom: 15px;" >
<div style="border: 1px rgb(177, 177, 177) solid; margin-left: 33px; margin-right: 33px; margin-bottom: 33px;" v-show="tagsshow==1">
<div style=" margin-left: 33px; margin-right: 33px; margin-bottom: 33px;" v-show="tagsshow==1">
<div class="LecturerFeeManagement" >
<div class="filter">
<div class="filterItems">
@@ -371,9 +376,12 @@
<!-- 备注 -->
<div style="width: 834px;height: 1px;"></div>
<span style="display:inline-block ;width:80px ;text-align:center ">备注 :</span>
<a-input type="textarea" v-if="teacherdialog1 == 0" v-model:value="formParam.remark"
style="width:550px; height: 115px; ">
</a-input>
<a-textarea v-if="teacherdialog1 == 0"
v-model:value="formParam.remark"
showCount
:maxlength="200"
style="width: 500px; height: 100px; border-radius: 8px"
placeholder="请输入"/>
<span v-if="teacherdialog1 == 1" class=display1>{{ formParam.remark }}</span>
<div style="width: 100%; height: 1px ;"></div>
<div style="padding: 10px 0" v-if="teacherdialog1 == 1" >
@@ -395,6 +403,7 @@
</div>
</div>
</div>
</div>
</a-modal>
<!-- 删除功能弹窗 -->
<!-- <div>
@@ -1080,7 +1089,7 @@ export default {
},
};
</script>
<style lang="scss">
<style lang="scss" scoped>
//导出按钮icon
.daochu {
width: 16px;
@@ -1528,4 +1537,60 @@ export default {
}
}
}
.CreatePath {
.out {
z-index: 9999;
display: block;
position: absolute;
top: 90px;
width:800px !important;
height:750px;
background-color: #fff;
box-shadow: 0 0 10px rgba(118, 136, 166, 0.21);
left: 50%;
top:300px ;
transform: translate(-50%, -50%);
.top {
width: 100%;
height: 68px;
background: linear-gradient(
rgba(78, 166, 255, 0.2) 0%,
rgba(78, 166, 255, 0) 100%
);
display: flex;
align-items: center;
.topimg {
width: 18px;
height: 18px;
margin-left: 27px;
margin-top: -2px;
}
.topc {
color: #000000;
font-size: 16px;
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;
}
}
}
}
</style>