Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

form-textarea.wxml 661B

123456789101112
  1. <textarea wx:if="{{activeMode}}" placeholder="请在此输入您的技能特长" value="{{value}}" bind:blur="blurValue" bind:focus="inputValue" style="width: 660rpx; border: 1rpx solid #19be6b;padding: 20rpx;border-radius: 20rpx;" />
  2. <view-flex wx:else styleCss="{{styleCss}}" justify="space-between" vertical="{{true}}">
  3. <view-flex justify="space-between">
  4. <view class="form-label">{{label}}</view>
  5. </view-flex>
  6. <wux-white-space size="large" />
  7. <view-flex class="form-value">
  8. <textarea style="width: 710rpx;" value="{{inputValue}}" placeholder="请输入{{label}}" bind:blur="blurValue" bind:input="inputValue" />
  9. </view-flex>
  10. </view-flex>