修改禅道bug

This commit is contained in:
宋伟佳
2022-06-09 10:44:06 +08:00
parent d866424f2e
commit 0dcb82031d
@@ -320,7 +320,7 @@
<template slot="label"> <template slot="label">
<questions-item :question="question"></questions-item> <questions-item :question="question"></questions-item>
</template> </template>
<div> <div class="ansBox">
<template v-for="(item, index) in answerList"> <template v-for="(item, index) in answerList">
<div class="clearfix"> <div class="clearfix">
<div class="answer-box" > <div class="answer-box" >
@@ -380,7 +380,7 @@
<template slot="label"> <template slot="label">
<questions-item :question="question"></questions-item> <questions-item :question="question"></questions-item>
</template> </template>
<div> <div class="ansBox">
<template v-for="(item, index) in answerList"> <template v-for="(item, index) in answerList">
<div class="clearfix"> <div class="clearfix">
<div class="answer-box" > <div class="answer-box" >
@@ -440,7 +440,7 @@
<template slot="label"> <template slot="label">
<questions-item :question="question"></questions-item> <questions-item :question="question"></questions-item>
</template> </template>
<div> <div class="ansBox">
<template v-for="(item, index) in answerList"> <template v-for="(item, index) in answerList">
<div class="clearfix"> <div class="clearfix">
<div class="answer-box" > <div class="answer-box" >
@@ -500,7 +500,7 @@
<template slot="label"> <template slot="label">
<questions-item :question="question"></questions-item> <questions-item :question="question"></questions-item>
</template> </template>
<div> <div class="ansBox">
<template v-for="(item, index) in answerList"> <template v-for="(item, index) in answerList">
<div class="clearfix"> <div class="clearfix">
<div class="answer-box" > <div class="answer-box" >
@@ -1373,6 +1373,7 @@ export default {
this.handleSelectForm.standCode = this.handleSelectForm.lawNumber this.handleSelectForm.standCode = this.handleSelectForm.lawNumber
}, },
addList() { addList() {
this.handleSelectForm.lawNumber = ''
this.handleSelectForm.dataSource = this.standType this.handleSelectForm.dataSource = this.standType
this.handleSelectForm.standType = this.standType this.handleSelectForm.standType = this.standType
this.searchLawBtn() this.searchLawBtn()
@@ -1587,6 +1588,7 @@ export default {
}, },
//提问按钮 //提问按钮
queBtn(){ queBtn(){
this.fileList = []
this.questionForm = { this.questionForm = {
pubQue : '',//公共问题 pubQue : '',//公共问题
classification: 'INLAND', //标准类型 classification: 'INLAND', //标准类型
@@ -1843,6 +1845,10 @@ export default {
text-align: left; text-align: left;
height: auto; height: auto;
} }
.ansBox{
height: calc(~ '100% - 190px');
overflow: auto;
}
.answer-box{ .answer-box{
height: auto; height: auto;
width: auto; width: auto;