apply.vue 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. <template>
  2. <view class="text-color-333">
  3. <view class="content p-30 sys-background-fff r-30 size-26 apply">
  4. <view class="">
  5. <view class="row-c">
  6. <view class="dot"></view>
  7. <text class="sys-weight-600 m-l10">基本信息</text>
  8. </view>
  9. <view class="sys-from-background-color r-30 p-20 m-t30 row">
  10. <view class="">
  11. <view class="m-tb16">
  12. <text class="text-color-666">是否涉农</text>
  13. <text class="m-l16">{{applyFor.is_farming===1?'是':'否'}}</text>
  14. </view>
  15. <view class="m-tb16">
  16. <text class="text-color-666">贷款类型</text>
  17. <text class="m-l16">{{applyFor.loan_form_name}}</text>
  18. </view>
  19. <view class="">
  20. <text class="text-color-666">投向行业</text>
  21. <text class="m-l16">{{applyFor.loan_industry_name}}</text>
  22. </view>
  23. </view>
  24. <view class="m-l40">
  25. <view class="m-tb16">
  26. <text class="text-color-666">贷款类别</text>
  27. <text class="m-l16">{{applyFor.loan_type_name}}</text>
  28. </view>
  29. <view class="m-b16">
  30. <text class="text-color-666">支付状态</text>
  31. <text class="m-l16">{{applyFor.pay_status===1?'已缴纳':'未缴纳'}}</text>
  32. </view>
  33. <view class="">
  34. <text class="text-color-666">企业类型</text>
  35. <text class="m-l16">{{applyFor.enterprise_type_name}}</text>
  36. </view>
  37. </view>
  38. </view>
  39. </view>
  40. <!-- 抵押申请 -->
  41. <view class="m-t30 color-4A2600" v-for="(applyItem,applyKey) in applyFor.apply_data">
  42. <view class="row-c">
  43. <view class="dot"></view>
  44. <text class="sys-weight-600 m-l10 text-color-333">抵押申请</text>
  45. </view>
  46. <view class="apply-box p-20 r-20 m-t30">
  47. <view class="">
  48. <text>申请类型:</text>
  49. <text class="sys-weight-600">{{(applyItem.apply_type*1===1?'抵押':'买卖')}}</text>
  50. </view>
  51. <view class="sys-background-fff row-justify-sb center r-20 p-30 p-lr40 m-tb20">
  52. <view class="column-c color-653400">
  53. <text class="sys-weight-600">{{applyItem.transaction}}</text>
  54. <text class="size-24">成交价</text>
  55. </view>
  56. <view class="column-c color-653400">
  57. <text class="sys-weight-600">{{applyItem.pricing}}</text>
  58. <text class="size-24">定金</text>
  59. </view>
  60. <view class="column-c color-653400">
  61. <text class="sys-weight-600">{{applyItem.supervise}}</text>
  62. <text class="size-24">资金监管</text>
  63. </view>
  64. <view class="column-c color-653400">
  65. <text class="sys-weight-600">{{applyItem.reply_type===1?'商业':'组合'}}</text>
  66. <text class="size-24">批复类型</text>
  67. </view>
  68. <view class="column-c color-653400">
  69. <text class="sys-weight-600">{{applyItem.intermediary}}</text>
  70. <text class="size-24">成交中介</text>
  71. </view>
  72. </view>
  73. <view class="m-b10">
  74. <text>绑定资产:</text>
  75. <text class="capsule sys-weight-600">{{applyItem.propertyName}}</text>
  76. </view>
  77. <view class="message-box r-20 p-20 m-t20"
  78. v-for="(repayment,repaymentKey) in applyItem.repayment_data" :key="index">
  79. <view class="">
  80. <text
  81. class="sys-weight-600">{{(applyItem.apply_type*1===1?'还款信息':'监管银行卡信息')+'('+(repaymentKey+1)+')'}}</text>
  82. <text class="m-l20" v-if="applyItem.apply_type*1===1">还款金额 {{repayment.money}}万</text>
  83. </view>
  84. <view class="row-c m-t16">
  85. <image class="wh-60" src="/static/img/task/task-put.png" mode=""></image>
  86. <view class="m-l30">
  87. <text class="size-24 text-color-333">{{repayment.bank_name}}</text>
  88. <view class="size-28 sys-weight-600 m-t10">{{repayment.bank_num}}</view>
  89. </view>
  90. </view>
  91. </view>
  92. <view class="message-box r-20 p-20 m-t20" v-for="(loan,loanKey) in applyItem.loan_data">
  93. <view class="">
  94. <text class="sys-weight-600">{{'放款银行卡信息('+(loanKey+1)+')'}}</text>
  95. <text class="m-l20">批复金额 {{loan.money}}万</text>
  96. </view>
  97. <view class="row-c m-t16">
  98. <image class="wh-60" src="/static/img/task/task-put.png" mode=""></image>
  99. <view class="m-l30">
  100. <text class="size-24 text-color-333">{{loan.bank_name}}</text>
  101. <view class="size-28 sys-weight-600 m-t10">{{loan.bank_num}}</view>
  102. </view>
  103. </view>
  104. </view>
  105. </view>
  106. </view>
  107. </view>
  108. </view>
  109. </template>
  110. <script>
  111. export default {
  112. props: {
  113. applyFor: {
  114. default: {}
  115. },
  116. },
  117. data() {
  118. return {
  119. list: [{
  120. num: '89万',
  121. name: '成交价'
  122. }, {
  123. num: '30万',
  124. name: '定金'
  125. }, {
  126. num: '29万',
  127. name: '资金监管'
  128. }, {
  129. num: '商业',
  130. name: '批复类型'
  131. }]
  132. }
  133. },
  134. }
  135. </script>
  136. <style lang="scss" scoped>
  137. .apply {
  138. padding-top: 90rpx;
  139. background-image: url('https://wealfavor-1257406827.cos.ap-beijing.myqcloud.com/new-xcx/task-details/bg-two.png');
  140. background-repeat: no-repeat;
  141. background-size: 100% auto;
  142. .bg-box {
  143. width: 710rpx;
  144. height: 80rpx;
  145. }
  146. .dot {
  147. width: 12rpx;
  148. height: 12rpx;
  149. border-radius: 50%;
  150. background: #0FB160;
  151. }
  152. }
  153. .apply-box {
  154. background: linear-gradient(163deg, #EDC397 0%, #F3DBBC 100%);
  155. .capsule {
  156. display: inline-block;
  157. background: #FFE6C8;
  158. width: 185rpx;
  159. height: 42rpx;
  160. line-height: 42rpx;
  161. border-radius: 99rpx;
  162. text-align: center;
  163. }
  164. }
  165. .message-box {
  166. background: linear-gradient(180deg, #FFEEE4 0%, #FFFFFF 100%);
  167. }
  168. </style>