|
@@ -86,10 +86,7 @@
|
|
|
</template>
|
|
|
<!-- 包装数 -->
|
|
|
<template slot="baozh" slot-scope="text, record">
|
|
|
- <span v-if="record.productEntity.packQty&&record.productEntity.packQtyUnit">
|
|
|
- {{ record.productEntity.packQty||'--' }}{{ record.productEntity.unit }}/{{ record.productEntity.packQtyUnit||'--' }}
|
|
|
- </span>
|
|
|
- <span v-else>--</span>
|
|
|
+ {{ record.productEntity.packQty||'--' }}{{ record.productEntity.packQty ? record.productEntity.unit : '' }}/{{ record.productEntity.packQtyUnit||'--' }}
|
|
|
</template>
|
|
|
<!-- 产品编码 -->
|
|
|
<template slot="productCode" slot-scope="text, record">
|