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.

34 lines
893 B

8 years ago
<form bindsubmit="formSubmit" bindreset="formReset">
8 years ago
<view class="section">
<view class="section__title">省</view>
<picker bindchange="bindPickerChange" value="{{indexSheng}}" range="{{arraySheng}}">
<view class="picker">
当前选择:{{arraySheng[indexSheng]}}
</view>
</picker>
8 years ago
</view>
8 years ago
<view class="section">
<view class="section__title">市</view>
<picker bindchange="bindPickerChange" value="{{index}}" range="{{array}}">
<view class="picker">
当前选择:{{array[index]}}
</view>
</picker>
8 years ago
</view>
<view>
</view>
8 years ago
<view class="section">
<view class="section_title">详细地址</view>
<input name="input" placeholder="输入地址信息" />
</view>
<view class="btn-area">
<button formType="submit">Submit</button>
<button formType="reset">Reset</button>
</view>
8 years ago
</form>