|
|
@ -1,16 +1,18 @@
|
|
|
|
<template>
|
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div>
|
|
|
|
<el-card>
|
|
|
|
<el-card>
|
|
|
|
<el-form v-if="queryList && queryList.length > 0 && showSearch" :model="filterQuery" class="query-form"
|
|
|
|
<el-form v-if="queryList && queryList.length > 0 " :model="filterQuery" class="query-form"
|
|
|
|
|
|
|
|
@submit.native.prevent
|
|
|
|
size="mini" label-width="100px">
|
|
|
|
size="mini" label-width="100px">
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
<template v-for="(item, index) in queryList">
|
|
|
|
<template v-for="(item, index) in queryList">
|
|
|
|
|
|
|
|
<div v-if="showSearch || item.isImport">
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
<el-form-item v-if="item.columnType == 'input' && executeEval(row,item.expression,true)"
|
|
|
|
class="query-form-item"
|
|
|
|
class="query-form-item"
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
<el-input
|
|
|
|
<el-input
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
v-model="filterQuery[item.columnName]"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
:placeholder="item.columnDesc == '模糊查询' ? '单据号/单据日期/收货方/发货方' : item.columnDesc"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
:disabled="executeEval(null,item.disabledFuc,false)"
|
|
|
|
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
|
|
|
|
@keyup.enter.native="executeFuc($event,'5',item.clickFuc)"
|
|
|
|
clearable
|
|
|
|
clearable
|
|
|
@ -77,12 +79,13 @@
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
:placeholder="item.columnDesc"
|
|
|
|
></el-date-picker>
|
|
|
|
></el-date-picker>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
|
</el-row>
|
|
|
|
</el-row>
|
|
|
|
</el-form>
|
|
|
|
</el-form>
|
|
|
|
<div class="top-right-btn">
|
|
|
|
<div class="top-right-btn">
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">显示/隐藏搜索栏</el-button>
|
|
|
|
<el-button icon="el-icon-view" type="primary" @click="hideSearch">高级查询</el-button>
|
|
|
|
<el-button
|
|
|
|
<el-button
|
|
|
|
type="primary"
|
|
|
|
type="primary"
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
icon="el-icon-refresh"
|
|
|
@ -279,7 +282,7 @@ export default {
|
|
|
|
queryList1: [],
|
|
|
|
queryList1: [],
|
|
|
|
tableObj1: [],
|
|
|
|
tableObj1: [],
|
|
|
|
fromList1: [],
|
|
|
|
fromList1: [],
|
|
|
|
showSearch: true,
|
|
|
|
showSearch: false,
|
|
|
|
filterQuery: {
|
|
|
|
filterQuery: {
|
|
|
|
busType: null,
|
|
|
|
busType: null,
|
|
|
|
billNo: null,
|
|
|
|
billNo: null,
|
|
|
@ -341,6 +344,9 @@ export default {
|
|
|
|
|
|
|
|
|
|
|
|
hideSearch() {
|
|
|
|
hideSearch() {
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
|
|
|
console.log('组件已刷新');
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
onReset() {
|
|
|
|
onReset() {
|
|
|
|
this.filterQuery = {
|
|
|
|
this.filterQuery = {
|
|
|
|