index.vue 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. <template>
  2. <div class="privatizationDeployment-wrap">
  3. <div class="content">
  4. <h1 class="title">私有化部署</h1>
  5. <div class="desc">
  6. 欢迎使用billd-live,在使用billd-live时,请遵循billd-live的
  7. <span
  8. class="link"
  9. @click="
  10. openToTarget(
  11. 'https://github.com/galaxy-s10/billd-live/blob/master/LICENSE'
  12. )
  13. "
  14. >
  15. 开源协议
  16. </span>
  17. ,注明作者版权。
  18. </div>
  19. <div class="list">
  20. <div class="hr"></div>
  21. <div class="item">
  22. <h2>简介</h2>
  23. <p>目前核心实现:</p>
  24. <ol>
  25. <li>服务器自建SRS直播。</li>
  26. <li>服务器自建WebRTC直播。</li>
  27. <li>接入第三方腾讯云直播。</li>
  28. </ol>
  29. </div>
  30. <div class="hr"></div>
  31. <div class="item">
  32. <h2>远程协助</h2>
  33. <p>如果在部署期间遇到问题,可以联系作者获取远程协助(付费)。</p>
  34. </div>
  35. <div class="hr"></div>
  36. <div class="item">
  37. <h2>定制服务</h2>
  38. <p>
  39. billd-live作为开源项目,不可能满足所有需求。但提供定制服务(付费),如有需要请联系作者。
  40. </p>
  41. </div>
  42. <div class="hr"></div>
  43. <div class="item">
  44. <h2>收费标准</h2>
  45. <p>1.咨询费用:每小时50元。</p>
  46. <p>2.开发费用:每小时150-300元,具体视情况而定。</p>
  47. </div>
  48. <div class="hr"></div>
  49. <div class="item">
  50. <h2>联系方式</h2>
  51. <p>添加时请备注: 私有化部署+用途</p>
  52. <p>微信号: shuisheng9905</p>
  53. <p>qq号: 2274751790</p>
  54. </div>
  55. </div>
  56. </div>
  57. <div class="aside">
  58. <div class="title">本页目录</div>
  59. <div class="item">简介</div>
  60. <div class="item">远程协助</div>
  61. <div class="item">定制服务</div>
  62. <div class="item">收费标准</div>
  63. <div class="item">联系方式</div>
  64. </div>
  65. </div>
  66. </template>
  67. <script lang="ts" setup>
  68. import { openToTarget } from 'billd-utils';
  69. </script>
  70. <style lang="scss" scoped>
  71. .privatizationDeployment-wrap {
  72. display: flex;
  73. box-sizing: border-box;
  74. margin: 0 auto;
  75. padding-top: 50px;
  76. width: 960px;
  77. color: rgb(33, 53, 71);
  78. .content {
  79. flex: 1;
  80. font-size: 16px;
  81. .title {
  82. margin: 0;
  83. margin-bottom: 60px;
  84. font-weight: 500;
  85. font-size: 40px;
  86. }
  87. .hr {
  88. margin: 60px 0 20px 0;
  89. width: 100%;
  90. height: 1px;
  91. background-color: #e7e7e7;
  92. }
  93. .link {
  94. color: $theme-color-gold;
  95. text-decoration: none;
  96. font-weight: 500;
  97. cursor: pointer;
  98. }
  99. .list {
  100. h2 {
  101. font-weight: 600;
  102. }
  103. .item {
  104. font-size: 16px;
  105. &.sponsors {
  106. h3 {
  107. margin-top: 50px;
  108. text-align: center;
  109. }
  110. .list {
  111. display: flex;
  112. flex-wrap: wrap;
  113. justify-content: space-evenly;
  114. }
  115. .bg {
  116. display: flex;
  117. align-items: center;
  118. flex-shrink: 0;
  119. justify-content: center;
  120. box-sizing: border-box;
  121. margin-bottom: 5px;
  122. border-radius: 4px;
  123. background-color: #f9f9f9;
  124. cursor: pointer;
  125. }
  126. }
  127. }
  128. }
  129. }
  130. .aside {
  131. padding-left: 90px;
  132. width: 150px;
  133. .title {
  134. margin-bottom: 8px;
  135. color: rgb(33, 53, 71);
  136. font-weight: 700;
  137. font-size: 12px;
  138. }
  139. .item {
  140. margin-bottom: 8px;
  141. color: rgba(60, 60, 60, 0.7);
  142. font-size: 13px;
  143. cursor: pointer;
  144. &:hover {
  145. color: #213547;
  146. }
  147. }
  148. }
  149. }
  150. </style>