home.vue 20.8 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732
<route lang="yaml">
  name: home
  meta:
    title: 数据资产管理
  </route>
<script lang="ts" setup name="home">
import homeDamRegister from './homeDamRegister.vue';
import homeDamDataCircule from './homeDamDataCircule.vue';
import homeDamDemand from './homeDamDemand.vue';
import homeDamAlgorithm from './homeDamAlgorithm.vue';
import homeDamFinance from './homeDamFinance.vue';
import homeDamMarket from './homeDamMarket.vue';

const activeName = ref('register');

const enterCompany = () => {
  window.open('https://www.csbr.cn/');
}

const logon = () => {
  window.open('/login-zgsjzc');
}

const register = () => {
  window.open('/register');
}

const companyDesc = ref('国家级数据交易所经纪服务商,为客户提供数据资产登记服务、数据要素及数据产品交易服务、数据要素金融服务等一揽子经纪服务。\n北京传世博润科技有限公司以软硬件一体化的人工智能物流网为基础,结合大数据技术提供数字化综合解决方案,帮助客户在数字经济时代转型为数字化企业的飞跃。');

const tabsInfo = ref({
  activeName: "index",
  tabs: [
    { label: "首页", name: 'index' },
    { label: "资产登记服务", name: "dam", description: '' },
    { label: "数据供给", name: "dataCircule" },
    { label: "供需信息", name: "demand" },
    { label: "算法竞赛", name: "algorithm" },
    { label: "服务工具", name: "market" },
    { label: "融资服务", name: "service" },
  ]
});

const homeDamFinanceRef = ref();

const homeDamDataCirculeRef = ref();

const homeDamDemandRef = ref();

const homeDamAlgorithmRef = ref();

const homeDamMarketRef = ref();

const tabClick = (val) => {
  if (val?.props.name == 'dataCircule') {
    homeDamDataCirculeRef.value.initPage();
  }  else if (val?.props.name == 'demand') {
    homeDamDemandRef.value.initPage();
  } else if (val?.props.name == 'algorithm') {
    homeDamAlgorithmRef.value.initPage();
  } else if (val?.props.name == 'market') {
    homeDamMarketRef.value.initPage();
  } else if (val?.props.name == 'service') {
    homeDamFinanceRef.value.initPage();
  }
}

</script>

<template>
  <div class="home-full-wrap">
    <div class="home-container">
      <div class="logo-header">
        <img style="width: 120px;height: 36px;margin-left: 27px;" src="../assets/images/logo-white.png" alt="" />
        <el-tabs v-model="tabsInfo.activeName" class="header-tabs" @tab-click="tabClick">
          <el-tab-pane v-for="tab in tabsInfo.tabs" :label="tab.label" :name="tab.name">
          </el-tab-pane>
        </el-tabs>
        <div class="logon-btns">
          <el-button class="logon-btn" @click="register">注册</el-button>
          <el-button class="logon-btn main-btn" @click="logon">登录</el-button>
        </div>
      </div>
      <div v-show="tabsInfo.activeName == 'index'">
        <div class="banner">
          <img style="width: 100%;height: 100%;" src="../assets/images/home-banner.png" alt="" />
          <div class="header">
            <div class="header-content">
              <!-- <div class="header-top">
                <img src="../assets/images/logo.png" class="logo" />
              </div> -->
              <div class="header-bottom">
                <div class="title">数据资产管理系统</div>
                <div class="header-right">激活数据流通体系,释放数据要素新质生产力</div>
              </div>
            </div>
          </div>
        </div>
        <div class="second-container">
          <div class="content">
            <div class="chunk">
              <img class="effect-img" src="../assets/images/financial-optimization.png" alt="" />
            </div>
            <div class="chunk">
              <img class="effect-img" src="../assets/images/enhance.png" alt="" />
            </div>
            <div class="chunk">
              <img class="effect-img" src="../assets/images/promote-circulation.png" alt="" />
            </div>
            <div class="chunk">
              <img class="effect-img" src="../assets/images/data-element.png" alt="" />
            </div>
          </div>
        </div>
        <el-tabs class="three-tabs" v-model="activeName">
          <el-tab-pane label="数据资产登记服务" name="register" class="register">
            <div class="title-a">确权凭证可交易</div>
            <div class="step-main">
              <div class="step-one">
                <div class="left">1</div>
                <div class="right">加入数据资产生产体系</div>
              </div>
              <div class="step-one">
                <div class="left">2</div>
                <div class="right">资源盘点资产规划</div>
              </div>
              <div class="step-one">
                <div class="left">3</div>
                <div class="right">合规核验权利梳理</div>
              </div>
              <div class="step-one">
                <div class="left">4</div>
                <div class="right">资产登记确权凭证</div>
              </div>
              <div class="step-one">
                <div class="left">5</div>
                <div class="right">确定目标资产质量评价</div>
              </div>
              <div class="step-one">
                <div class="left">6</div>
                <div class="right">确定目标资产价值评估</div>
              </div>
            </div>
            <div class="title-a" style="margin-top: 0px">确权凭证不可交易</div>
            <div class="step-main">
              <div class="step-one">
                <div class="left">1</div>
                <div class="right">加入数据资产生产体系</div>
              </div>
              <div class="step-one">
                <div class="left">2</div>
                <div class="right">资源盘点资产规划</div>
              </div>
              <div class="step-one">
                <div class="left">3</div>
                <div class="right">合规核验权利梳理</div>
              </div>
              <div class="step-one">
                <div class="left">4</div>
                <div class="right">资产登记确权凭证</div>
              </div>
              <div class="step-one" style="background: transparent"></div>
              <div class="step-one" style="background: transparent"></div>
            </div>
          </el-tab-pane>
          <el-tab-pane label="数据资产入表服务" name="entry" class="entry">
            <div style="width: 100%; position: relative;">
              <img style="width: 100%;height: 208px;" src="../assets/images/entry-bg.png" alt="" />
              <div class="content">
                <div class="title">提供入表咨询服务</div>
                <div class="desc">提供权威会计师律师事务所辅导资产入表工作 上市公司 拟上市公司 国有企业 事业单位</div>
              </div>
            </div>
          </el-tab-pane>
          <el-tab-pane label="数据场内交易服务" name="transactio" class="transactio">
            <div class="title-a">获取加工及产品经营授权,将数据资源形成数据产品,在可信空间进行买卖双方的交易</div>
            <div class="step-main">
              <div class="step-one" style="width: calc(25% - 25px)">
                <div class="left">1</div>
                <div class="right">数据产品设计</div>
              </div>
              <div class="step-one" style="width: calc(25% - 25px)">
                <div class="left">2</div>
                <div class="right">数据产品发布</div>
              </div>
              <div class="step-one" style="width: calc(25% - 25px)">
                <div class="left">3</div>
                <div class="right">寻找数据需求方</div>
              </div>
              <div class="step-one" style="width: calc(25% - 25px)">
                <div class="left">4</div>
                <div class="right">撮合成交</div>
              </div>
            </div>
          </el-tab-pane>
          <el-tab-pane label="数据金融化服务" name="finace" class="finace">
            <div class="title-a">提供辅导完成数据资产金融化业务,获取以数据资产或数据产品的融资</div>
            <div class="step-main">
              <div class="step-one" style="width: calc(33% - 35px)">
                <div class="left">1</div>
                <div class="right">提出金融需求</div>
              </div>
              <div class="step-one" style="width: calc(33% - 35px)">
                <div class="left">2</div>
                <div class="right">寻找资金方</div>
              </div>
              <div class="step-one" style="width: calc(33% - 35px)">
                <div class="left">3</div>
                <div class="right">撮合成交</div>
              </div>
            </div>
          </el-tab-pane>
          <el-tab-pane label="治理及挖掘服务" name="governance" class="governance">
            <div style="width: 100%; position: relative;">
              <img style="width: 100%;height: 208px;" src="../assets/images/governance-bg.png" alt="" />
              <div class="content">
                <div class="title">治理及挖掘服务</div>
                <div class="desc">提供专业的数据治理服务商为其提供数据治理服务及建议咨询</div>
                <div class="desc">提供专业的数据挖掘应用服务</div>
              </div>
            </div>
          </el-tab-pane>
        </el-tabs>
        <div class="four-container">
          <div style="height: 100%; width: 100%;">
            <div class="title">重点领域数据要素乘数效应</div>
            <div class="desc">12重点领域</div>
            <img style="width: 100%;margin-bottom: 61px;" src="../assets/images/primary-area.png" alt="" />
          </div>
        </div>
        <div class="company">
          <div style="height: 100%; width: 100%;">
            <div class="title">北京传世博润科技有限公司</div>
            <div class="desc">{{ companyDesc }}</div>
            <div class="btn-dom">
              <el-button class="btn" @click="enterCompany">了解我们</el-button>
            </div>
            <img style="width: 100%;height: 543px;" src="../assets/images/company-bg.png" alt="" />
          </div>
        </div>
        <div class="exchange">
          <div class="title">合作交易所</div>
          <div class="img-main">
            <img class="img-exchange" src="../assets/images/exchange-beijing.png" alt="" />
            <img class="img-exchange" src="../assets/images/exchange-guiyang.png" alt="" />
            <img class="img-exchange" src="../assets/images/exchange-xibu.png" alt="" />
            <img class="img-exchange" src="../assets/images/exchange-wenzhou.png" alt="" />
          </div>
        </div>
      </div>
      <homeDamRegister v-show="tabsInfo.activeName == 'dam'"></homeDamRegister>
      <!-- 数据供给页面 -->
      <homeDamDataCircule ref="homeDamDataCirculeRef" v-show="tabsInfo.activeName == 'dataCircule'"></homeDamDataCircule>
      <!-- 供需信息页面 -->
      <homeDamDemand ref="homeDamDemandRef" v-show="tabsInfo.activeName == 'demand'"></homeDamDemand>
      <!--  算法竞赛页面  -->
      <homeDamAlgorithm ref="homeDamAlgorithmRef" v-show="tabsInfo.activeName == 'algorithm'"></homeDamAlgorithm>
      <!-- 服务工具 -->
      <homeDamMarket ref="homeDamMarketRef" v-show="tabsInfo.activeName == 'market'"></homeDamMarket>
      <homeDamFinance ref="homeDamFinanceRef" v-show="tabsInfo.activeName == 'service'"></homeDamFinance>
      <div class="footer-link">
        <div class="link-title">友情链接</div>
        <div class="link-main">
          <div class="column">
            <!-- 目前没找到官网,暂时先不跳转,跟统计局不是同一个。 -->
            <span class="link-detail" href="https://data.stats.gov.cn" target="_blank">国家数据局</span>
            <a class="link-detail" href="https://www.miit.gov.cn" target="_blank">中华人民共和国工业和信息化部</a>
            <a class="link-detail" href="http://www.caict.ac.cn" target="_blank">中国信息通信研究院</a>
            <a class="link-detail" href="https://www.trimps.ac.cn" target="_blank">公安部第三研究所</a>
          </div>
          <div class="column">
            <a class="link-detail" href="https://www.cufe.edu.cn" target="_blank">中央财经大学</a>
            <a class="link-detail" href="https://www.henu.edu.cn" target="_blank">河南大学</a>
            <a class="link-detail" href="https://www.wzu.edu.cn" target="_blank">温州大学</a>
          </div>
          <div class="column">
            <a class="link-detail" href="https://www.landinglawyer.com" target="_blank">上海兰迪律师事务所</a>
            <a class="link-detail" href="https://www.cairui.com.cn" target="_blank">上海财瑞会计事务所</a>
            <a class="link-detail" href="https://www.cairui.com.cn" target="_blank">上海财瑞资产评估有限公司</a>
          </div>
          <div class="column">
            <a class="link-detail" href="https://ebanking1.ccb.com.cn" target="_blank">中国建设银行</a>
            <a class="link-detail" href="https://bankofbeijing.com.cn" target="_blank">北京银行股份有限公司</a>
            <a class="link-detail" href="https://www.cebbank.com" target="_blank">中国光大银行股份有限公司</a>
            <a class="link-detail" href="https://www.zybank.com.cn" target="_blank">中原银行股份有限公司</a>
            <a class="link-detail" href="https://www.shxibank.com" target="_blank">山西银行股份有限公司</a>
          </div>
        </div>
      </div>
      <div class="footer">
        <div class="desc">北京传世博润科技有限公司 Copyright @ 2023-2024 <a style="color: #fff" href="https://beian.miit.gov.cn"
            target="_blank">京ICP备2024044205号 </a>
        </div>
      </div>
    </div>
  </div>
</template>

<style lang="scss" scoped>
.home-full-wrap {
  height: 100%;
  width: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.home-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.logo-header {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  :deep(.header-tabs.el-tabs) {
    margin-top: 14px;
    .el-tabs__nav-scroll {
      display: flex;
      justify-content: center;
    }

    .el-tabs__nav-wrap::after {
      height: 0px;
    }

    .el-tabs__nav {
      margin: 0px 20px;
    }

    .el-tabs__item:focus-visible {
      box-shadow: none;
    }
  }
}

.banner {
  height: 500px;
  position: relative;

  .header {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: absolute;
    left: 0;
    top: 0;

    .header-content {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;

      .header-top {
        height: 80px;
        display: flex;
        align-items: center;

        .logo {
          margin-left: 40px;
          height: 40px;
        }
      }

      .header-bottom {
        height: calc(100% - 120px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-bottom: 40px;

        .title {
          font-size: 56px;
          color: #FFFFFF;
          font-weight: 400;
          margin-bottom: 18px;
          display: block;
          margin-left: 213px;
        }

        .header-right {
          font-size: 30px;
          font-weight: 200;
          padding-top: 25px;
          margin-left: 331px;
        }
      }
    }
  }

}

.logon-btns {
  display: flex;
  margin-right: 55px;
}

.logon-btn {
  font-size: 14px;
  color: #666666;
  text-align: center;
  height: 32px;
  width: 64px;
  display: block;
  border-radius: 4px;
  &.main-btn {
    background: #0098E6;
    color: #fff;
  }
}

.second-container {
  height: auto;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;

  .content {
    width: 100%;
    display: flex;
    height: 100%;
    justify-content: space-between;

    .chunk {
      min-width: 250px;
      width: 23.5%;

      .effect-img {
        height: 100%;
        width: 100%;
      }

      .text {
        font-size: 24px;
        color: #1B1B1B;
        font-weight: 200;
        padding-left: 20px;
        padding-right: 40px;
        padding-top: 12px;
        height: 118px;
      }
    }
  }
}

:deep(.three-tabs.el-tabs) {
  background-color: #EAEDF4;

  .el-tabs__content {
    padding: 0px 20px;
  }

  .el-tabs__nav-next,
  .el-tabs__nav-prev {
    top: 35px;
  }

  .el-tabs__nav-scroll {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0px 20px;

    .el-tabs__nav {
      width: 100%;
    }
  }

  .el-tabs__active-bar {
    background-color: #E1822F;
  }

  .el-tabs__item {
    height: 110px;
    width: 256px;
    font-size: 24px;
    color: #414141;
    font-weight: 200;
    padding-right: 30px;
    flex: 1;

    &.is-active {
      color: #E1822F;
      font-weight: 500;
    }
  }

  .el-tab-pane {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .title-a {
    margin-top: 37px;
    margin-bottom: 16px;
    font-size: 24px;
    color: #2B2B2B;
    font-weight: 200;
    width: 100%;
  }

  .governance,
  .entry {
    margin-bottom: 50px;
    margin-top: 36px;
    position: relative;

    .content {
      position: absolute;
      left: 60px;
      top: 0;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;

      .title {
        font-size: 32px;
        color: #FFFFFF;
        font-weight: 200;
      }

      .desc {
        margin-top: 12px;
        font-size: 20px;
        color: #FFFFFF;
        font-weight: 200;
      }
    }
  }

  .step-main {
    margin-bottom: 81px;
    display: flex;
    width: 100%;
    justify-content: space-between;

    .step-one {
      height: 127px;
      background-image: linear-gradient(90deg, #D96D03 2%, #F1A981 100%);
      display: flex;
      min-width: 205px;
      width: calc(16.7% - 20px);

      .left {
        display: flex;
        align-items: center;
        margin-left: 12px;
        font-size: 80px;
        color: #FFFFFF;
        font-weight: 500;
      }

      .right {
        display: flex;
        align-items: center;
        margin-left: 8px;
        margin-right: 24px;
        font-size: 24px;
        color: #FFFFFF;
        font-weight: 200;
      }
    }
  }
}

.four-container {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;

  .title {
    width: 100%;
    margin-top: 80px;
    font-size: 40px;
    color: #242424;
    line-height: 56px;
    font-weight: 200;
  }

  .desc {
    width: 100%;
    font-size: 24px;
    color: #242424;
    line-height: 33px;
    font-weight: 200;
    margin-bottom: 32px;
  }
}

.company {
  background: #EAEDF4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;

  .title {
    width: 100%;
    margin-top: 80px;
    font-size: 40px;
    color: #2B2B2B;
    font-weight: 200;
    height: 56px;
  }

  .desc {
    width: 100%;
    margin-top: 14px;
    font-size: 20px;
    color: #2B2B2B;
    font-weight: 200;
    white-space: pre-line;
    line-height: 28px;
  }

  .btn-dom {
    width: 100%;
  }

  .btn {
    font-size: 18px;
    margin-top: 21px;
    margin-bottom: 23px;
    background: #0759B7;
    border-radius: 0px;
    color: #fff;
    font-weight: 500;
    padding: 8px 33px;
    height: 40px;
    width: 120px;
  }
}

.exchange {
  height: 394px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px;

  .title {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 30px;
    font-size: 40px;
    color: #2B2B2B;
    font-weight: 200;
  }

  .img-main {
    width: 100%;
    height: 228px;
    display: flex;
    justify-content: space-between;

    .img-exchange {
      width: 23%;
      min-width: 230px;
    }
  }
}

.footer {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2A2B2C;

  .desc {
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 200;
  }
}

.footer-link {
  height: 262px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #2A2B2C;
  padding: 0px 90px;

  .link-title {
    margin: 28px 0px;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 600;
  }

  .link-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;

    .column {
      display: flex;
      flex-direction: column;
    }
    .link-detail {
      font-size: 16px;
      color: #C9C9C9;
      line-height: 18px;
      font-weight: 400;
      line-height: 24px;
      margin-bottom: 8px;
      text-decoration: none;
      cursor: pointer;
    }
  }

}

:deep(.el-overlay) {
  background-color: transparent;
}
</style>