|
|
|
@ -38,7 +38,7 @@
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button-group>
|
|
|
|
|
<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-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
@ -112,6 +112,7 @@
|
|
|
|
|
@current-change="handleErpPageChange"
|
|
|
|
|
layout="prev, pager, next"
|
|
|
|
|
:total="pageTotal"
|
|
|
|
|
:current-page="listQuery.page"
|
|
|
|
|
></el-pagination>
|
|
|
|
|
</div>
|
|
|
|
|
</el-card>
|
|
|
|
@ -241,7 +242,6 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
handleChange(val) {
|
|
|
|
|
console.log(val);
|
|
|
|
|
this.currentRow = val;
|
|
|
|
|
},
|
|
|
|
|
handleDetailClick(row) {
|
|
|
|
@ -258,12 +258,15 @@ export default {
|
|
|
|
|
this.getList();
|
|
|
|
|
event.target.select();
|
|
|
|
|
},
|
|
|
|
|
search() {
|
|
|
|
|
this.listQuery.page = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
this.listQuery.customerId = store.getters.customerId;
|
|
|
|
|
stockOrderDetailFilterProduct(this.listQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
console.log(response)
|
|
|
|
|
this.loading = false;
|
|
|
|
|
if (response.code === 20000) {
|
|
|
|
|
this.dataList = response.data.list || [];
|
|
|
|
@ -292,7 +295,6 @@ export default {
|
|
|
|
|
let ids = [];
|
|
|
|
|
|
|
|
|
|
selection.forEach((obj, index) => {
|
|
|
|
|
console.log("obj:===" + obj + "==" + obj.relIdFk)
|
|
|
|
|
let data = {
|
|
|
|
|
relId: obj.rlId,
|
|
|
|
|
}
|
|
|
|
|