popup-module.vue 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. <template>
  2. <view class="">
  3. <uni-popup background-color="#fff" ref="popup" type="bottom" border-radius="10px 10px 0 0">
  4. <view class="p-24 box-border-box pop-box">
  5. <view class="r-40 p-20 box-border-box flex-stretch mb-48 box-shadow" :class="colorType === 1?'bgc-F92A3B-E70073':colorType === 2?'':''">
  6. <view class="mr-20 q-box fc-fff size-48" :class="colorType === 1?'bgc-F8516C':colorType === 2?'':''">
  7. $
  8. </view>
  9. <view class="flex-direction flex-start">
  10. <view class="size-24 fc-fff sys-weight-600 mb-10 zw-box" :class="colorType === 1?'bgc-F8516C':colorType === 2?'':''">
  11. 债务
  12. </view>
  13. <view class="fc-fff size-32 text-overflow-ellipsis-one mb-10">
  14. 优先担保贷款#2024-001
  15. </view>
  16. <view class="fc-fff hy-box size-24">
  17. 活跃的
  18. </view>
  19. </view>
  20. </view>
  21. <view class="p-tb30 bt-EDEEF0">
  22. <view class="p-30 box-border-box bgc-EEFAFF r-40 mb-48 box-shadow b-DBEAFE flex-stretch">
  23. <view class="ok-box r-circle bgc-DBEAFE box-border-box mr-20">
  24. <view class="checkmarkempty-box r-circle center justify-center">
  25. <uni-icons type="checkmarkempty" size="12" color="#155DFB"></uni-icons>
  26. </view>
  27. </view>
  28. <view class="flex-direction flex-start">
  29. <view class="center mb-10">
  30. <view class="size-28 mr-18 fc-1B388E">
  31. 尽职调查状态
  32. </view>
  33. <view class="size-24 yz-box fc-008235 sys-weight-600">
  34. 已验证
  35. </view>
  36. </view>
  37. <view class="size-24 fc-1547E6">
  38. 所有要求的文件均已验证并为最新文件
  39. </view>
  40. </view>
  41. </view>
  42. </view>
  43. </view>
  44. </uni-popup>
  45. </view>
  46. </template>
  47. <script>
  48. export default {
  49. components: {},
  50. props: {
  51. colorType: {
  52. default: 1
  53. }
  54. },
  55. data() {
  56. return {}
  57. },
  58. onLoad(data) {},
  59. mounted() {},
  60. methods: {
  61. openPop() {
  62. this.$refs.popup.open()
  63. }
  64. }
  65. }
  66. </script>
  67. <style lang="scss" scoped>
  68. .pop-box{
  69. border-radius: 20rpx 20rpx 0 0 ;
  70. }
  71. .box-shadow{
  72. box-shadow: 5rpx 5rpx 5px 0 rgba(0, 0, 0, 0.2);
  73. }
  74. .q-box{
  75. width: 88rpx;
  76. height: 88rpx;
  77. line-height: 88rpx;
  78. text-align: center;
  79. border-radius: 30rpx;
  80. }
  81. .zw-box{
  82. padding: 4rpx 16rpx;
  83. display: inline-block;
  84. border-radius: 20rpx;
  85. }
  86. .hy-box{
  87. padding: 4rpx 16rpx;
  88. border-radius: 20rpx;
  89. background: #00CA52;
  90. }
  91. .bt-EDEEF0{
  92. border-top: .1rpx solid #EDEEF0;
  93. }
  94. .b-DBEAFE{
  95. border: .1rpx solid #DBEAFE;
  96. }
  97. .yz-box{
  98. background: #DBFCE7;
  99. border-radius: 40rpx;
  100. padding: 4rpx 16rpx;
  101. border: .1rpx solid #B9F8CF;
  102. }
  103. .ok-box{
  104. width: 72rpx;
  105. height: 72rpx;
  106. line-height: 72rpx;
  107. text-align: center;
  108. padding: 16rpx;
  109. }
  110. .checkmarkempty-box{
  111. width: 100%;
  112. height: 100%;
  113. border: 1rpx solid #155DFB;
  114. }
  115. </style>