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.

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>