|
@@ -59,6 +59,7 @@ export default {
|
|
},
|
|
},
|
|
],
|
|
],
|
|
tableList: [],
|
|
tableList: [],
|
|
|
|
+ total: 0,
|
|
loading: false,
|
|
loading: false,
|
|
titleText: "京东订单出库",
|
|
titleText: "京东订单出库",
|
|
open: false,
|
|
open: false,
|
|
@@ -117,13 +118,14 @@ export default {
|
|
productName: x.productName,
|
|
productName: x.productName,
|
|
notIssuedQuantity: x.notIssuedQuantity,
|
|
notIssuedQuantity: x.notIssuedQuantity,
|
|
specs: x.productSpecs,
|
|
specs: x.productSpecs,
|
|
- changeQuantity: "",
|
|
|
|
|
|
+ changeQuantity: Number(x.notIssuedQuantity),
|
|
productId: x.productId,
|
|
productId: x.productId,
|
|
orderDetailsId: x.id,
|
|
orderDetailsId: x.id,
|
|
}));
|
|
}));
|
|
this.form = {
|
|
this.form = {
|
|
customerName: "京东",
|
|
customerName: "京东",
|
|
orderType: "京东",
|
|
orderType: "京东",
|
|
|
|
+ type: "京东订单",
|
|
orderId: row.id,
|
|
orderId: row.id,
|
|
warehouseId: "",
|
|
warehouseId: "",
|
|
logisticsCode: "",
|
|
logisticsCode: "",
|
|
@@ -179,12 +181,12 @@ export default {
|
|
|
|
|
|
<template>
|
|
<template>
|
|
<div class="box-card">
|
|
<div class="box-card">
|
|
- <el-card class="header">
|
|
|
|
|
|
+ <!-- <el-card class="header">
|
|
<test :form-config="btnForm"></test>
|
|
<test :form-config="btnForm"></test>
|
|
- </el-card>
|
|
|
|
|
|
+ </el-card> -->
|
|
<el-card class="body-main">
|
|
<el-card class="body-main">
|
|
<query
|
|
<query
|
|
- :selectConfig="selectConfig"
|
|
|
|
|
|
+ :selectConfig="[]"
|
|
:req="queryParams"
|
|
:req="queryParams"
|
|
:isShowMore="true"
|
|
:isShowMore="true"
|
|
@handleQuery="handleQuery"
|
|
@handleQuery="handleQuery"
|
|
@@ -195,8 +197,8 @@ export default {
|
|
"
|
|
"
|
|
></query>
|
|
></query>
|
|
<el-table :data="tableList" v-loading="loading">
|
|
<el-table :data="tableList" v-loading="loading">
|
|
- <el-table-column type="selection" width="50" align="left">
|
|
|
|
- </el-table-column>
|
|
|
|
|
|
+ <!-- <el-table-column type="selection" width="50" align="left"> -->
|
|
|
|
+ <!-- </el-table-column> -->
|
|
<el-table-column
|
|
<el-table-column
|
|
label="订单编号"
|
|
label="订单编号"
|
|
align="left"
|
|
align="left"
|
|
@@ -209,7 +211,16 @@ export default {
|
|
prop="cityName"
|
|
prop="cityName"
|
|
width="120"
|
|
width="120"
|
|
/>
|
|
/>
|
|
- <el-table-column label="京东仓库" align="left" width="150" />
|
|
|
|
|
|
+ <el-table-column
|
|
|
|
+ label="出库仓库"
|
|
|
|
+ align="left"
|
|
|
|
+ width="150"
|
|
|
|
+ :formatter="
|
|
|
|
+ (row) => {
|
|
|
|
+ return '京东仓库';
|
|
|
|
+ }
|
|
|
|
+ "
|
|
|
|
+ />
|
|
<el-table-column
|
|
<el-table-column
|
|
label="收货人"
|
|
label="收货人"
|
|
align="left"
|
|
align="left"
|
|
@@ -231,6 +242,13 @@ export default {
|
|
</template>
|
|
</template>
|
|
</el-table-column>
|
|
</el-table-column>
|
|
</el-table>
|
|
</el-table>
|
|
|
|
+ <pagination
|
|
|
|
+ v-show="total > 0"
|
|
|
|
+ :total="total"
|
|
|
|
+ :page.sync="queryParams.pageNum"
|
|
|
|
+ :limit.sync="queryParams.pageSize"
|
|
|
|
+ @pagination="getList"
|
|
|
|
+ />
|
|
</el-card>
|
|
</el-card>
|
|
|
|
|
|
<el-dialog
|
|
<el-dialog
|
|
@@ -255,18 +273,23 @@ export default {
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
<style lang="scss" scoped>
|
|
|
|
+// .box-card {
|
|
|
|
+// height: calc(100vh - 110px);
|
|
|
|
+// overflow-y: auto;
|
|
|
|
+// display: flex;
|
|
|
|
+// flex-direction: column;
|
|
|
|
+// .header {
|
|
|
|
+// // height: 100px;
|
|
|
|
+// margin-bottom: 10px;
|
|
|
|
+// box-sizing: border-box;
|
|
|
|
+// }
|
|
|
|
+// .body-main {
|
|
|
|
+// flex: 1;
|
|
|
|
+// overflow-y: auto;
|
|
|
|
+// }
|
|
|
|
+// }
|
|
.box-card {
|
|
.box-card {
|
|
height: calc(100vh - 110px);
|
|
height: calc(100vh - 110px);
|
|
overflow-y: auto;
|
|
overflow-y: auto;
|
|
- display: flex;
|
|
|
|
- flex-direction: column;
|
|
|
|
- .header {
|
|
|
|
- // height: 100px;
|
|
|
|
- margin-bottom: 10px;
|
|
|
|
- box-sizing: border-box;
|
|
|
|
- }
|
|
|
|
- .body-main {
|
|
|
|
- flex: 1;
|
|
|
|
- }
|
|
|
|
}
|
|
}
|
|
</style>
|
|
</style>
|