mirror of
https://codeup.aliyun.com/67762337eccfc218f6110e0e/vue/learning-system-portal.git
synced 2025-12-12 20:36:43 +08:00
Merge branch 'stat' of https://codeup.aliyun.com/6265f483e4166464dc2f9c14/boeu/portal into stat
This commit is contained in:
@@ -3,8 +3,11 @@
|
|||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
}
|
}
|
||||||
.qa-solve{
|
.qa-solve{
|
||||||
color:#08A890;
|
color:#387df7;
|
||||||
|
margin-left: -10px;
|
||||||
}
|
}
|
||||||
.qa-unSolve{
|
.qa-unSolve{
|
||||||
color:#333;
|
color:#333;
|
||||||
|
margin-left: -10px;
|
||||||
|
|
||||||
}
|
}
|
||||||
@@ -18,7 +18,7 @@
|
|||||||
<time-show :time="detailData.sysCreateTime"></time-show>
|
<time-show :time="detailData.sysCreateTime"></time-show>
|
||||||
</div>
|
</div>
|
||||||
<div class="qust-title">
|
<div class="qust-title">
|
||||||
<span :class="detailData.isResolve ? 'qa-solve' : 'qa-unSolve'">
|
<span :class="detailData.isResolve ? 'qa-unSolve' : 'qa-solve'">
|
||||||
{{ detailData.isResolve === true ? '【已解决】' : detailData.isResolve === false ? '【待解决】' : '' }}
|
{{ detailData.isResolve === true ? '【已解决】' : detailData.isResolve === false ? '【待解决】' : '' }}
|
||||||
</span>
|
</span>
|
||||||
{{ detailData.title }}
|
{{ detailData.title }}
|
||||||
@@ -831,8 +831,9 @@ export default {
|
|||||||
color: #333333;
|
color: #333333;
|
||||||
}
|
}
|
||||||
.answer-content{
|
.answer-content{
|
||||||
margin-top: 27px;
|
margin-top: 20px;
|
||||||
display: flex;
|
display: flex;
|
||||||
|
margin-bottom: 45px;
|
||||||
input{
|
input{
|
||||||
flex: 1;
|
flex: 1;
|
||||||
height: 81px;
|
height: 81px;
|
||||||
@@ -1018,7 +1019,7 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.answer-boot {
|
.answer-boot {
|
||||||
height: 35px;
|
// height: 35px;
|
||||||
line-height: 35px;
|
line-height: 35px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
@@ -1100,7 +1101,7 @@ export default {
|
|||||||
|
|
||||||
.comment-btns {
|
.comment-btns {
|
||||||
// padding: 5px 10px 10px 0px;
|
// padding: 5px 10px 10px 0px;
|
||||||
height: 35px;
|
// height: 35px;
|
||||||
line-height: 35px;
|
line-height: 35px;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
@@ -1134,9 +1135,9 @@ export default {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.answer-reply-box {
|
.answer-reply-box {
|
||||||
margin-top: 10px;
|
margin-top: 30px;
|
||||||
background-color: #fff;
|
background-color: #fff;
|
||||||
padding: 58px 67px;
|
padding: 30px 40px;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ::v-deep .publishAnswer {
|
// ::v-deep .publishAnswer {
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
<div style="padding-top:30px" class="portal-content">
|
<div style="padding-top:30px" class="portal-content">
|
||||||
|
|
||||||
<div class="xcontent2">
|
<div class="xcontent2">
|
||||||
<div class="xcontent2-main" style="margin-right: 30px;background-color: #fff;padding-top: 50px;">
|
<div class="xcontent2-main" style="margin-right: 30px;background-color: #fff;">
|
||||||
<div>
|
<div>
|
||||||
<div class="left-div">
|
<div class="left-div">
|
||||||
<div class="order-div">
|
<div class="order-div">
|
||||||
@@ -36,8 +36,8 @@
|
|||||||
<div class="qa-info">
|
<div class="qa-info">
|
||||||
<div class="qa-info-title" @click="jumpDetail(qa)">
|
<div class="qa-info-title" @click="jumpDetail(qa)">
|
||||||
<div class="portal-title-tow one-line-ellipsis">
|
<div class="portal-title-tow one-line-ellipsis">
|
||||||
<span v-if="qa.isResolve == false" @click="searchData()">【待解决】</span>
|
<span class="qa-solve" v-if="qa.isResolve == false" @click="searchData()">【待解决】</span>
|
||||||
<span class="qa-basic qa-solve" v-if="qa.isResolve == true" @click="searchData()">【已解决】</span>
|
<span class="qa-basic qa-unSolve" v-if="qa.isResolve == true" @click="searchData()">【已解决】</span>
|
||||||
<span v-html="$keywordActiveShow(qa.title,queryKeyWord)"></span>
|
<span v-html="$keywordActiveShow(qa.title,queryKeyWord)"></span>
|
||||||
</div>
|
</div>
|
||||||
<div class="portal-time">
|
<div class="portal-time">
|
||||||
|
|||||||
Reference in New Issue
Block a user