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.
|
- <!--pages/login/login.wxml-->
- <view class="login_box">
- <image class="logo_img" src="../../assets/img/logo.png"></image>
- <view class="login_main">
- <text class="location_label">您的位置:</text>
- <view class="select_container">
- <select data="{{provinceOptions}}" data-type="province" rangeKey="name" current="{{provinceCurrent}}" bind:updateChange="updateAreaChange"></select>
- <select disabled="{{!params.provinceCode}}" data="{{cityOptions}}" data-type="city" rangeKey="name" current="{{cityCurrent}}" bind:updateChange="updateAreaChange"></select>
- <select disabled="{{!params.cityCode}}" data="{{districtOptions}}" data-type="district" rangeKey="name" current="{{districtCurrent}}" bind:updateChange="updateAreaChange"></select>
- </view>
- </view>
- <view class="footer">
- <view class="enter_btn" bindtap="goHome">进入小程序</view>
- </view>
- </view>
|