拓恒飞手平台小程序
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

16 lines
986B

  1. <!--package_B/page/changeMessage/index.wxml-->
  2. <view class="change_container">
  3. <form class="form_box" bindsubmit="submitForm">
  4. <view class="form_item {{item.warning?'warning':''}}" wx:for="{{formRules}}" wx:key="index">
  5. <text class="input_lable">{{item.title}}</text>
  6. <view class="image_box" wx:if="{{item.type === 'image'}}" bindtap="uploadImage">
  7. <image style="height: 70rpx;width: 70rpx;border-radius: 50%; background-color: #e0e0e0;flex-shrink: 0;" src="{{form.avatar}}"></image>
  8. </view>
  9. <input wx:else type="{{item.type||'text'}}" placeholder="{{item.placeholder}}" value="{{form[index]}}"
  10. data-name="{{index}}" bindinput="bindValue" name="{{index}}" bindblur="bindValue" />
  11. <text class="tips">{{item.tips}}</text>
  12. </view>
  13. <button size="default" style="width: 540rpx; height: 80rpx;" class="reset_password" formType="submit">确定</button>
  14. </form>
  15. </view>