Skip to content

Commit 1314373

Browse files
author
xuqingkai
committed
docs: ✏️ 调整捐赠榜单和友情链接的数据到cloudflare上
1 parent c1203c9 commit 1314373

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

docs/.vitepress/theme/composables/friendly.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @Author: weisheng
33
* @Date: 2023-08-01 11:12:05
4-
* @LastEditTime: 2024-02-04 10:21:21
4+
* @LastEditTime: 2024-05-08 13:29:27
55
* @LastEditors: weisheng
66
* @Description:
77
* @FilePath: \wot-design-uni\docs\.vitepress\theme\composables\friendly.ts
@@ -23,7 +23,7 @@ export function useFriendly() {
2323
if (data.value && data.value.length) {
2424
return
2525
}
26-
const result = await fetch('https://historysoa.oss-cn-hongkong.aliyuncs.com/sponsors/friendly.json')
26+
const result = await fetch('https://wot-sponsors.pages.dev/friendly.json')
2727
const json = await result.json()
2828
data.value = json && json.links ? json.links : []
2929
})

docs/.vitepress/theme/composables/sponsor.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
* @Author: weisheng
33
* @Date: 2023-08-01 11:12:05
4-
* @LastEditTime: 2024-02-02 15:30:41
4+
* @LastEditTime: 2024-05-08 13:23:59
55
* @LastEditors: weisheng
66
* @Description:
77
* @FilePath: \wot-design-uni\docs\.vitepress\theme\composables\sponsor.ts
@@ -17,7 +17,7 @@ export function useSponsor() {
1717
if (data.value) {
1818
return
1919
}
20-
const result = await fetch('https://historysoa.oss-cn-hongkong.aliyuncs.com/sponsors/wot-design-uni.json')
20+
const result = await fetch('https://wot-sponsors.pages.dev/wot-design-uni.json')
2121
const json = await result.json()
2222
data.value = json
2323
})

src/uni_modules/wot-design-uni/components/wd-calendar/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ export type CalendarOnShortcutsClick = (option: CalendarOnShortcutsClickOption)
203203

204204
export type CalendarExpose = {
205205
/** 关闭时间选择器弹窗 */
206-
close: () => void,
206+
close: () => void
207207
/** 打开时间选择器弹窗 */
208208
open: () => void
209209
}

0 commit comments

Comments
 (0)