|
|
|
@ -1,7 +1,7 @@
|
|
|
|
|
<template>
|
|
|
|
|
<div>
|
|
|
|
|
<el-card class="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"
|
|
|
|
|
size="mini" label-width="100px">
|
|
|
|
|
<!-- <el-row>
|
|
|
|
|
<el-col :span="18">
|
|
|
|
@ -144,6 +144,7 @@
|
|
|
|
|
</el-row> -->
|
|
|
|
|
<el-row style=" display:flex; flex-wrap: wrap; ">
|
|
|
|
|
<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)"
|
|
|
|
|
:label="item.columnDesc+`:`" :key="item.id">
|
|
|
|
|
<el-input
|
|
|
|
@ -232,12 +233,13 @@
|
|
|
|
|
end-placeholder="结束日期"
|
|
|
|
|
></el-date-picker>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
|
<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
|
|
|
|
|
type="primary"
|
|
|
|
|
icon="el-icon-refresh"
|
|
|
|
@ -436,7 +438,7 @@ export default {
|
|
|
|
|
name: "supInoutSearchOrder",
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
showSearch: true,
|
|
|
|
|
showSearch: false,
|
|
|
|
|
list: [],
|
|
|
|
|
busTypeOptions: [],
|
|
|
|
|
filterQuery: {
|
|
|
|
@ -586,7 +588,8 @@ export default {
|
|
|
|
|
let query = {
|
|
|
|
|
code: _this.$store.getters.locInvCode,
|
|
|
|
|
enabled: true,
|
|
|
|
|
detailType: _this.actionType
|
|
|
|
|
detailType: _this.actionType,
|
|
|
|
|
productType: 1
|
|
|
|
|
};
|
|
|
|
|
getOrderDetailBusOptimize(query)
|
|
|
|
|
.then((response) => {
|
|
|
|
|