|
@@ -141,6 +141,10 @@
|
|
|
</template>
|
|
|
</show-data-table>
|
|
|
</el-collapse-item>
|
|
|
+
|
|
|
+ <el-collapse-item title="商品信息" name="2">
|
|
|
+ <show-goods-data-table :type="order_type" :spucode="spuCode" iscgd :newTime="newTime" />
|
|
|
+ </el-collapse-item>
|
|
|
</el-collapse>
|
|
|
</el-tab-pane>
|
|
|
</el-tabs>
|
|
@@ -183,6 +187,9 @@ export default {
|
|
|
{ value: "1", label: "待收货" },
|
|
|
{ value: "2", label: "已收货" }
|
|
|
],
|
|
|
+ newTime: "",
|
|
|
+ spuCode:"",
|
|
|
+ order_type:"",
|
|
|
xs_order_type_options,
|
|
|
sitem: null, //传给组件
|
|
|
activeNames: ["0", "1", "2", "3", "4", "5", "6"],
|
|
@@ -191,7 +198,6 @@ export default {
|
|
|
{ value: "1", label: "待收货" },
|
|
|
{ value: "2", label: "已收货" }
|
|
|
],
|
|
|
- newTime: "",
|
|
|
loading: false,
|
|
|
is_stock: "",
|
|
|
queryId: "",
|
|
@@ -208,7 +214,9 @@ export default {
|
|
|
});
|
|
|
|
|
|
if (code === 0) {
|
|
|
- const { is_stock, status } = data;
|
|
|
+ const { is_stock, status ,spuCode,order_type } = data;
|
|
|
+ this.spuCode = spuCode
|
|
|
+ this.order_type = order_type
|
|
|
this.is_stock = is_stock;
|
|
|
this.status = status;
|
|
|
this.sitem = data;
|