您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

form-input.wxml 703B

123456789
  1. <view-flex styleCss="{{styleCss}}" justify="space-between" align="center">
  2. <view class="form-label {{requiredMark ? 'mark-red': ''}}">{{label}}</view>
  3. <view-flex wx:if="{{activeMode}}" class="form-value" justify="flex-end">
  4. <input style="width: 550rpx;text-align:right; padding: 20rpx 0;height: 35rpx;" type="{{type}}" value="{{inputValue}}" placeholder="请输入{{label}}" bind:blur="blurValue" />
  5. </view-flex>
  6. <view-flex wx:else class="form-value" justify="flex-end">
  7. <textarea style="width: 550rpx;text-align: right;padding: 26rpx 0;" value="{{inputValue}}" placeholder="请输入{{label}}" bind:blur="blurValue" bind:input="inputValue" auto-height />
  8. </view-flex>
  9. </view-flex>