拓恒河湖长制全民护河平台WEB端
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.

15 lines
938B

  1. <!--pages/login/login.wxml-->
  2. <view class="login_box">
  3. <image class="logo_img" src="../../assets/img/logo.png"></image>
  4. <view class="login_main">
  5. <text class="location_label">您的位置:</text>
  6. <view class="select_container">
  7. <select data="{{provinceOptions}}" data-type="province" rangeKey="name" current="{{provinceCurrent}}" bind:updateChange="updateAreaChange"></select>
  8. <select disabled="{{!params.provinceCode}}" data="{{cityOptions}}" data-type="city" rangeKey="name" current="{{cityCurrent}}" bind:updateChange="updateAreaChange"></select>
  9. <select disabled="{{!params.cityCode}}" data="{{districtOptions}}" data-type="district" rangeKey="name" current="{{districtCurrent}}" bind:updateChange="updateAreaChange"></select>
  10. </view>
  11. </view>
  12. <view class="footer">
  13. <view class="enter_btn" bindtap="goHome">进入小程序</view>
  14. </view>
  15. </view>