|
|
@@ -68,16 +68,16 @@
|
|
|
<el-tag v-for="(item, index) in salesStatusOptions" v-if="afterSales.salesStatus==item.dictValue" >{{item.dictLabel}}</el-tag>
|
|
|
</span>
|
|
|
</el-descriptions-item>
|
|
|
- <el-descriptions-item label="溯源码" >
|
|
|
- <span v-if="afterSales!=null">
|
|
|
- {{afterSales.verifyCode}}
|
|
|
- </span>
|
|
|
- </el-descriptions-item>
|
|
|
- <el-descriptions-item label="产品批号" >
|
|
|
- <span v-if="afterSales!=null">
|
|
|
- {{afterSales.batchNumber}}
|
|
|
- </span>
|
|
|
- </el-descriptions-item>
|
|
|
+<!-- <el-descriptions-item label="溯源码" >-->
|
|
|
+<!-- <span v-if="afterSales!=null">-->
|
|
|
+<!-- {{afterSales.verifyCode}}-->
|
|
|
+<!-- </span>-->
|
|
|
+<!-- </el-descriptions-item>-->
|
|
|
+<!-- <el-descriptions-item label="产品批号" >-->
|
|
|
+<!-- <span v-if="afterSales!=null">-->
|
|
|
+<!-- {{afterSales.batchNumber}}-->
|
|
|
+<!-- </span>-->
|
|
|
+<!-- </el-descriptions-item>-->
|
|
|
</el-descriptions>
|
|
|
<div style="margin: 20px 0px">
|
|
|
<span class="font-small">收货信息</span>
|
|
|
@@ -133,14 +133,24 @@
|
|
|
<p>{{JSON.parse(scope.row.jsonInfo).barCode}}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="商品组合编码" width="300" align="center">
|
|
|
+<!-- <el-table-column label="商品组合编码" width="300" align="center">-->
|
|
|
+<!-- <template slot-scope="scope">-->
|
|
|
+<!-- <p>{{JSON.parse(scope.row.jsonInfo).groupBarCode}}</p>-->
|
|
|
+<!-- </template>-->
|
|
|
+<!-- </el-table-column>-->
|
|
|
+ <el-table-column label="商品名称" width="300" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <p>{{JSON.parse(scope.row.jsonInfo).groupBarCode}}</p>
|
|
|
+ <p>{{JSON.parse(scope.row.jsonInfo).productName}}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="商品名称" width="300" align="center">
|
|
|
+ <el-table-column label="溯源码" width="300" align="center">
|
|
|
<template slot-scope="scope">
|
|
|
- <p>{{JSON.parse(scope.row.jsonInfo).productName}}</p>
|
|
|
+ <p>{{scope.row.verifyCode}}</p>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="批次号" width="300" align="center">
|
|
|
+ <template slot-scope="scope">
|
|
|
+ <p>{{scope.row.batchNumber}}</p>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="单价" width="240" align="center">
|