|
|
@ -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>
|
|
|
@ -125,7 +125,7 @@
|
|
|
|
append-to-body
|
|
|
|
append-to-body
|
|
|
|
v-if="udiRlDetailVisible"
|
|
|
|
v-if="udiRlDetailVisible"
|
|
|
|
>
|
|
|
|
>
|
|
|
|
<udiRlDetailDialog :editQuery="currentRow" ></udiRlDetailDialog>
|
|
|
|
<udiRlDetailDialog :editQuery="currentRow"></udiRlDetailDialog>
|
|
|
|
</el-dialog>
|
|
|
|
</el-dialog>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -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: {
|
|
|
@ -168,7 +169,7 @@ export default {
|
|
|
|
total: 1,
|
|
|
|
total: 1,
|
|
|
|
currentRow: null,
|
|
|
|
currentRow: null,
|
|
|
|
loading: false,
|
|
|
|
loading: false,
|
|
|
|
udiRlDetailVisible:false,
|
|
|
|
udiRlDetailVisible: false,
|
|
|
|
multipleUdiSelection: [],
|
|
|
|
multipleUdiSelection: [],
|
|
|
|
thirdSys: [],
|
|
|
|
thirdSys: [],
|
|
|
|
thirdSysFk: null,
|
|
|
|
thirdSysFk: null,
|
|
|
@ -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;
|
|
|
|