|
|
@ -38,7 +38,7 @@
|
|
|
|
<el-form-item>
|
|
|
|
<el-form-item>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button-group>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="el-icon-refresh" @click="onReset"></el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="getList">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="search">查询</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="combine">确定</el-button>
|
|
|
|
<el-button type="primary" icon="search" @click="combine">确定</el-button>
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
</el-form-item>
|
|
|
|
</el-form-item>
|
|
|
@ -137,6 +137,7 @@ import {
|
|
|
|
} from "../../api/inout/stockOrder";
|
|
|
|
} from "../../api/inout/stockOrder";
|
|
|
|
import store from "../../store";
|
|
|
|
import store from "../../store";
|
|
|
|
import udiRlDetailDialog from "./../basic/UdiRlDetailDialog";
|
|
|
|
import udiRlDetailDialog from "./../basic/UdiRlDetailDialog";
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
export default {
|
|
|
|
name: "closeDialog",
|
|
|
|
name: "closeDialog",
|
|
|
|
props: {
|
|
|
|
props: {
|
|
|
@ -258,6 +259,10 @@ export default {
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
event.target.select();
|
|
|
|
event.target.select();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
search() {
|
|
|
|
|
|
|
|
this.listQuery.page = 1;
|
|
|
|
|
|
|
|
this.getList();
|
|
|
|
|
|
|
|
},
|
|
|
|
getList() {
|
|
|
|
getList() {
|
|
|
|
this.loading = true;
|
|
|
|
this.loading = true;
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|