|
@@ -140,13 +140,13 @@
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
<div class="price">
|
|
<div class="price">
|
|
- $ {{ formItem.midway_price_0.toFixed(2) }}
|
|
|
|
|
|
+ $ {{ Number(formItem.midway_price_0).toFixed(2) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="v === 2">
|
|
<div v-if="v === 2">
|
|
<div>空+派</div>
|
|
<div>空+派</div>
|
|
<div class="price">
|
|
<div class="price">
|
|
- $ {{ formItem.midway_price_1.toFixed(2) }}
|
|
|
|
|
|
+ $ {{ Number(formItem.midway_price_1).toFixed(2) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="v === 3">
|
|
<div v-if="v === 3">
|
|
@@ -168,7 +168,7 @@
|
|
></el-option>
|
|
></el-option>
|
|
</el-select>
|
|
</el-select>
|
|
<div class="price">
|
|
<div class="price">
|
|
- $ {{ formItem.midway_price_2.toFixed(2) }}
|
|
|
|
|
|
+ $ {{ Number(formItem.midway_price_2).toFixed(2) }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div v-if="v === 4">
|
|
<div v-if="v === 4">
|
|
@@ -196,7 +196,7 @@
|
|
class="price cursor-pointer"
|
|
class="price cursor-pointer"
|
|
@click="openLCLDialog(4, index)"
|
|
@click="openLCLDialog(4, index)"
|
|
>
|
|
>
|
|
- $ {{ formItem.freight_cost_4.toFixed(2) }}
|
|
|
|
|
|
+ $ {{ Number(formItem.freight_cost_4).toFixed(2) }}
|
|
</div>
|
|
</div>
|
|
<div
|
|
<div
|
|
v-else
|
|
v-else
|