You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
318 B
14 lines
318 B
3 months ago
|
<van-popup show="{{ show }}" round position="bottom">
|
||
|
<van-cascader
|
||
|
wx:if="{{ show }}"
|
||
|
value="{{ value }}"
|
||
|
title="请选择所在地区"
|
||
|
fieldNames="{{fieldNames}}"
|
||
|
options="{{ options }}"
|
||
|
bind:close="onClose"
|
||
|
bind:finish="onFinish"
|
||
|
/>
|
||
|
</van-popup>
|
||
|
|
||
|
<slot bind:tap="handleShow"></slot>
|