|
|
|
@ -84,28 +84,28 @@
|
|
|
|
|
</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="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>
|
|
|
|
@ -115,7 +115,7 @@
|
|
|
|
|
@click="onReset"
|
|
|
|
|
>重置
|
|
|
|
|
</el-button>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit"
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" @click="onSubmit(this)"
|
|
|
|
|
>查询
|
|
|
|
|
</el-button
|
|
|
|
|
>
|
|
|
|
@ -397,7 +397,7 @@ import {
|
|
|
|
|
deleteByOrder,
|
|
|
|
|
importOrder,
|
|
|
|
|
downloadOrder,
|
|
|
|
|
errorHandle,errorHandleSubmit,deleteOriginOrder
|
|
|
|
|
errorHandle, errorHandleSubmit, deleteOriginOrder
|
|
|
|
|
} from "@/api/collect/collectOrder";
|
|
|
|
|
import {
|
|
|
|
|
orderPage,
|
|
|
|
@ -469,7 +469,7 @@ export default {
|
|
|
|
|
showSearch: false,
|
|
|
|
|
filterQuery: {
|
|
|
|
|
// tagStatus: this.tagStatus, //
|
|
|
|
|
tagStatusList: [0,1,2], //
|
|
|
|
|
tagStatusList: [0, 1, 2], //
|
|
|
|
|
billNo: null,
|
|
|
|
|
busType: null,
|
|
|
|
|
workPlaceCode: null,
|
|
|
|
@ -559,7 +559,7 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
onReset() {
|
|
|
|
|
this.filterQuery = {
|
|
|
|
|
tagStatusList: [0,1,2],
|
|
|
|
|
tagStatusList: [0, 1, 2],
|
|
|
|
|
billNo: null,
|
|
|
|
|
busType: null,
|
|
|
|
|
workPlaceCode: null,
|
|
|
|
@ -636,10 +636,12 @@ export default {
|
|
|
|
|
this.getErrorList(this);
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
onSubmit() {
|
|
|
|
|
this.filterQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
this.getErrorList(this);
|
|
|
|
|
onSubmit(_this) {
|
|
|
|
|
if (_this == null)
|
|
|
|
|
_this = this
|
|
|
|
|
_this.filterQuery.page = 1;
|
|
|
|
|
_this.getList();
|
|
|
|
|
_this.getErrorList(_this);
|
|
|
|
|
}
|
|
|
|
|
,
|
|
|
|
|
|
|
|
|
|