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