exhibition.wxml 1.5 KB

12345678910111213141516171819202122232425262728
  1. <!-- pages/guanyuan/exhibition/exhibition.wxml -->
  2. <view>
  3. <view class="container">
  4. <view class="icon-edit">
  5. <image class="img-full" src="https://resource.artouchstone.com/miniapp/artist/images/guanyuan/icon-edit.png"></image>
  6. </view>
  7. <view class="form-box">
  8. <view class="form-list">
  9. <view class="form-label">姓名</view>
  10. <input class="input-text" placeholder="请输入您的姓名" bindchange="changeInput" bindblur="validateForm" id="formData.nickname" value="{{formData.nickname}}" type="text" />
  11. </view>
  12. <view class="form-list">
  13. <view class="form-label">电话</view>
  14. <input class="input-text" disabled bindchange="changeInput" bindblur="validateForm" id="formData.mobile" value="{{formData.phone}}" placeholder="请输入您的电话" type="text" />
  15. <button class="get-phone" bindgetphonenumber="getPhoneNumber" open-type="getPhoneNumber">获取手机号</button>
  16. </view>
  17. <view class="form-list">
  18. <view class="form-label">备注</view>
  19. <textarea class="textarea-text" bindinput="changeInput" bindblur="validateForm" id="formData.content" value="{{formData.content}}" placeholder="请输入"></textarea>
  20. </view>
  21. </view>
  22. </view>
  23. <view class="footer-btn">
  24. <view class="footer-btn-content">
  25. <view bindtap="saveData" class="default-btn {{isValidate?'primary':''}}">提交</view>
  26. </view>
  27. </view>
  28. </view>