|
|
@@ -206,7 +206,7 @@
|
|
|
/>
|
|
|
<div class="Whisper1">点击图标打开悄悄话,(隐藏内容,只能开启一次)</div>
|
|
|
</el-dialog>
|
|
|
- <el-dialog :visible.sync="show3" title="提示">
|
|
|
+ <el-dialog :visible.sync="show3">
|
|
|
<div class="title2">
|
|
|
<img class="img" :src="init2.icon[1]" alt="" />
|
|
|
<div class="title3">{{ init2.name }}</div>
|
|
|
@@ -217,7 +217,7 @@
|
|
|
说明:<span>{{ init2.description }}</span>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
- <el-dialog :visible.sync="show4" title="提示">
|
|
|
+ <el-dialog :visible.sync="show4">
|
|
|
<div class="title2" v-if="list2">
|
|
|
<!-- <img class="img" :src="list2.icon[1]" alt="" /> -->
|
|
|
<div class="title3">{{ list2.name }}</div>
|
|
|
@@ -298,7 +298,6 @@ export default {
|
|
|
methods: {
|
|
|
Whisper() {
|
|
|
if (!this.init2.opened) {
|
|
|
- console.log(111);
|
|
|
this.show2 = true;
|
|
|
}
|
|
|
},
|
|
|
@@ -486,18 +485,25 @@ export default {
|
|
|
}
|
|
|
</style>
|
|
|
<style lang="less" scoped>
|
|
|
+/deep/ .el-dialog__body {
|
|
|
+ padding: 0 16px 12px !important;
|
|
|
+}
|
|
|
/deep/ .el-dialog {
|
|
|
width: 340px;
|
|
|
background: #ffffff;
|
|
|
+ border-radius: 10px;
|
|
|
+
|
|
|
.title2 {
|
|
|
display: flex;
|
|
|
align-items: center;
|
|
|
- padding-top: 12px;
|
|
|
+ // padding-top: 12px;
|
|
|
+ margin-top: -13px;
|
|
|
.img {
|
|
|
width: 18px;
|
|
|
height: 18px;
|
|
|
color: #ff4f50;
|
|
|
margin-right: 3px;
|
|
|
+ margin-bottom: 5px;
|
|
|
}
|
|
|
.title3 {
|
|
|
font-size: 16px;
|
|
|
@@ -513,7 +519,8 @@ export default {
|
|
|
margin: 12px 0 6px;
|
|
|
}
|
|
|
.name1 {
|
|
|
- width: 208px;
|
|
|
+ width: 288px;
|
|
|
+ min-height: 100px;
|
|
|
padding: 10px;
|
|
|
background: #f5f7fa;
|
|
|
border-radius: 4px;
|
|
|
@@ -556,7 +563,7 @@ export default {
|
|
|
width: 80px;
|
|
|
height: 80px;
|
|
|
text-align: center;
|
|
|
- margin: 30px 115px 22px;
|
|
|
+ margin: 30px 112px 22px;
|
|
|
}
|
|
|
.Whisper1 {
|
|
|
font-size: 12px;
|
|
|
@@ -600,7 +607,7 @@ export default {
|
|
|
width: 220px;
|
|
|
}
|
|
|
&.name2 {
|
|
|
- width: 360px;
|
|
|
+ width: 313px;
|
|
|
}
|
|
|
}
|
|
|
span {
|
|
|
@@ -612,6 +619,7 @@ export default {
|
|
|
.img {
|
|
|
width: 24px;
|
|
|
height: 24px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
.init1 {
|
|
|
@@ -640,6 +648,7 @@ export default {
|
|
|
width: 24px;
|
|
|
height: 24px;
|
|
|
padding-left: 16px;
|
|
|
+ cursor: pointer;
|
|
|
}
|
|
|
}
|
|
|
.works {
|