Skip to content

Commit f6bab5c

Browse files
authored
fix: Modify the redirection document address (#1758)
1 parent ad898b9 commit f6bab5c

File tree

6 files changed

+20
-20
lines changed

6 files changed

+20
-20
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,9 +62,9 @@ Java backend repository: https://github.com/opentiny/tiny-engine-backend-java
6262

6363
Start Java backend for frontend-backend integration:
6464

65-
[Frontend-Backend Integration Documentation](https://opentiny.design/tiny-engine#/help-center/course/dev/debugging-of-java-backend)
65+
[Frontend-Backend Integration Documentation](https://docs.opentiny.design/tiny-engine/dev/debugging-of-java-backend)
6666

67-
### Materials Synchronization [Solution](https://opentiny.design/tiny-engine#/help-center/course/dev/material-sync-solution)
67+
### Materials Synchronization [Solution](https://docs.opentiny.design/tiny-engine/dev/material-sync-solution)
6868

6969
```sh
7070
$ pnpm splitMaterials

README.zh-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ java 服务端代码仓库:https://github.com/opentiny/tiny-engine-backend-jav
6060

6161
启动 Java 服务端进行前后端联调:
6262

63-
[前后端联调文档](https://opentiny.design/tiny-engine#/help-center/course/dev/debugging-of-java-backend)
63+
[前后端联调文档](https://docs.opentiny.design/tiny-engine/dev/debugging-of-java-backend)
6464

65-
### 物料同步[方案](https://opentiny.design/tiny-engine#/help-center/course/dev/material-sync-solution)
65+
### 物料同步[方案](https://docs.opentiny.design/tiny-engine/dev/material-sync-solution)
6666

6767
```sh
6868
$ pnpm splitMaterials

packages/design-core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ Java backend repository: https://github.com/opentiny/tiny-engine-backend-java
6060

6161
Start Java backend for frontend-backend integration:
6262

63-
[Frontend-Backend Integration Documentation](https://opentiny.design/tiny-engine#/help-center/course/dev/debugging-of-java-backend)
63+
[Frontend-Backend Integration Documentation](https://docs.opentiny.design/tiny-engine/dev/debugging-of-java-backend)
6464

65-
### Materials Synchronization [Solution](https://opentiny.design/tiny-engine#/help-center/course/dev/material-sync-solution)
65+
### Materials Synchronization [Solution](https://docs.opentiny.design/tiny-engine/dev/material-sync-solution)
6666

6767
```sh
6868
$ pnpm splitMaterials

packages/engine-cli/template/designer/registry.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export default {
5050
[META_APP.Preview]: {
5151
options: {
5252
// 配置预览跳转的 url:根据实际业务需求进行配置
53-
// 文档:https://opentiny.design/tiny-engine#/help-center/course/dev/preview-api
53+
// 文档:https://docs.opentiny.design/tiny-engine/dev/preview-api
5454
previewUrl: ['prod', 'alpha'].includes(import.meta.env.MODE) ? `${baseURLWithoutSlash}/preview.html` : ''
5555
}
5656
}

packages/plugins/help/src/HelpIcon.vue

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -75,20 +75,20 @@ export default {
7575
const tinyGuideRef = ref()
7676
const helpTitle = '帮助与指引'
7777
const questionTitle = '常见问题'
78-
const courseUrl = 'https://opentiny.design/tiny-engine#/help-center/course/engine'
78+
const courseUrl = 'https://docs.opentiny.design/tiny-engine/guide/introduction'
7979
const imgUrl = 'https://tinyengine-assets.obs.myhuaweicloud.com/files/designer/drag-drop-action-guide.svg'
8080
const questionList = [
8181
{
8282
label: '如何引入第三方组件库',
83-
url: 'https://opentiny.design/tiny-engine#/help-center/course/dev/third-party-library-in-designer'
83+
url: 'https://docs.opentiny.design/tiny-engine/dev/third-party-library-in-designer'
8484
},
8585
{
8686
label: '如何使用AI功能创建页面',
87-
url: 'https://opentiny.design/tiny-engine#/help-center/course/engine/integrating-chatgpt-for-simple-pages'
87+
url: 'https://docs.opentiny.design/tiny-engine/guide/new-ai-plugin-usage'
8888
},
8989
{
9090
label: '答疑视频回放',
91-
url: 'https://opentiny.design/tiny-engine#/help-center/course/engine/issue-1-2023.10.27'
91+
url: 'https://docs.opentiny.design/tiny-engine/guide/issue-1-2023.10.27'
9292
}
9393
]
9494

packages/plugins/help/src/composable/useHelp.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,18 @@
1111
*/
1212

1313
/* metaService: engine.service.help.useHelp */
14-
const getBaseUrl = () => 'https://opentiny.design/tiny-engine#/help-center/course/engine/'
14+
const getBaseUrl = () => 'https://docs.opentiny.design/tiny-engine/guide/'
1515

1616
const helpState = {
1717
docsUrl: {
18-
block: 3,
19-
bridge: 13,
20-
data: 7,
21-
datasource: 11,
22-
i18n: 12,
23-
page: 2,
24-
script: 8,
25-
stylePanel: 6
18+
block: 'block-management',
19+
bridge: 'using-utils-methods',
20+
data: 'state-management-and-variable-binding',
21+
datasource: 'data-source-and-collection-usage',
22+
i18n: 'internationalization',
23+
page: 'page-management',
24+
script: 'js-panel-and-event-binding',
25+
stylePanel: 'style-settings'
2626
}
2727
}
2828

0 commit comments

Comments
 (0)