| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 |
- <template>
- <div class="privatizationDeployment-wrap">
- <div class="content">
- <h1 class="title">私有化部署</h1>
- <div class="desc">
- 欢迎使用billd-live,在使用billd-live时,请遵循billd-live的
- <span
- class="link"
- @click="
- openToTarget(
- 'https://github.com/galaxy-s10/billd-live/blob/master/LICENSE'
- )
- "
- >
- 开源协议
- </span>
- ,注明作者版权。
- </div>
- <div class="list">
- <div class="hr"></div>
- <div class="item">
- <h2>简介</h2>
- <p>目前核心实现:</p>
- <ol>
- <li>服务器自建SRS直播。</li>
- <li>服务器自建WebRTC直播。</li>
- <li>接入第三方腾讯云直播。</li>
- </ol>
- </div>
- <div class="hr"></div>
- <div class="item">
- <h2>远程协助</h2>
- <p>如果在部署期间遇到问题,可以联系作者获取远程协助(付费)。</p>
- </div>
- <div class="hr"></div>
- <div class="item">
- <h2>定制服务</h2>
- <p>
- billd-live作为开源项目,不可能满足所有需求。但提供定制服务(付费),如有需要请联系作者。
- </p>
- </div>
- <div class="hr"></div>
- <div class="item">
- <h2>收费标准</h2>
- <p>1.咨询费用:每小时50元。</p>
- <p>2.开发费用:每小时150-300元,具体视情况而定。</p>
- </div>
- <div class="hr"></div>
- <div class="item">
- <h2>联系方式</h2>
- <p>添加时请备注: 私有化部署+用途</p>
- <p>微信号: shuisheng9905</p>
- <p>qq号: 2274751790</p>
- </div>
- </div>
- </div>
- <div class="aside">
- <div class="title">本页目录</div>
- <div class="item">简介</div>
- <div class="item">远程协助</div>
- <div class="item">定制服务</div>
- <div class="item">收费标准</div>
- <div class="item">联系方式</div>
- </div>
- </div>
- </template>
- <script lang="ts" setup>
- import { openToTarget } from 'billd-utils';
- </script>
- <style lang="scss" scoped>
- .privatizationDeployment-wrap {
- display: flex;
- box-sizing: border-box;
- margin: 0 auto;
- padding-top: 50px;
- width: 960px;
- color: rgb(33, 53, 71);
- .content {
- flex: 1;
- font-size: 16px;
- .title {
- margin: 0;
- margin-bottom: 60px;
- font-weight: 500;
- font-size: 40px;
- }
- .hr {
- margin: 60px 0 20px 0;
- width: 100%;
- height: 1px;
- background-color: #e7e7e7;
- }
- .link {
- color: $theme-color-gold;
- text-decoration: none;
- font-weight: 500;
- cursor: pointer;
- }
- .list {
- h2 {
- font-weight: 600;
- }
- .item {
- font-size: 16px;
- &.sponsors {
- h3 {
- margin-top: 50px;
- text-align: center;
- }
- .list {
- display: flex;
- flex-wrap: wrap;
- justify-content: space-evenly;
- }
- .bg {
- display: flex;
- align-items: center;
- flex-shrink: 0;
- justify-content: center;
- box-sizing: border-box;
- margin-bottom: 5px;
- border-radius: 4px;
- background-color: #f9f9f9;
- cursor: pointer;
- }
- }
- }
- }
- }
- .aside {
- padding-left: 90px;
- width: 150px;
- .title {
- margin-bottom: 8px;
- color: rgb(33, 53, 71);
- font-weight: 700;
- font-size: 12px;
- }
- .item {
- margin-bottom: 8px;
- color: rgba(60, 60, 60, 0.7);
- font-size: 13px;
- cursor: pointer;
- &:hover {
- color: #213547;
- }
- }
- }
- }
- </style>
|