如何从数学方程式计算价格并在其他值更改时更改价格?

时间:2019-09-25 14:50:22

标签: laravel vue.js

我正在尝试从FOB,FI和保证金这3个值计算产品价格,等式如下(FOB / FI)/保证金=价格。现在,我只是从数据库中调用价格,但是当任何一个值更改时,我都需要动态更改价格。每个产品都有3个国家/地区,我需要能够在同一产品中为每个国家/地区做到这一点。

这是我从数据库中获取它的方式,不确定如何进行数学运算并在此处进行设置。

<el-table
    v-if="model && model.prices"
    :data="model.prices"
    v-loading="loadingPrices || loadingResource"
    class="no-borders">
        <el-table-column>
            <template slot-scope="scope">
                {{ scope.row.country.name }}
            </template>
        </el-table-column>
        <el-table-column
            width="200"
            label="Precio">
            <template slot-scope="scope">
                <el-input v-model="scope.row.price"
                    class="w-100"
                    controls-position="right"
                    :min="0">
                    <template slot="prepend">{{scope.row.country.currency_symbol}} 
                    </template>
                </el-input>
            </template>
        </el-table-column>
</el-table>

0 个答案:

没有答案