-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3f05af
commit b3b4d3d
Showing
10 changed files
with
201 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
// 帮助/模型加载 | ||
export default { | ||
name: "load_models" | ||
} | ||
</script> | ||
|
||
<template> | ||
|
||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
// 帮助/安全性说明页面 | ||
export default { | ||
name: "safety" | ||
} | ||
</script> | ||
|
||
<template> | ||
安全性说明 | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<script> | ||
// 帮助/训练 | ||
export default { | ||
name: "train" | ||
} | ||
</script> | ||
|
||
<template> | ||
|
||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<script> | ||
// 帮助页面 | ||
import load_models from "@/components/helps/load_models.vue"; | ||
import safety from "@/components/helps/safety.vue"; | ||
import train from "@/components/helps/train.vue"; | ||
export default { | ||
name: "help", | ||
data() { | ||
return { | ||
activeKey: "1" | ||
} | ||
}, | ||
components: {load_models, safety, train} | ||
} | ||
</script> | ||
|
||
<template> | ||
<a-page-header | ||
title="帮助" | ||
style="border: 1px solid rgb(235, 237, 240)" | ||
/> | ||
<a-tabs v-model:activeKey="activeKey" type="card"> | ||
<a-tab-pane key="1" tab="模型加载"> | ||
<load_models/> | ||
</a-tab-pane> | ||
<a-tab-pane key="2" tab="训练"> | ||
<train/> | ||
</a-tab-pane> | ||
<a-tab-pane key="3" tab="安全性说明"> | ||
<safety/> | ||
</a-tab-pane> | ||
</a-tabs> | ||
</template> | ||
|
||
<style scoped> | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters