add.wxml 515 B

123456789101112131415161718192021222324
  1. <view class="head">
  2. <view class="title">
  3. 评估项
  4. </view>
  5. <text>{{taskname}}</text>
  6. </view>
  7. <view class="label">
  8. 评估内容
  9. </view>
  10. <view class="label">
  11. 评估说明
  12. </view>
  13. <view class="text">
  14. <textarea value="{{content.actionnotes}}" placeholder="评估说明" bindinput='onInput' />
  15. </view>
  16. <view style="height: 130rpx;" />
  17. <view class="footer">
  18. <view />
  19. <van-button custom-class='but' disabled='{{result.length==0}}' bind:click="submit">确定</van-button>
  20. </view>