赛思维微信客户端
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.

58 lines
2.8 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
  1. <!--基础信息维护-->
  2. <view class="basicInformation">
  3. <view class="basicInformation-title-wrap" style="{{style}}">
  4. <view class="basicInformation-title" style="top:{{statusBarHeight}}px">信息登记</view>
  5. </view>
  6. <view class="content-wrap">
  7. <view class="content-details-wrap">
  8. <!-- 问卷列表 -->
  9. <view class="user-details">
  10. <view class="user-logo">
  11. <open-data type="userAvatarUrl"></open-data>
  12. </view>
  13. <view class="user-name">
  14. <open-data type="userNickName"></open-data>
  15. </view>
  16. </view>
  17. <view class="content-details-content-wrap">
  18. <!-- 地址信息登记 -->
  19. <view class="information-wrap">
  20. <view class="information-title">请选择您的楼栋:</view>
  21. <view class="information-address-wrap">
  22. <view class="information-address-btn-wrap" id="information-address-btn-wrap">
  23. <picker bindchange="bindPickerChange" range="{{addressList}}" range-key="descr">
  24. <button class="information-address-btn" type="default" plain >{{addressSelectItem.descr}}</button>
  25. <image class="information-address-icon" src="{{baseURL}}/public/uploadfile/select-address-down.png" />
  26. </picker>
  27. </view>
  28. </view>
  29. </view>
  30. <view class="information-wrap information-bottom">
  31. <view class="information-title">请选择您的单元:</view>
  32. <view class="information-address-wrap">
  33. <view class="information-address-btn-wrap" id="information-unit-btn-wrap">
  34. <picker bindchange="setunitItem" range="{{unitList}}" range-key="descr">
  35. <button class="information-address-btn" type="default" plain>{{unitItem.descr}}</button>
  36. <image class="information-address-icon" src="{{baseURL}}/public/uploadfile/select-address-down.png" />
  37. </picker>
  38. </view>
  39. </view>
  40. </view>
  41. <view class="information-wrap">
  42. <view class="information-title">
  43. <view class="information-title-text">请输入您的门牌号:</view>
  44. <input class="weui-input information-title-input" bindinput="bindKeyHouseNumber" maxlength="10" value="{{houseNumber}}" />
  45. </view>
  46. </view>
  47. </view>
  48. <view class="content-details-btn-wrap">
  49. <!-- unitItem.descr 其他选项后端需要传空,因此未用unitid -->
  50. <button class="content-details-btn"
  51. disabled="{{(addressSelectItem.buildingid && unitItem.descr ) ? false:true}}" type="primary"
  52. bindtap="getUserProfile"> 开始答题 </button>
  53. </view>
  54. </view>
  55. </view>
  56. <mp-dialog title="友情提示!" mask-closable="{{false}}" show="{{showOneButtonDialog}}" buttons="{{oneButton}}">
  57. <view>请您扫码登录小程序!</view>
  58. </mp-dialog>
  59. </view>