Commit a2eb745a by 林家欣

修改禅道bug

parent c476f0fd
......@@ -99,7 +99,7 @@ input[type="button"],
input[type="submit"] {
cursor: pointer;
}
::-webkit-scrollbar-track-piece {
/* ::-webkit-scrollbar-track-piece {
background: #fff1d9;
border-radius: 2px;
}
......@@ -114,7 +114,7 @@ input[type="submit"] {
}
::-webkit-scrollbar-thumb:hover {
background-color: #e59f29;
}
} */
select {
appearance: none;
......
......@@ -4,7 +4,7 @@
<div class="container">
<ul class="tmgg-ul">
<li v-for="(tmp, i) in list" :key="i" @click="openMsg(tmp)">
<span>{{ tmp.logoutFlag === '0' ? '注销' : '注册' }}</span>
<span>{{ tmp.logoutFlag === '0' ? '注册' : '注销' }}</span>
<span>{{ tmp.firmName }}</span>
</li>
</ul>
......@@ -52,9 +52,9 @@ export default {
console.log(tmp, 'openMsg');
let type;
if (tmp.logoutFlag === "0") {
type = "zhuxiao";
} else {
type = "zhuce";
} else {
type = "zhuxiao";
}
let routeData = this.$router.resolve({
path: "/Business/Notice/Msg",
......
......@@ -9,7 +9,7 @@
</div>
<div class="row">
<div class="col">
<div @click="handelMore" class="more float-end">
<div @click="handelMore" class="more">
<span>了解更多</span
><img src="../../../assets/image/home/more-arrow.png" alt="" />
</div>
......@@ -46,7 +46,7 @@ export default {
.row {
display: flex;
justify-content: space-between;
padding: 11px 0;
padding: 11.5px 0;
margin: 0;
cursor: pointer;
.list-left {
......@@ -70,12 +70,16 @@ export default {
@include ellipsis;
}
}
}
.list-right {
text-align: right;
color: #999999;
font-size: 16px;
}
&:last-child{
padding-bottom: 0;
}
}
.more {
width: 120px;
......@@ -86,6 +90,7 @@ export default {
background: #cd3c0d;
border-radius: 4px;
position: relative;
float: right;
&:hover {
background: #a82c05;
img {
......
......@@ -106,7 +106,7 @@
</button>
</li>
</ul>
<div class="tab-content marginTop10">
<div class="tab-content marginTop15">
<div
class="tab-pane fade show active"
>
......@@ -1794,6 +1794,10 @@ export default {
padding: 18px 0;
}
.marginTop15{
margin-top: 15px;
}
.marginTop10 {
margin-top: 10px;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment