算法对比

This commit is contained in:
guoyue 2022-06-23 13:19:52 +08:00
parent 96f2b8b1f3
commit 3ceb5b59de
4 changed files with 631 additions and 591 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 KiB

View File

@ -1,8 +1,14 @@
<template> <template>
<div> <div class="bg">
<home-header></home-header> <home-header></home-header>
<div class="box-container"> <div class="box-container">
<div class="nav-box">能力集市 / 算法对比</div> <div class="nav-box">
<a-breadcrumb>
<a-breadcrumb-item>能力集市</a-breadcrumb-item>
<a-breadcrumb-item>算法对比</a-breadcrumb-item>
</a-breadcrumb>
<!-- 能力集市 / 算法对比 -->
</div>
<div class="content"> <div class="content">
<div class="left"> <div class="left">
<div class="left-item" v-for="(data, i) in tableData" :key="i" <div class="left-item" v-for="(data, i) in tableData" :key="i"
@ -256,7 +262,7 @@ const titleObj = {
text: '算法应用期望达成效果', key: '' text: '算法应用期望达成效果', key: ''
}, },
], ],
'计费标准': [ '计费标准信息': [
{ {
text: '是否计费', key: '' text: '是否计费', key: ''
}, },
@ -267,7 +273,7 @@ const titleObj = {
text: '计费描述', key: '' text: '计费描述', key: ''
}, },
{ {
text: '计费标准', key: '' text: '计费标准信息', key: ''
}, },
], ],
'使用方式': [ '使用方式': [
@ -304,7 +310,7 @@ const titleObj = {
} }
const arrayStr = [ const arrayStr = [
'算法优势', '应用场景', '计费标准信息', '常见问题' '算法优势', '应用场景', '计费标准信息信息', '常见问题'
] ]
const activeNameIndex = ref(0) const activeNameIndex = ref(0)
@ -501,23 +507,28 @@ const getLength = (array) => {
<style lang="less" scoped> <style lang="less" scoped>
.bg {
background: #fff;
// background: rgba(244,245,248, 0.8);
}
// @font-face { // @font-face {
// font-family: 'num-typeface'; // font-family: 'num-typeface';
// src: url('~@/assets/newHome/font/num-typeface.otf'); // src: url('~@/assets/newHome/font/num-typeface.otf');
// } // }
.border { .border {
border: 1px solid #bbb; border: 1px solid #dddee1;
border-bottom: none; border-bottom: none;
border-right: none; border-right: none;
} }
.border-bottom { .border-bottom {
border-bottom: 1px solid #bbb; border-bottom: 1px solid #dddee1;
} }
.no-border-right { .no-border-right {
border: 1px solid #bbb; border: 1px solid #dddee1;
border-right: none; border-right: none;
} }
@ -540,11 +551,13 @@ const getLength = (array) => {
} }
.nav-box { .nav-box {
height: 30px; height: 50px;
line-height: 30px;
width: 100%; width: 100%;
margin-bottom: 10px; font-size: 14px;
font-size: 12px; display: flex;
align-items: center;
background: rgba(244, 245, 248, 0.8);
padding-left: 10px;
} }
@ -615,7 +628,7 @@ const getLength = (array) => {
.bottom { .bottom {
width: 100%; width: 100%;
overflow-y: auto; overflow-y: auto;
height: 800px; height: 680px;
padding-bottom: 40px; padding-bottom: 40px;
} }
@ -628,10 +641,11 @@ const getLength = (array) => {
padding: 20px 0 10px 10px; padding: 20px 0 10px 10px;
color: #212121; color: #212121;
font-weight: bold; font-weight: bold;
background: rgba(244, 245, 248, 0.8);
} }
.td-name { .td-name {
border-right: 1px solid #bbb; border-right: 1px solid #dddee1;
height: 50px; height: 50px;
line-height: 50px; line-height: 50px;
text-align: center; text-align: center;
@ -640,7 +654,7 @@ const getLength = (array) => {
} }
.td { .td {
border-right: 1px solid #bbb; border-right: 1px solid #dddee1;
height: 50px; height: 50px;
line-height: 50px; line-height: 50px;
text-align: center; text-align: center;
@ -654,13 +668,14 @@ const getLength = (array) => {
} }
.row-tr { .row-tr {
border: 1px solid #bbb; border: 1px solid #dddee1;
border-right: none; border-right: none;
border-bottom: none; border-bottom: none;
background: #fff;
} }
.border-bottom { .border-bottom {
border-bottom: 1px solid #bbb; border-bottom: 1px solid #dddee1;
} }
.modal-box { .modal-box {

File diff suppressed because it is too large Load Diff