grant.axml 1.3 KB

1234567891011121314151617181920212223242526
  1. <view>
  2. <form>
  3. <view class="flex-box flex-v-ce form-top" catchTap="openSelect" data-num="1">
  4. <view class="label isBt">奖扣对象</view>
  5. <view class="flex-1 font-flex-word userList">
  6. <block a:for="{{users}}">
  7. <text style="font-size:32rpx">{{item.name}},</text>
  8. </block>
  9. </view>
  10. <image mode="scaleToFill" src="../../../image/right.png" class="rightImg"/>
  11. </view>
  12. <view class="flex-box-end" style="padding:28rpx;padding-bottom:10rpx;">
  13. <text class="blue" style="font-size:28rpx" catchTap="openSelect" data-num="2">关联已有事件</text>
  14. </view>
  15. <view class="itme-li">
  16. <textarea maxlength="100" value="{{item.remark}}" onInput="bindTextAreaBlur" placeholder="请输入奖票原因"></textarea>
  17. </view>
  18. <view class="btn-area" style="margin-top:28rpx;">
  19. <button type="default" loading="{{disabled}}" class="defBtn" disabled="{{disabled}}" catchTap="formSubmit">提交</button>
  20. </view>
  21. </form>
  22. <view class="box" animation="{{animationInfo}}">
  23. <select-section-staff isLeadership="{{true}}" isBoss="{{true}}" selectUser="{{users}}" onClose="onClose" onConfirm="onSelectUser" a:if="{{isShowType=='1'}}"/>
  24. <select-enevt defaultEnevt="{{item.id}}" defaultVal="{{defaultVal}}" onClose="onClose" onConfirm="onSelectEnevt" a:if="{{isShowType=='2'}}"/>
  25. </view>
  26. </view>