index.vue 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <template>
  2. <view style="height: 100vh">
  3. <zj-page-container>
  4. <zj-fiex-column>
  5. <view class="page-content" v-if="!loading">
  6. <view class="module-view">
  7. <view class="module-view-single">
  8. <text>被保险人</text>
  9. <text>{{ info.workerName }}</text>
  10. </view>
  11. <view class="module-view-single">
  12. <text>被保险人身份证号</text>
  13. <text>{{ info.workerIdcard }}</text>
  14. </view>
  15. <view class="module-view-single">
  16. <text>保单名称</text>
  17. <text>{{ info.policyName }}</text>
  18. </view>
  19. <view class="module-view-single">
  20. <text>生效日期</text>
  21. <text>{{ info.startTime }}</text>
  22. </view>
  23. <view class="module-view-single">
  24. <text>保障截止时间</text>
  25. <text>{{ info.endTime }}</text>
  26. </view>
  27. </view>
  28. <view class="module-view">
  29. <view class="module-view-single">
  30. <text>付款方式</text>
  31. <text>全额支付</text>
  32. </view>
  33. <view class="module-view-single">
  34. <text>保费</text>
  35. <text style="color: #e95505">{{ info.payAmount }}</text>
  36. </view>
  37. </view>
  38. </view>
  39. <view slot="after" class="bottom-reservation">
  40. <view class="gouxuan">
  41. <label :disabled="loading" class="radio" @click="checked = !checked">
  42. <radio :checked="checked" />
  43. <text>请阅读</text>
  44. </label>
  45. <text v-for="(item, index) in insureAgreeList" :key="index" @click="goDetailsAgreement(item)">{{
  46. item.agreementName
  47. }}</text>
  48. <text v-if="index < insureAgreeList.length - 1">/</text>
  49. </view>
  50. <view class="btns">
  51. <u-button :disabled="loading" type="primary" @click="goback">暂不同意</u-button>
  52. <u-button :disabled="loading || !checked" type="primary" @click="pay">同意并继续</u-button>
  53. </view>
  54. </view>
  55. </zj-fiex-column>
  56. </zj-page-container>
  57. </view>
  58. </template>
  59. <script>
  60. import ZjFiexColumn from '@/components/zj-container/zj-fiex-column.vue'
  61. import ZjPageContainer from '@/components/zj-container/zj-page-container.vue'
  62. import { payMoney } from '@/utils/utils.js'
  63. import { countdown } from '@/utils/tool.js'
  64. import { weixinPay, mini_env } from '@/common/utils/util.js'
  65. export default {
  66. components: {
  67. ZjFiexColumn,
  68. ZjPageContainer
  69. },
  70. data() {
  71. return {
  72. loading: true,
  73. checked: false,
  74. info: {},
  75. insureAgreeList: [],
  76. websitId: '',
  77. id: ''
  78. }
  79. },
  80. onLoad({ websitId, id }) {
  81. this.id = id
  82. this.websitId = websitId
  83. this.$api.post('/worker/buy', { policyId: this.id, websitId }).then(res => {
  84. this.info = res.data
  85. this.$nextTick(() => {
  86. this.loading = false
  87. uni.hideLoading()
  88. })
  89. })
  90. this.$api.post('/worker/detail', { id }).then(res => {
  91. var { agreements, policyName, text } = res.data
  92. this.insureAgreeList = agreements || []
  93. })
  94. },
  95. methods: {
  96. async pay() {
  97. mini_env(bool => {
  98. this.$api.post('/worker/pay', { policyOrderId: this.info.id }).then(res => {
  99. // 小程序环境
  100. if (bool) {
  101. uniWebview.navigateTo({
  102. url: `/pages/pay/pay?${Object.entries({
  103. ...res.data,
  104. payPackage: res.data.payPackage.split('=')[0] || '',
  105. payPackageVal: res.data.payPackage.split('=')[1] || ''
  106. })
  107. .map(item => item.join('='))
  108. .join('&')}`
  109. })
  110. }
  111. // h5环境
  112. else {
  113. weixinPay(res.data, function (res) {
  114. setTimeout(() => {
  115. that.$navToPage(
  116. {
  117. url: '/packageEnter/pages/insurance/myInsurance/index'
  118. },
  119. 'reLaunch'
  120. )
  121. }, 1000)
  122. })
  123. }
  124. })
  125. })
  126. },
  127. goback() {
  128. uni.navigateBack({
  129. delta: 1
  130. })
  131. },
  132. goDetailsAgreement(item) {
  133. if (item.id) {
  134. uni.navigateTo({
  135. url: `/packageEnter/pages/insurance/detailsAgreement/index?id=${item.id}`
  136. })
  137. }
  138. }
  139. }
  140. }
  141. </script>
  142. <style lang="scss" scoped>
  143. @import './style.scss';
  144. </style>