Commit ee95cca1 authored by 高滢's avatar 高滢

feat(检验内容): 去掉/n

parent 06249216
......@@ -47,12 +47,12 @@
resize="none"
:autosize="{ minRows: 4, maxRows: 6 }"
type="textarea"
v-model="dialogManger.source.standard.text"
v-model="dialogManger.source.standard.text.replace(/\\n/g, '')"
autocomplete="off"
></el-input>
</el-form-item>
</el-form>
<el-form
class="form"
:model="dialogManger"
......@@ -94,7 +94,7 @@
resize="none"
:autosize="{ minRows: 4, maxRows: 6 }"
type="textarea"
v-model="item.description"
v-model="item.description.replace(/\\n/g, '')"
autocomplete="off"
></el-input>
</el-form-item>
......@@ -107,7 +107,7 @@
</div>
</el-dialog>
</template>
<script>
export default {
name: '',
......@@ -127,8 +127,8 @@
source: {
standard: {
name: '',
standardNo:'',
chapter: '',
standardNo:'',
chapter: '',
type:'',
text:'',
},
......@@ -164,7 +164,7 @@
.form .textarea {
width: 100%;
}
::v-deep .el-dialog__body {
height: 70vh;
overflow: auto;
......@@ -176,4 +176,3 @@
color: black;
}
</style>
\ No newline at end of file
......@@ -74,7 +74,7 @@
>
</el-input>
</el-form-item>
<div v-for="(item, index) in dialogManger.source.judge.reviewDetailsList" style="border-bottom: #87CEFA 2px solid;padding-top:20px ;">
<el-form-item :label="'检查细则'+(index+1)" :label-width="formLabelWidth" >
<el-input
......@@ -128,8 +128,8 @@ export default {
source: {
standard: {
name: '',
standardNo:'',
chapter: '',
standardNo:'',
chapter: '',
type:'',
text:'',
},
......
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