detail.wxml 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <!--pages/return-fee/pages/return-fee/detail.wxml-->
  2. <view class="container">
  3. <view class="header">
  4. <view class="cell">
  5. <text>入职企业:</text>
  6. <text>{{onboardingCompany}}</text>
  7. </view>
  8. <view class="cell">
  9. <text>入职日期:</text>
  10. <text>{{onboardingDate}}</text>
  11. </view>
  12. <view class="cell">
  13. <text>返费金额:</text>
  14. <text>{{agencyFee}}</text>
  15. </view>
  16. </view>
  17. <view class="button">
  18. <view class="" bindtap="question">我有疑问</view>
  19. <view class="" bindtap="showComfire">确认无误</view>
  20. </view>
  21. </view>
  22. <i-modal showCancel='{{false}}' visible='{{visible}}' okColor='#327AE1' bind:ok='phone' okText='好的'>
  23. <view class="content">如果您对入职奖励有疑问,请联系:400-692-0099</view>
  24. </i-modal>
  25. <i-modal visible='{{comfire}}' bind:click='comfire' actions='{{action}}'>
  26. <view class="content">您将确认入职奖励正确无误,预计在您确认3个工作日内我们会将奖励发放至您的银行账户中。</view>
  27. </i-modal>
  28. <view class="cover" wx:if='{{showIntegral}}'>
  29. <view class="cover-content">
  30. <image src="../../images/return-fee.png" class="fee-img"></image>
  31. <view class="fee-content">
  32. <view class="fee-content-body">
  33. <view class="">恭喜!小白给你送了{{integral}}积分!</view>
  34. <view>快去积分商城兑换好礼和活动吧!</view>
  35. </view>
  36. <view class="fee-button" bindtap="toIntegral">
  37. 现在就去
  38. </view>
  39. </view>
  40. </view>
  41. </view>