1.提取公共方法文件到common.js:
function formatPrice(price) {
return '¥' + price.toFixed(2);
}
export {
formatPrice
}
2.引入common.js,并使用计算computed监听动态值
import { formatPrice } from "@/utils/common"
...
computed:{
getPrice(){
return formatPrice;
}
},
3.页面使用计算属性即可
<view class="old-price">{{getPrice(goods.goods_price)}}</view>