From d3015e7d15c0a33570e9b123478503fde73dadbf Mon Sep 17 00:00:00 2001 From: xuyiming Date: Sat, 24 Oct 2020 14:32:21 +0800 Subject: [PATCH] =?UTF-8?q?=E9=97=AE=E7=AD=94=E5=88=97=E8=A1=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../technical-support/answer-center/list.vue | 313 +++++++++++++++++- 1 file changed, 305 insertions(+), 8 deletions(-) diff --git a/src/pages/technical-support/answer-center/list.vue b/src/pages/technical-support/answer-center/list.vue index ccf87e3..5c70d86 100644 --- a/src/pages/technical-support/answer-center/list.vue +++ b/src/pages/technical-support/answer-center/list.vue @@ -8,25 +8,251 @@ 问答中心 - - 问答列表 - + 问答列表
- +
+ + + 最热问题 + + + 最新问题 + + + + + + + + + 发帖提问 + + +
+ + +
@@ -35,7 +261,7 @@ export default { padding: 12px 0 11px; } .main_container { - min-height: calc(100vh - 58px - 66px); + min-height: calc(100% - 66px); padding: 0 15px; background-color: #fff; border-radius: 10px; @@ -45,4 +271,75 @@ export default { justify-content: flex-start; align-items: stretch; } +.action_list { + padding: 15px 0; + border-bottom: 1px solid #f4f7fc; + display: flex; + justify-content: space-between; + align-items: center; +} +.action_list .el-input { + width: 380px; +} +.answer_list { + flex-grow: 1; +} +.answer_list > li { + padding: 30px 10px 15px; + border-bottom: 1px solid #f4f7fc; + cursor: pointer; +} +.answer_list > li:hover { + background-color: #fafafa; +} +.answer_title { + font-size: 16px; + line-height: 25px; + color: #242c43; +} +.answer_content { + font-size: 14px; + line-height: 25px; + color: #8890a7; + margin-top: 5px; +} +.answer_info { + font-size: 14px; + line-height: 25px; + color: #58617a; + display: flex; + justify-content: space-between; + align-items: center; + margin-top: 15px; +} +.answer_info > span { + display: flex; + justify-content: flex-start; + align-items: center; +} +.answer_info > span:nth-child(1) > * { + margin-left: 10px; +} +.user_img { + height: 20px; + border-radius: 10px; +} +.user_text { + color: #a9aec0; +} +.answer_info > span:nth-child(2) > span { + padding-left: 25px; + background-repeat: no-repeat; + background-position: left center; + margin-right: 30px; +} +.num_answer { + background-image: url("../../../assets/imgs/jszc_ic_huida.png"); +} +.num_view { + background-image: url("../../../assets/imgs/jszc_ic_liulan.png"); +} +.answer_pagination { + margin: 25px 0 10px; +} -- 2.26.0