feat: There is no way the, bug #55665
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
<div>
|
||||
<el-button class="dybtn" size="mini" type="primary" @click.stop="subscribe">订阅</el-button>
|
||||
</div>
|
||||
<div>
|
||||
<div class="divWhiteSpace">
|
||||
<div class="row">
|
||||
<div class="item">
|
||||
<div>提问:
|
||||
@@ -67,15 +67,26 @@ export default {
|
||||
.dybtn{
|
||||
float: right;
|
||||
}
|
||||
.divWhiteSpace{
|
||||
width: 80%;
|
||||
}
|
||||
.row {
|
||||
line-height: 1.8;
|
||||
}
|
||||
.item {
|
||||
display: inline-block;
|
||||
width: 200px;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
text-overflow: ellipsis;
|
||||
word-break: break-word;
|
||||
word-wrap: break-word;
|
||||
white-space: -moz-pre-wrap;
|
||||
white-space: -hp-pre-wrap;
|
||||
white-space: -o-pre-wrap;
|
||||
white-space: -pre-wrap;
|
||||
white-space: pre;
|
||||
white-space: pre-wrap;
|
||||
white-space: pre-line;
|
||||
}
|
||||
}
|
||||
/deep/ .el-button--mini {
|
||||
|
||||
@@ -71,7 +71,7 @@
|
||||
<template slot="label">
|
||||
<questions-item :question="question"></questions-item>
|
||||
</template>
|
||||
<div>
|
||||
<div class="contentClass">
|
||||
<template v-for="(item, index) in answerList">
|
||||
<div class="clearfix">
|
||||
<div class="answer-box" >
|
||||
@@ -128,7 +128,7 @@
|
||||
<template slot="label">
|
||||
<questions-item :question="question"></questions-item>
|
||||
</template>
|
||||
<div>
|
||||
<div class="contentClass">
|
||||
<template v-for="(item, index) in answerList">
|
||||
<div class="clearfix">
|
||||
<div class="answer-box" >
|
||||
@@ -185,7 +185,7 @@
|
||||
<template slot="label">
|
||||
<questions-item :question="question"></questions-item>
|
||||
</template>
|
||||
<div>
|
||||
<div class="contentClass">
|
||||
<template v-for="(item, index) in answerList">
|
||||
<div class="clearfix">
|
||||
<div class="answer-box" >
|
||||
@@ -242,8 +242,8 @@
|
||||
<template slot="label">
|
||||
<questions-item :question="question"></questions-item>
|
||||
</template>
|
||||
<div>
|
||||
<template v-for="(item, index) in answerList">
|
||||
<div class="contentClass">
|
||||
<template v-for="(item, index) in answerList">
|
||||
<div class="clearfix">
|
||||
<div class="answer-box" >
|
||||
<question-item-info :answer="item"></question-item-info>
|
||||
@@ -791,7 +791,7 @@ export default {
|
||||
this.activeName = this.$route.query.standType
|
||||
this.standSearch()
|
||||
}else{
|
||||
switch (this.$route.query.standType){
|
||||
switch (this.standType){
|
||||
case 'INLAND':
|
||||
this.standSearch2()
|
||||
break
|
||||
@@ -1231,6 +1231,10 @@ export default {
|
||||
</script>
|
||||
|
||||
<style lang="less" scoped>
|
||||
/deep/ .contentClass{
|
||||
height: calc(~ '100% - 20px');
|
||||
overflow: auto;
|
||||
}
|
||||
#my-questions{
|
||||
height: 100%;
|
||||
display: flex;
|
||||
@@ -1245,6 +1249,7 @@ export default {
|
||||
margin-right: 0;
|
||||
}
|
||||
/deep/.el-tabs__content {
|
||||
overflow-y: auto;
|
||||
padding: 0;
|
||||
.el-tab-pane {
|
||||
height: 100%;
|
||||
@@ -1295,6 +1300,15 @@ export default {
|
||||
background: #F5F7FA;
|
||||
float: right;
|
||||
margin: 20px 10px 0 80px;
|
||||
word-break: break-word; /* 文本行的任意字内断开 */
|
||||
word-wrap: break-word; /* IE */
|
||||
white-space: -moz-pre-wrap; /* Mozilla */
|
||||
white-space: -hp-pre-wrap; /* HP printers */
|
||||
white-space: -o-pre-wrap; /* Opera 7 */
|
||||
white-space: -pre-wrap; /* Opera 4-6 */
|
||||
white-space: pre; /* CSS2 */
|
||||
white-space: pre-wrap; /* CSS 2.1 */
|
||||
white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
|
||||
}
|
||||
.info-answer{
|
||||
height: 200px;
|
||||
|
||||
Reference in New Issue
Block a user