Skip to content

Form Preview 表单预览

Form Preview 表单预览打开
9:41
/pages/form-preview/index

介绍

weui-form-preview 用于提交前确认、账单信息、支付结果明细等只读信息展示。

基础用法

vue
<weui-form-preview
  label="付款金额"
  value="¥2400.00"
  :items="[{ label: '商品', value: '微信气泡狗' }]"
  :actions="[{ text: '辅助操作' }, { text: '主操作', type: 'primary' }]"
/>

Props

属性说明类型默认值
label顶部左侧标签string''
value顶部右侧值string''
items明细项数组,支持 { label, value }array[]
actions操作按钮数组,支持 { text, type }array[]

Slots

插槽名说明
header自定义头部
default自定义明细区域
actions自定义操作区域

Events

事件名说明回调参数
action-click点击默认操作按钮action, index

Released under the MIT License.