fix: 模型基本信息数据集没有省略

This commit is contained in:
cp3hnu 2024-10-29 15:53:31 +08:00
parent d65c126f75
commit 09ee7ebe5b
10 changed files with 35 additions and 15 deletions

View File

@ -27,7 +27,7 @@
display: flex;
flex: 1;
flex-direction: column;
align-items: flex-start;
align-items: stretch;
min-width: 0;
}

View File

@ -50,7 +50,7 @@
height: 100%;
.ant-tabs-nav-wrap {
padding-top: 8px;
padding-left: 30px;
padding-left: @content-padding;
background-color: white;
border-radius: 10px 10px 0 0;
}

View File

@ -2,7 +2,7 @@
width: 100%;
&__top {
padding: 20px 30px;
padding: 20px @content-padding;
background: white;
border-radius: 0 0 10px 10px;
box-shadow: 0px 2px 12px rgba(180, 182, 191, 0.09);
@ -22,4 +22,15 @@
font-size: @font-size;
}
}
&--dataset {
height: 100%;
background-color: white;
border-radius: 0 0 10px 10px;
}
&--dataset &__top {
border-radius: 0;
box-shadow: none;
}
}

View File

@ -12,6 +12,7 @@ import {
} from '@/pages/Dataset/config';
import ModelMetrics from '@/pages/Model/components/ModelMetrics';
import { getGitUrl } from '@/utils';
import classNames from 'classnames';
import styles from './index.less';
type ResourceIntroProps = {
@ -206,7 +207,11 @@ function ResourceIntro({
: getModelDatas(info as ModelData);
return (
<div className={styles['resource-intro']}>
<div
className={classNames(styles['resource-intro'], {
[styles['resource-intro--dataset']]: resourceType === ResourceType.Dataset,
})}
>
<div className={styles['resource-intro__top']}>
<SubAreaTitle
title="基本信息"

View File

@ -1,6 +1,6 @@
.resource-version {
min-height: 100%;
padding: 20px 30px;
padding: 20px @content-padding;
color: @text-color;
font-size: @font-size-content;
background: white;

View File

@ -1,7 +1,7 @@
.model-evolution {
width: 100%;
height: 100%;
padding: 0 30px 20px;
padding: 0 @content-padding 20px;
overflow-x: hidden;
background: white;
border-radius: 0 0 10px 10px;

View File

@ -1,7 +1,7 @@
.model-metrics {
&__table {
margin-top: 10px;
padding: 20px 30px 0;
padding: 20px @content-padding 0;
background: white;
border-radius: 10px;

View File

@ -9,6 +9,7 @@
line-height: 42px;
text-align: center;
background: @background;
border-radius: 4px 4px 0 0;
.singleLine();
}
@ -16,6 +17,7 @@
margin-bottom: 20px !important;
color: @text-color-secondary;
font-size: 13px;
line-height: 22px;
word-break: break-all;
.singleLine();
}
@ -54,9 +56,10 @@
flex: none;
width: 117px;
padding: 0 15px;
background: white;
background: rgba(255, 255, 255, 0.1);
border: 1px solid .addAlpha(@primary-color, 0.2) [];
border-radius: 4px;
box-shadow: 0px 3px 6px .addAlpha(@primary-color, 0.1) [] inset;
&__title {
margin-bottom: 20px;

View File

@ -38,11 +38,14 @@
);
// 字体大小
@font-size: 15px;
@font-size-title: 18px;
@font-size-content: 16px;
@font-size-input: 14px;
@font-size-input-lg: 16px;
@font-size: 15px;
@font-size-content: 16px;
@font-size-input-lg: @font-size-content;
@font-size-title: 18px;
// padding
@content-padding: 25px;
// 函数
.addAlpha(@color, @alpha) {

View File

@ -75,9 +75,7 @@ export const gotoLoginPage = (toHome: boolean = true) => {
const { pathname, search } = location;
const urlParams = new URLSearchParams();
urlParams.append('redirect', pathname + search);
const newSearch = toHome && pathname !== '/' ? '' : urlParams.toString();
// console.log('pathname', pathname);
// console.log('search', search);
const newSearch = toHome || pathname === '/' ? '' : urlParams.toString();
if (pathname !== PageEnum.LOGIN) {
closeAllModals();
removeAllPageCacheState();