Skip to content

Commit 024783b

Browse files
committed
feat: demo data
1 parent e233eec commit 024783b

File tree

12 files changed

+522
-17
lines changed

12 files changed

+522
-17
lines changed

.vscode/settings.json

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
{
22
"editor.formatOnSave": false,
33
"editor.codeActionsOnSave": {
4-
"source.fixAll.eslint": true,
5-
"source.fixAll.stylelint": true
4+
"source.fixAll.eslint": "explicit",
5+
"source.fixAll.stylelint": "explicit"
66
},
7-
"files.trimTrailingWhitespace": true,
87
"editor.defaultFormatter": "esbenp.prettier-vscode",
98
"files.insertFinalNewline": true,
109
"[typescriptreact]": {

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@
1515

1616
### mysql 5.7
1717

18-
建表语句: `/src/mysql/base-table.sql`
18+
建表语句: `/src/mysql/base-table.sql`
19+
demo 数据: `/src/mysql/demo-data.sql`
1920

2021
### 基础依赖
2122

src/mysql/base-table.sql

-2
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,7 @@ CREATE TABLE `project` (
1717
PRIMARY KEY (`projectId`) USING BTREE
1818
) ENGINE = InnoDB DEFAULT CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = '项目表';
1919

20-
2120
INSERT INTO project (name, appName) values ('汇总', 'default');
22-
INSERT INTO project (devopsProjectIds, name, appName) values ('7,15', '离线', 'batch'), ('9,15', '实时', 'stream'), ('12,15', '控制台', 'console'), ('1,15', 'API', 'dataApi'), ('13,15', '资产', 'dataAssets'), ('3,15', '标签', 'tag'), ('2,15', '指标', 'easyIndex'), ('11,15', 'portal', 'portal'), ('16,15', '数据湖', 'dataLake');
2321

2422

2523
-- ----------------------------

src/mysql/demo-data.sql

+514
Large diffs are not rendered by default.

src/mysql/some.sql

-7
This file was deleted.

website/public/home.png

-177 KB
Loading

website/src/assets/logo/antd.png

4.81 KB
Loading

website/src/assets/logo/react.png

5.53 KB
Loading

website/src/assets/logo/vite.png

4.11 KB
Loading

website/src/const/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export const IS_USEFUL_TEXT = [
4343
*/
4444
const scoreColor = {
4545
orangeMin: 50,
46-
greenMin: 80,
46+
greenMin: 90,
4747
};
4848

4949
export const getScoreColor = (score: number) => {

website/src/main.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import Routers from './routers';
88
import './main.less';
99

1010
const yiceRole = localStorage.getItem('yice-role');
11-
!yiceRole && localStorage.setItem('yice-role', YICE_ROLE.USER);
11+
!yiceRole && localStorage.setItem('yice-role', YICE_ROLE.ADMIN);
1212

1313
ReactDOM.createRoot(document.getElementById('root') as HTMLElement).render(
1414
<ConfigProvider locale={zhCN}>

website/src/views/home/components/versions/icon.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import type { CustomIconComponentProps } from '@ant-design/icons/lib/components/
66
const ScheduleSvg = () => (
77
<svg width="13.5px" height="12.75px" viewBox="0 0 13.5 12.75">
88
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
9-
<g id="离线开发" transform="translate(-1385.25, -209.5)" fill="#64698B">
9+
<g id="schedule-svg" transform="translate(-1385.25, -209.5)" fill="#64698B">
1010
<g id="Button/次按钮/默认/32/灰色边框备份-9" transform="translate(1376, 200)">
1111
<g id="icon/线性/添加" transform="translate(9.25, 9.5)">
1212
<path
@@ -24,7 +24,7 @@ const ScheduleSvg = () => (
2424
const PatchDataSvg = () => (
2525
<svg width="12.5755539px" height="13.5px" viewBox="0 0 12.5755539 13.5" version="1.1">
2626
<g id="页面-1" stroke="none" strokeWidth="1" fill="none" fillRule="evenodd">
27-
<g id="离线开发" transform="translate(-1341.853, -209.532)" fill="#64698B">
27+
<g id="patch-data-svg" transform="translate(-1341.853, -209.532)" fill="#64698B">
2828
<g id="Button/次按钮/默认/32/灰色边框备份-8" transform="translate(1332, 200)">
2929
<g id="icon/线性/添加" transform="translate(9.853, 9.532)">
3030
<path

0 commit comments

Comments
 (0)