添加回车搜索

yanshishuju
yewj 7 months ago
parent dce1da43cf
commit b30a92b8c2

@ -125,7 +125,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
>
@ -421,10 +421,10 @@ import bindWorkDialog from "@/views/collect/bindWorkDialog";
import prescribeOriginPanel from "./PannelOrderBiz";
import CollectOrderAllotDetail from "./CollectOrderAllotDetail";
import {filterWorkOptimize} from "@/api/basic/workPlace/sysWorkplaceManage";
import { getUserBindWork } from '@/api/basic/collectPoint/userWorkplace'
import { decideOrder, deleteByOrder, orderPage, orderTop } from '@/api/collect/collectOrder'
import {getUserBindWork} from '@/api/basic/collectPoint/userWorkplace'
import {decideOrder, deleteByOrder, orderPage, orderTop} from '@/api/collect/collectOrder'
import {getWorkBindBusTypes, removeBusTypeById} from '@/api/basic/workPlace/sysWorkplaceDocuments'
import { isBlank } from '@/utils/strUtil'
import {isBlank} from '@/utils/strUtil'
export default {
name: "prescribePanel",
@ -524,7 +524,7 @@ export default {
getBusType: [],
},
showType: 1,
routerParam:this.$route.query.routerParam
routerParam: this.$route.query.routerParam
}
},
@ -532,8 +532,8 @@ export default {
addOrder, errOrder, bindWorkDialog, prescribeOriginPanel, CollectOrderAllotDetail
},
methods: {
changePlace(_this,query) {
_this.getWorkBindBusTypes(_this,query)
changePlace(_this, query) {
_this.getWorkBindBusTypes(_this, query)
},
getWorkBindBusTypes(_this, query) {
_this.busQuery.workplaceCode = query
@ -592,12 +592,12 @@ export default {
// return _this.$message.error("")
// } 2
let query = {
workPlaceCode : row.workPlaceCode,
workPlaceCode: row.workPlaceCode,
billNo: row.billNo,
tagStatus: 2
}
decideOrder(query).then(res => {
if (res.code == 20000){
if (res.code == 20000) {
//
if (row != null && row.invAlert == 2) {
_this.$confirm("该订单目前工位存量不足,是否继续处理?", "提示", {
@ -611,19 +611,17 @@ export default {
})
.catch(() => {
});
}else {
} else {
let url = window.location.origin + `/UDI_WMS_NEW#/tagCodeBlank?workplaceId=` + row.workPlaceCode + "&billNo=" + row.billNo + "&busType=" + row.busType
window.open(url, '_blank');
}
}else {
} else {
return _this.$message.error(res.message)
}
})
.catch()
},
//
orderTop(_this, row) {
@ -700,9 +698,12 @@ export default {
this.bindWorkPlaceVisible = false;
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
debugger
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -84,28 +84,28 @@
</template>
</el-row>
</el-form>
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- &lt;!&ndash; 关键字搜索 按需配置 &ndash;&gt;-->
<!-- <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">-->
<!-- &lt;!&ndash; 关键字搜索 按需配置 &ndash;&gt;-->
<!-- <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);
}
,

@ -84,7 +84,7 @@
</el-row>
</el-form>
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- &lt;!&ndash; 关键字搜索 按需配置 &ndash;&gt;-->
<!-- <el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini"-->
<!-- label-width="100px">-->
@ -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
>
@ -907,16 +907,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -82,7 +82,7 @@
</template>
</el-row>
</el-form>
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- &lt;!&ndash; 关键字搜索 按需配置 &ndash;&gt;-->
<!-- <el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini"-->
<!-- label-width="100px">-->
@ -113,7 +113,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
>
@ -409,16 +409,18 @@ export default {
this.actDateRange = [];
// this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
getList() {
getSplitCode(this.filterQuery).then(res => {

@ -139,7 +139,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
>
@ -860,9 +860,11 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -83,7 +83,7 @@
</template>
</el-row>
</el-form>
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- <div class="left-search" v-if="!showSearch">-->
<!-- &lt;!&ndash; 关键字搜索 按需配置 &ndash;&gt;-->
<!-- <el-form v-if="queryList && queryList.length > 0" :model="filterQuery" class="query-form" size="mini"-->
<!-- label-width="100px">-->
@ -114,7 +114,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
>
@ -384,9 +384,11 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -113,7 +113,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
>
@ -939,16 +939,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -119,7 +119,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
>
@ -956,16 +956,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -112,7 +112,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
>
@ -430,7 +430,13 @@ export default {
});
},
onReset() {
this.filterQuery = {};
this.filterQuery = {
busType: null,
billNo: null,
tagStatusList: [-1, 2],
page: 1,
limit: 10,
};
this.actDateRange = [];
this.getList();
},
@ -450,9 +456,11 @@ export default {
this.bindWorkPlaceVisible = false;
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
},
getList() {

@ -120,7 +120,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
>
@ -426,13 +426,22 @@ export default {
});
},
onReset() {
this.filterQuery = {}
this.filterQuery = {
busType: null,
tagStatus: 3,
billNo: null,
workPlaceCode: null,
page: 1,
limit: 10
}
this.actDateRange = []
this.getList()
},
onSubmit() {
this.filterQuery.page = 1
this.getList()
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1
_this.getList()
},
getList() {

@ -119,7 +119,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
>
@ -439,13 +439,22 @@ export default {
});
},
onReset() {
this.filterQuery = {}
this.filterQuery = {
busType: null,
tagStatus: null,
billNo: null,
workPlaceCode: null,
page: 1,
limit: 10
}
this.actDateRange = []
this.getList()
},
onSubmit() {
this.filterQuery.page = 1
this.getList()
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1
_this.getList()
},
getList() {

@ -113,7 +113,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
>
@ -913,16 +913,18 @@ export default {
this.actDateRange = [];
this.getList();
},
onSubmit() {
if (this.actDateRange !== null) {
this.filterQuery.startTime = this.actDateRange[0];
this.filterQuery.endTime = this.actDateRange[1];
onSubmit(_this) {
if (_this == null)
_this = this
if (_this.actDateRange !== null) {
_this.filterQuery.startTime = _this.actDateRange[0];
_this.filterQuery.endTime = _this.actDateRange[1];
} else {
this.filterQuery.startTime = null;
this.filterQuery.endTime = null;
_this.filterQuery.startTime = null;
_this.filterQuery.endTime = null;
}
this.filterQuery.page = 1;
this.getList();
_this.filterQuery.page = 1;
_this.getList();
},
hideSearch() {
this.showSearch = !this.showSearch;

@ -112,7 +112,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
>
@ -615,11 +615,13 @@ export default {
closeDialog() {
this.getList();
},
onSubmit() {
this.filterQuery.page = 1;
this.getList();
this.getDraftList();
this.getOtherList();
onSubmit(_this) {
if (_this == null)
_this = this
_this.filterQuery.page = 1;
_this.getList();
_this.getDraftList();
_this.getOtherList();
},

Loading…
Cancel
Save