mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
/**
|
|
* 拼接商品价格(金额和积分)
|
|
*/
|
|
export function getTotalPrice(price, points) {
|
|
const arr = [];
|
|
if (points) {
|
|
arr.push(points + '积分');
|
|
}
|
|
if (price) {
|
|
arr.push('¥' + (price / 100).toFixed(2));
|
|
}
|
|
return arr.join(' + ');
|
|
}
|