[update 高级搜索条款] 补充
This commit is contained in:
@@ -206,7 +206,7 @@
|
||||
</template>
|
||||
<!--条文内容-->
|
||||
<template slot="item_content" slot-scope="{text, record}">
|
||||
<div class="table-text" v-if="text || text === 0" @click="showContent('item_content', text,record)">
|
||||
<div class="table-text" style="cursor: pointer;" v-if="text || text === 0" @click="showContent(text,record)">
|
||||
{{ text && text !== 'null' ? text.replace(/<.*?>/ig, ' ') : '' }}
|
||||
</div>
|
||||
<div class="table-text" v-else>{{ global.emptyLine }}</div>
|
||||
@@ -215,6 +215,8 @@
|
||||
</div>
|
||||
</div>
|
||||
</a-spin>
|
||||
<!-- 条款内容 -->
|
||||
<split-clause-detail ref="splitClauseDetail" />
|
||||
</a-card>
|
||||
</template>
|
||||
|
||||
@@ -245,10 +247,11 @@ import { ACCESS_TOKEN } from '../../../store/mutation-types'
|
||||
import { previewPdf } from '../../../utils/previewPdf'
|
||||
import { kkFilePreview } from '../../../utils/kkFilePreview'
|
||||
import JDatePicker from '@comp/JDatePicker'
|
||||
import SplitClauseDetail from '@views/documentTool/documentSplit/modules/SplitClauseDetail'
|
||||
|
||||
export default {
|
||||
name: 'AdvancedSearch',
|
||||
components: { JDatePicker, JTable },
|
||||
components: { SplitClauseDetail, JDatePicker, JTable },
|
||||
data () {
|
||||
return {
|
||||
FieldType,
|
||||
@@ -556,6 +559,10 @@ export default {
|
||||
this.queryParam.standard_state = this.defaultStandardStatus
|
||||
},
|
||||
methods: {
|
||||
// 显示条款内容弹框
|
||||
showContent (val) {
|
||||
this.$refs.splitClauseDetail.open(val)
|
||||
},
|
||||
/**
|
||||
* 处理英文下树结构下拉的字段替换
|
||||
* @param field - 字段名
|
||||
@@ -1054,8 +1061,8 @@ export default {
|
||||
}
|
||||
|
||||
.left-body {
|
||||
//max-height: 300px;
|
||||
//overflow-y: auto;
|
||||
max-height: 30vh;
|
||||
overflow-y: auto;
|
||||
|
||||
.left-child {
|
||||
cursor: pointer;
|
||||
|
||||
Reference in New Issue
Block a user