|
|
@ -71,7 +71,6 @@
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
@current-change="handleCurrentChange"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
layout="prev, pager, next"
|
|
|
|
:total="total"
|
|
|
|
:total="total"
|
|
|
|
:current-page="filterQuery.page"
|
|
|
|
|
|
|
|
></el-pagination>
|
|
|
|
></el-pagination>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</template>
|
|
|
@ -331,13 +330,13 @@ export default {
|
|
|
|
created() {
|
|
|
|
created() {
|
|
|
|
this.getBusType();
|
|
|
|
this.getBusType();
|
|
|
|
let query = this.$route.query;
|
|
|
|
let query = this.$route.query;
|
|
|
|
|
|
|
|
|
|
|
|
this.filterQuery = Object.assign(this.filterQuery, query);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.filterQuery.invStorageCode = this.invQueryData.locStorageCode;
|
|
|
|
this.filterQuery.invStorageCode = this.invQueryData.locStorageCode;
|
|
|
|
this.filterQuery.invWarehouseCode = this.invQueryData.invWarehouseCode;
|
|
|
|
this.filterQuery.invWarehouseCode = this.invQueryData.invWarehouseCode;
|
|
|
|
|
|
|
|
this.filterQuery = Object.assign(this.filterQuery, query);
|
|
|
|
this.filterQuery.limit = parseInt(this.filterQuery.limit);
|
|
|
|
this.filterQuery.limit = parseInt(this.filterQuery.limit);
|
|
|
|
|
|
|
|
if (!isBlank(this.invQueryData.corpId)) {
|
|
|
|
|
|
|
|
this.filterQuery.supId = this.invQueryData.corpId;
|
|
|
|
|
|
|
|
}
|
|
|
|
// 加载表格数据
|
|
|
|
// 加载表格数据
|
|
|
|
this.getList();
|
|
|
|
this.getList();
|
|
|
|
},
|
|
|
|
},
|
|
|
|