新增关键字搜索

yanshishuju
zane 7 months ago
parent d0d9d560a0
commit 3685fec793

@ -80,6 +80,26 @@
</template>
</el-row>
</el-form>
<div class="left-search" v-if="!showSearch">
<!-- 关键字搜索 按需配置 -->
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini" label-width="100px">
<el-row style=" display:flex; flex-wrap: wrap; ">
<template v-for="(item, index) in queryList">
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true) && item.columnName == 'keywords'"
class="query-form-item"
:label="item.columnDesc+`:`" :key="item.id">
<el-input
v-model="filterQuery[item.columnName]"
:placeholder="item.columnDesc"
:disabled="executeEval(null,item.disabledFuc,false)"
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
clearable
></el-input>
</el-form-item>
</template>
</el-row>
</el-form>
</div>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
@ -701,7 +721,7 @@ export default {
total: 0,
radioCheck: false,
currentRow: {},
showSearch: true,
showSearch: false,
titleMap: {
add: "新增单据",
edit: "编辑单据",
@ -716,7 +736,7 @@ export default {
limit: 10,
startTime: null,
endTime: null,
keyWords: null,
keywords: null,
},
fromOptions: [],
checkStatus: {
@ -876,6 +896,7 @@ export default {
limit: 10,
startTime: null,
endTime: null,
keywords:null,
invCode: this.$store.getters.locInvCode,
};
this.actDateRange = [];

@ -80,6 +80,26 @@
</template>
</el-row>
</el-form>
<div class="left-search" v-if="!showSearch">
<!-- 关键字搜索 按需配置 -->
<el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini" label-width="100px">
<el-row style=" display:flex; flex-wrap: wrap; ">
<template v-for="(item, index) in queryList">
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true) && item.columnName == 'keywords'"
class="query-form-item"
:label="item.columnDesc+`:`" :key="item.id">
<el-input
v-model="filterQuery[item.columnName]"
:placeholder="item.columnDesc"
:disabled="executeEval(null,item.disabledFuc,false)"
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
clearable
></el-input>
</el-form-item>
</template>
</el-row>
</el-form>
</div>
<div class="top-right-btn">
<el-button-group>
<el-button icon="el-icon-view" type="primary" @click="hideSearch">/</el-button>
@ -730,7 +750,7 @@ export default {
total: 0,
radioCheck: false,
currentRow: {},
showSearch: true,
showSearch: false,
titleMap: {
add: "新增单据",
edit: "编辑单据",
@ -747,7 +767,7 @@ export default {
limit: 10,
startTime: null,
endTime: null,
keyWords: null,
keywords: null,
invCode: this.$store.getters.locInvCode,
vueType: null,
},
@ -909,6 +929,7 @@ export default {
limit: 10,
startTime: null,
endTime: null,
keywords:null,
invCode: this.$store.getters.locInvCode,
};
this.actDateRange = [];

Loading…
Cancel
Save