Kongbi1.vue 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. <template>
  2. <div class="kongbi">
  3. <div class="apply-mask" @click="emits('kongbi1Close')"></div>
  4. <div class="apply-content">
  5. <div class="slide-line"></div>
  6. <div class="apply-text pf600 fs18 fc121212">大户多空比</div>
  7. <div class="apply-desc pf500 fs14 fc333333">
  8. 持仓大户的净持仓多头和空头账户数占比,大户指保
  9. 证金余额排名前20%的用户。一个账户记一次。
  10. </div>
  11. <div class="computed-way1 pf500 fs14 fc333333">
  12. 多仓账户数比例 <br />
  13. =持多仓大户数/总持仓大户数
  14. </div>
  15. <div class="computed-way1 pf500 fs14 fc333333">
  16. 空仓大户数比例 <br />
  17. =持空仓大户数/总持仓大户数
  18. </div>
  19. <div class="computed-way1 pf500 fs14 fc333333">
  20. 多空账户数比值 <br />
  21. =多仓账户数比例/空仓账户数比例
  22. </div>
  23. <div class="sure-btn pf600 fs14 fcFFFFFF" @click="emits('kongbi1Close')">确认</div>
  24. </div>
  25. </div>
  26. </template>
  27. <script setup>
  28. const emits = defineEmits(["kongbi1Close"]);
  29. </script>
  30. <style lang="less" scoped>
  31. .kongbi {
  32. position: fixed;
  33. left: 0;
  34. top: 0;
  35. z-index: 1;
  36. display: flex;
  37. flex-direction: column;
  38. justify-content: flex-end;
  39. width: 100%;
  40. min-height: 100vh;
  41. .apply-mask {
  42. position: fixed;
  43. left: 0;
  44. top: 0;
  45. z-index: -1;
  46. width: 100%;
  47. min-height: 100vh;
  48. background: rgba(0, 0, 0, 0.5);
  49. }
  50. .apply-content {
  51. display: flex;
  52. flex-direction: column;
  53. justify-content: flex-start;
  54. align-items: center;
  55. width: 375px;
  56. height: 390px;
  57. background: #ffffff;
  58. border-radius: 24px 24px 0px 0px;
  59. .slide-line {
  60. margin-top: 12px;
  61. width: 32px;
  62. height: 4px;
  63. border-radius: 2px;
  64. opacity: 0.4;
  65. background: rgba(0, 0, 0, 0.5);
  66. }
  67. .apply-text {
  68. margin-top: 21px;
  69. width: 345px;
  70. height: 24px;
  71. line-height: 24px;
  72. letter-spacing: 0.2px;
  73. }
  74. .apply-desc {
  75. margin-top: 5px;
  76. width: 345px;
  77. line-height: 25px;
  78. letter-spacing: 0.2px;
  79. }
  80. .computed-way1 {
  81. margin-top: 10px;
  82. width: 345px;
  83. line-height: 25px;
  84. letter-spacing: 0.2px;
  85. }
  86. .sure-btn {
  87. margin-top: 21px;
  88. width: 311px;
  89. height: 40px;
  90. line-height: 40px;
  91. text-align: center;
  92. border-radius: 100px;
  93. background: #df384c;
  94. }
  95. }
  96. }
  97. </style>