|
@@ -243,11 +243,37 @@
|
|
|
<p>{{JSON.parse(scope.row.jsonInfo).groupBarCode}}</p>
|
|
<p>{{JSON.parse(scope.row.jsonInfo).groupBarCode}}</p>
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+
|
|
|
<el-table-column label="商品名称" width="300" align="center">
|
|
<el-table-column label="商品名称" width="300" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
- <p>{{JSON.parse(scope.row.jsonInfo).productName}}</p>
|
|
|
|
|
|
|
+ <p>{{JSON.parse(scope.row.jsonInfo).commonName && JSON.parse(scope.row.jsonInfo).commonName !== '-' ? JSON.parse(scope.row.jsonInfo).commonName : JSON.parse(scope.row.jsonInfo).productName}}</p>
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table-column label="生产许可证或备案凭证编号" width="180" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ {{JSON.parse(scope.row.jsonInfo).prodLicenseNo || '-' }}
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table-column label="产品技术要求编号" width="180" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ {{ JSON.parse(scope.row.jsonInfo).prodTechReqNo || '-' }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+
|
|
|
|
|
+ <el-table-column label="产品结构" width="180" align="center">
|
|
|
|
|
+ <template slot-scope="scope">
|
|
|
|
|
+ {{JSON.parse(scope.row.jsonInfo).productStructure || '-' }}
|
|
|
|
|
+ </template>
|
|
|
|
|
+ </el-table-column>
|
|
|
|
|
+
|
|
|
|
|
+ <!-- <el-table-column label="商品名称" width="300" align="center">-->
|
|
|
|
|
+<!-- <template slot-scope="scope">-->
|
|
|
|
|
+<!-- <p>{{JSON.parse(scope.row.jsonInfo).productName}}</p>-->
|
|
|
|
|
+<!-- </template>-->
|
|
|
|
|
+<!-- </el-table-column>-->
|
|
|
|
|
+
|
|
|
<el-table-column label="单价" width="240" align="center">
|
|
<el-table-column label="单价" width="240" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<p>¥{{JSON.parse(scope.row.jsonInfo).price.toFixed(2)}}</p>
|
|
<p>¥{{JSON.parse(scope.row.jsonInfo).price.toFixed(2)}}</p>
|