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