Skip to content

mms-price 价格展示

简述

价格展示组件,支持符号、小数缩小。

注意

注意: 请以 uni_modules/mms-unix 与本文为准;各端差异以 uni-app 与各平台官方文档为准。涉及隐私能力(相册、定位、剪贴板、手机号等)需在 manifest 与后台完成配置。

平台差异说明

App(vue)App(nvue)H5小程序

基本使用

uvue
<template>
	<view>
		<mms-price :price="199.00"></mms-price>
	</view>
</template>

Props

参数说明类型默认值
price价格数值number | string0.00
symbol货币符号string¥
small是否小数部分缩小booleantrue
color文字颜色string#303133

示例

基础用法

uvue
<mms-price price="199.00"></mms-price>

不缩小小数

uvue
<mms-price price="99.00" :small="false"></mms-price>

Released under the MIT License.