Authored by 李奇

fixed:采购价添加

... ... @@ -7,6 +7,7 @@
<p>名称:{{name}}</p>
<p>品牌:{{brand}}</p>
<p>销售价:{{price}}</p>
<p>采购价:{{purchasePrice}}</p>
</div>
</div>
</template>
... ... @@ -33,6 +34,9 @@
price: {
type: [String, Number]
},
purchasePrice: {
type: [String, Number]
},
name: {
type: String
}
... ...
... ... @@ -101,6 +101,7 @@ export default () => {
:name="row.productName"
:brand="row.brandName"
:price="row.salesPrice"
:purchase-price="row.purchasePrice"
:size="row.sizeName"
></cell-prd-info>`;
}
... ...
... ... @@ -93,6 +93,7 @@ export default () => {
:name="row.productName"
:brand="row.brandName"
:price="row.salesPrice"
:purchase-price="row.purchasePrice"
:size="row.sizeName"
></cell-prd-info>`;
}
... ...