Skip to content

Commit a58f162

Browse files
committed
chore: 更新项目版本号至 3.3.9
- 在 .env 文件中将 VITE_VERSION 更新至 3.3.9。 - 在 Title 组件中调整内边距,改善视觉效果。 - 在 iterative 页面中引入骨架屏和自定义时间轴组件,提升加载体验和信息展示。 - 更新多个页面中的按钮文本,从“保存”更改为“确定”,增强用户交互一致性。
1 parent 3470426 commit a58f162

File tree

9 files changed

+216
-105
lines changed

9 files changed

+216
-105
lines changed

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# 项目版本号
2-
VITE_VERSION=3.3.8
2+
VITE_VERSION=3.3.9
33

44
# 项目后端API地址
55
VITE_PROJECT_API=https://你的后端域名/api

src/components/Title/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ interface Props {
88

99
export default ({ value, children }: Props) => {
1010
return (
11-
<div className="px-6 py-2 bg-white dark:bg-boxdark rounded-xl shadow-sm border border-gray-100 dark:border-strokedark mb-2">
11+
<div className="px-6 py-2.5 bg-white dark:bg-boxdark rounded-xl shadow-sm border border-gray-100 dark:border-strokedark mb-2">
1212
<div className="overflow-auto flex justify-between items-center">
1313
<h2 className="font-semibold text-black dark:text-white text-xl min-w-24">{value}</h2>
1414

src/pages/iterative/index.tsx

Lines changed: 208 additions & 97 deletions
Large diffs are not rendered by default.

src/pages/setup/components/My/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export default () => {
7979

8080
<Form.Item>
8181
<Button type="primary" htmlType="submit" loading={loading} className="w-full">
82-
保存
82+
确定
8383
</Button>
8484
</Form.Item>
8585
</Form>

src/pages/setup/components/Other/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export default () => {
7676

7777
<Form.Item>
7878
<Button type="primary" htmlType="submit" loading={loading} block>
79-
保存
79+
确定
8080
</Button>
8181
</Form.Item>
8282
</Form>

src/pages/setup/components/System/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export default () => {
7575

7676
<Form.Item>
7777
<Button type="primary" htmlType="submit" loading={loading} className="w-full">
78-
保存
78+
确定
7979
</Button>
8080
</Form.Item>
8181
</Form>

src/pages/setup/components/Theme/components/RecordTheme/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export default () => {
7373
</Form.Item>
7474

7575
<Button type="primary" size="large" className="w-full mt-4" htmlType="submit" loading={loading}>
76-
保存
76+
确定
7777
</Button>
7878
</Form>
7979
</div>

src/pages/setup/components/Theme/components/SynthesisTheme/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ export default () => {
167167
</div>
168168

169169
<Button type="primary" size="large" className="w-full mt-4" htmlType="submit" loading={loading}>
170-
保存
170+
确定
171171
</Button>
172172
</Form>
173173
</div>

src/pages/setup/components/Web/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ export default () => {
9090

9191
<Form.Item>
9292
<Button type="primary" htmlType="submit" loading={loading} block>
93-
保存
93+
确定
9494
</Button>
9595
</Form.Item>
9696
</Form>

0 commit comments

Comments
 (0)