我有一个包含4行的表:项目名称,项目成本价格,项目销售价格和项目百分比。我想做的是从“物料成本价”和“物料销售价”计算百分比,并显示在“物料百分比”列中。 请在下面查看我当前的代码:
<b-col sm="6" lg="9">
<b-card no-body>
<b-tabs pills card>
<b-tab title="Standard" active>
<template>
<b-table class="mb-0" responsive="sm" hover striped :items="filtered.products" :fields="columns"></b-table>
</template>
</b-tab>
<b-tab title="Standard w. %">
<template>
<b-table class="mb-0" responsive="sm" hover striped :items="filtered.products">
<template slot="percentage" slot-scope="data">
{{(products.sellPrice - products.costPrice / product.sellPrice).toFixed(2) + '%'}}
</template>
</b-table>
</template>
</b-tabs>
</b-card>
</b-col>
如果您需要更多我的代码,请告诉我