1
0

2 Коммиты 88aa832d39 ... d6f4da9386

Автор SHA1 Сообщение Дата
  Guos d6f4da9386 Merge remote-tracking branch 'origin/yjb_ScrmStores' into yjb_ScrmStores 2 месяцев назад
  Guos 8f69d2e627 和小程序端保持一致 2 месяцев назад
1 измененных файлов с 28 добавлено и 0 удалено
  1. 28 0
      src/views/hisStore/components/productOrder.vue

+ 28 - 0
src/views/hisStore/components/productOrder.vue

@@ -254,10 +254,38 @@
           </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).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>
+        </el-table-column>
+
+        <el-table-column label="产品技术要求编号" width="180" align="center">
           <template slot-scope="scope">
+            {{ JSON.parse(scope.row.jsonInfo).prodTechReqNo || '-' }}
             <p>{{scope.row.batchNumber}}</p>
           </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">
           <template slot-scope="scope">
             <p>¥{{JSON.parse(scope.row.jsonInfo).price.toFixed(2)}}</p>