counter-info.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221
  1. <template>
  2. <view class="counter-info" v-if="show">
  3. <view class="info-box" v-if="type == 3">
  4. <view class="">
  5. <view class="box-title">
  6. 贷款总计
  7. </view>
  8. <view class="box-list u-flex u-row-between u-flex-wrap">
  9. <text class="text" style="width: 55%;">首月月供:¥{{detail.general_info.first_monthly_payment.toFixed(2)}}元</text>
  10. <text class="text u-flex-1">贷款年限:{{detail.general_info.age_limit}}年</text>
  11. <text class="text" style="width: 55%;">贷款总额:¥{{detail.general_info.calculate_amount_all.toFixed(2)}}元</text>
  12. <text class="text u-flex-1">累计利息:¥{{detail.general_info.interest_total.toFixed(2)}}元</text>
  13. <text class="text" style="width: 55%;">累计还款总额:¥{{detail.general_info.repayment_amount_all.toFixed(2)}}元</text>
  14. </view>
  15. </view>
  16. <view class="">
  17. <view class="box-title">
  18. 公积金贷款
  19. </view>
  20. <view class="box-list u-flex u-row-between u-flex-wrap">
  21. <text class="text" style="width: 55%;">首月月供:¥{{detail.accumulation_info.first_monthly_payment.toFixed(2)}}元</text>
  22. <text class="text u-flex-1">贷款年限:{{detail.general_info.age_limit}}年</text>
  23. <text class="text" style="width: 55%;">贷款总额:¥{{detail.accumulation_info.calculate_amount_all.toFixed(2)}}元</text>
  24. <text class="text u-flex-1">累计利息:¥{{detail.accumulation_info.interest_total.toFixed(2)}}元</text>
  25. <text class="text" style="width: 55%;">累计还款总额:¥{{detail.accumulation_info.repayment_amount_all.toFixed(2)}}元</text>
  26. </view>
  27. </view>
  28. <view class="">
  29. <view class="box-title">
  30. 商业贷款
  31. </view>
  32. <view class="box-list u-flex u-row-between u-flex-wrap">
  33. <text class="text" style="width: 55%;">首月月供:¥{{detail.business_info.first_monthly_payment.toFixed(2)}}元</text>
  34. <text class="text u-flex-1">贷款年限:{{detail.general_info.age_limit}}年</text>
  35. <text class="text" style="width: 55%;">贷款总额:¥{{detail.business_info.calculate_amount_all.toFixed(2)}}元</text>
  36. <text class="text u-flex-1">累计利息:¥{{detail.business_info.interest_total.toFixed(2)}}元</text>
  37. <text class="text" style="width: 55%;">累计还款总额:¥{{detail.business_info.repayment_amount_all.toFixed(2)}}元</text>
  38. </view>
  39. </view>
  40. <view class="box-btn" @click="toback">
  41. 重新计算
  42. </view>
  43. </view>
  44. <view class="info-box" v-else>
  45. <view class="box-title">
  46. 贷款总计
  47. </view>
  48. <view class="box-list u-flex u-row-between u-flex-wrap">
  49. <text class="text" style="width: 55%;">首月月供:¥{{Number(detail.first_monthly_payment).toFixed(2)}}元</text>
  50. <text class="text u-flex-1">贷款年限:{{detail.age_limit}}年</text>
  51. <text class="text" style="width: 55%;">贷款总额:¥{{detail.calculate_amount.toFixed(2)}}元</text>
  52. <text class="text u-flex-1">累计利息:¥{{detail.interest_total.toFixed(2)}}元</text>
  53. <text class="text" style="width: 55%;">累计还款总额:¥{{detail.repayment_amount_all.toFixed(2)}}元</text>
  54. </view>
  55. <view class="box-btn" @click="toback">
  56. 重新计算
  57. </view>
  58. </view>
  59. <view class="info-list">
  60. <view class="list-header u-flex u-row-between">
  61. <text>期数</text>
  62. <text>月供(元)</text>
  63. <text>本金(元)</text>
  64. <text>利息(元)</text>
  65. </view>
  66. <view class="list-item u-flex u-row-between" v-for="(item,index) in detail.repayment_info" :key="index">
  67. <text>第{{item.periods}}期</text>
  68. <text>{{item.monthly_payment}}</text>
  69. <text>{{item.principal}}</text>
  70. <text>{{item.interest}}</text>
  71. </view>
  72. </view>
  73. </view>
  74. </template>
  75. <script>
  76. export default {
  77. data() {
  78. return {
  79. params: {},
  80. type: 1,
  81. detail: {
  82. general_info:{},
  83. accumulation_info:{},
  84. business_info:{},
  85. repayment_info:[]
  86. },
  87. show:false
  88. }
  89. },
  90. onLoad(option) {
  91. this.params = JSON.parse(decodeURIComponent(option.params))
  92. this.type = option.type
  93. this.getdata()
  94. },
  95. methods: {
  96. toback() {
  97. uni.navigateBack()
  98. },
  99. getdata() {
  100. uni.showLoading({
  101. mask:true,
  102. title:"请稍后"
  103. })
  104. if (this.type == 1 || this.type == 2) {
  105. this.$u.post('/api/Calculator/not_group_loans', this.params).then(res => {
  106. if (res.code == 1) {
  107. this.detail = res.data
  108. } else {
  109. this.$u.toast(res.msg)
  110. }
  111. this.show = true
  112. })
  113. } else {
  114. this.$u.post('/api/Calculator/group_loans', this.params).then(res => {
  115. if (res.code == 1) {
  116. this.detail = res.data
  117. } else {
  118. this.$u.toast(res.msg)
  119. }
  120. this.show = true
  121. })
  122. }
  123. }
  124. }
  125. }
  126. </script>
  127. <style lang="scss">
  128. .counter-info {
  129. position: relative;
  130. z-index: 1;
  131. padding: 1rpx 0;
  132. background: linear-gradient(180deg, #1E7DFF 0%, #F6F6F6 284rpx, #F6F6F6 100%);
  133. min-height: 100vh;
  134. .info-list {
  135. width: 722rpx;
  136. // height: 650rpx;
  137. background: #FFFFFF;
  138. border-radius: 10rpx;
  139. margin: 20rpx auto;
  140. padding: 20rpx 10rpx 1rpx 10rpx;
  141. .list-item {
  142. margin-bottom: 20rpx;
  143. text {
  144. flex: 1;
  145. text-align: center;
  146. line-height: 66rpx;
  147. font-size: 24rpx;
  148. font-family: PingFangSC-Regular, PingFang SC;
  149. font-weight: 400;
  150. color: #333333;
  151. }
  152. }
  153. .list-header {
  154. height: 66rpx;
  155. background: #C6DDFD;
  156. border-radius: 10rpx;
  157. margin-bottom: 20rpx;
  158. text {
  159. flex: 1;
  160. text-align: center;
  161. line-height: 66rpx;
  162. font-size: 24rpx;
  163. font-family: PingFangSC-Regular, PingFang SC;
  164. font-weight: 400;
  165. color: #333333;
  166. }
  167. }
  168. }
  169. .info-box {
  170. width: 702rpx;
  171. // height: 390rpx;
  172. background: #FFFFFF;
  173. border-radius: 10rpx;
  174. margin: 108rpx auto 20rpx auto;
  175. padding: 0 24rpx 1rpx 24rpx;
  176. .box-btn {
  177. width: 100%;
  178. line-height: 80rpx;
  179. background: linear-gradient(143deg, #8DBDFF 0%, #1F7EFF 100%);
  180. border-radius: 40rpx;
  181. text-align: center;
  182. font-size: 24rpx;
  183. font-family: PingFangSC-Regular, PingFang SC;
  184. font-weight: 400;
  185. color: #FFFFFF;
  186. margin: 40rpx auto;
  187. }
  188. .box-list {
  189. .text {
  190. margin-bottom: 20rpx;
  191. font-size: 24rpx;
  192. font-family: PingFangSC-Regular, PingFang SC;
  193. font-weight: 400;
  194. color: #333333;
  195. }
  196. }
  197. .box-title {
  198. padding: 24rpx 0;
  199. font-size: 28rpx;
  200. font-family: PingFangSC-Medium, PingFang SC;
  201. font-weight: 500;
  202. color: #333333;
  203. }
  204. }
  205. }
  206. </style>