소스 검색

和小程序端保持一致

Guos 2 주 전
부모
커밋
8f69d2e627
1개의 변경된 파일27개의 추가작업 그리고 1개의 파일을 삭제
  1. 27 1
      src/views/hisStore/components/productOrder.vue

+ 27 - 1
src/views/hisStore/components/productOrder.vue

@@ -243,11 +243,37 @@
             <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).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>
         </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">
           <template slot-scope="scope">
             <p>¥{{JSON.parse(scope.row.jsonInfo).price.toFixed(2)}}</p>