- 添加 Vant WeApp 组件库的多个组件和工具文件 - 新增的组件包括 calendar、circle、collapse、dialog 等- 添加了常用的工具函数和样式文件 - 在 app.js 中集成了 Vant WeApp 组件库
21 lines
594 B
Plaintext
21 lines
594 B
Plaintext
<wxs src="./index.wxs" module="computed" />
|
|
|
|
<van-picker
|
|
class="van-area__picker"
|
|
active-class="active-class"
|
|
toolbar-class="toolbar-class"
|
|
column-class="column-class"
|
|
show-toolbar="{{ showToolbar }}"
|
|
value-key="name"
|
|
title="{{ title }}"
|
|
loading="{{ loading }}"
|
|
columns="{{ computed.displayColumns(columns, columnsNum) }}"
|
|
item-height="{{ itemHeight }}"
|
|
visible-item-count="{{ visibleItemCount }}"
|
|
cancel-button-text="{{ cancelButtonText }}"
|
|
confirm-button-text="{{ confirmButtonText }}"
|
|
bind:change="onChange"
|
|
bind:confirm="onConfirm"
|
|
bind:cancel="onCancel"
|
|
/>
|