Skip to content

Commit b01e618

Browse files
authored
Merge pull request alibaba#7 from alibaba/fix/https
Fix/https
2 parents 8ff3c3d + 9551fa5 commit b01e618

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

packages/plugin-components-pane/schema/mock2.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
{
1212
"title": "容器",
1313
"componentName": "Block",
14-
"docUrl": "http://gitlab.alibaba-inc.com/vision-components/vc-block/blob/master/README.md",
14+
"docUrl": "http://github.com/vision-components/vc-block/blob/master/README.md",
1515
"category": null,
1616
"isContainer": true
1717
},
@@ -737,7 +737,7 @@
737737
"canUseCondition": false,
738738
"canLoop": false,
739739
"rectSelector": "div.general-editor-fusion-dialog",
740-
"docUrl": "http://gitlab.alibaba-inc.com/vision-components/vc-fusion-dialog/blob/master/README.md"
740+
"docUrl": "http://github.com/vision-components/vc-fusion-dialog/blob/master/README.md"
741741
},
742742
{
743743
"title": "Iframe",
@@ -982,7 +982,7 @@
982982
{
983983
"title": "低代码业务组件",
984984
"componentName": "Component",
985-
"docUrl": "http://gitlab.alibaba-inc.com/vision-components/vc-component/blob/master/README.md",
985+
"docUrl": "http://github.com/vision-components/vc-component/blob/master/README.md",
986986
"category": null,
987987
"isContainer": true,
988988
"canUseCondition": false,

packages/plugin-manual/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.0.2
2+
3+
- 使用 https 的文档
4+
15
## 1.0.1
26

37
- 修正链接版本

packages/plugin-manual/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@alilc/lowcode-plugin-manual",
33
"author": "humphry.huang9@gmail.com",
4-
"version": "1.0.1",
4+
"version": "1.0.2",
55
"description": "低代码产品使用手册",
66
"main": "lib/index.js",
77
"module": "es/index.js",

packages/plugin-manual/src/popup.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ export function Documents() {
1212

1313
useEffect(() => {
1414
setLoading(true)
15-
fetch('http://lowcode-engine.cn/api/get_usage')
15+
fetch('https://lowcode-engine.cn/api/get_usage')
1616
.then((res) => res.json())
1717
.then((val) => {
1818
const menu = val.data.filter((a: any) => !isNaN(parseInt(a.title)))
@@ -58,7 +58,7 @@ export function Documents() {
5858
</>
5959
)}
6060
onClick={() => {
61-
window.open('http://lowcode-engine.cn/doc')
61+
window.open('https://lowcode-engine.cn/doc')
6262
}}
6363
/>
6464
<Tree.Node
@@ -73,7 +73,7 @@ export function Documents() {
7373
</>
7474
)}
7575
onClick={() => {
76-
window.open('http://lowcode-engine.cn/doc?url=engine-changelog')
76+
window.open('https://lowcode-engine.cn/doc?url=engine-changelog')
7777
}}
7878
/>
7979
<Tree.Node
@@ -88,7 +88,7 @@ export function Documents() {
8888
</>
8989
)}
9090
onClick={() => {
91-
window.open('http://lowcode-engine.cn/doc?url=engine-ext-changelog')
91+
window.open('https://lowcode-engine.cn/doc?url=engine-ext-changelog')
9292
}}
9393
/>
9494
<Tree.Node

0 commit comments

Comments
 (0)