mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-15 01:34:38 +08:00
📝 新增全球统计
This commit is contained in:
parent
16930e96aa
commit
2b537d27ec
@ -1,5 +1,4 @@
|
|||||||
import {defineClientConfig} from "vuepress/client";
|
import {defineClientConfig} from "vuepress/client";
|
||||||
import { defineEChartsConfig } from "vuepress-plugin-md-enhance/client";
|
|
||||||
|
|
||||||
import resourceStoreComp from "./components/ResStore.vue";
|
import resourceStoreComp from "./components/ResStore.vue";
|
||||||
import pluginStoreComp from "./components/PluginStore.vue";
|
import pluginStoreComp from "./components/PluginStore.vue";
|
||||||
@ -9,17 +8,6 @@ import geoComp from "./components/Geo.vue";
|
|||||||
|
|
||||||
// import ElementPlus from 'element-plus';
|
// import ElementPlus from 'element-plus';
|
||||||
|
|
||||||
defineEChartsConfig({
|
|
||||||
options: {
|
|
||||||
// 全局 ECharts 配置
|
|
||||||
},
|
|
||||||
setup: async () => {
|
|
||||||
// ECharts 设置
|
|
||||||
// 例如: await import("echarts-wordcloud")
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
export default defineClientConfig({
|
export default defineClientConfig({
|
||||||
enhance: ({app, router, siteData}) => {
|
enhance: ({app, router, siteData}) => {
|
||||||
app.component("homeComp", homeComp);
|
app.component("homeComp", homeComp);
|
||||||
|
@ -20,11 +20,6 @@ export default sidebar({
|
|||||||
icon: "store",
|
icon: "store",
|
||||||
prefix: "store/",
|
prefix: "store/",
|
||||||
children: "structure",
|
children: "structure",
|
||||||
},{
|
|
||||||
text: "其他",
|
|
||||||
icon: "question-circle",
|
|
||||||
prefix: "other/",
|
|
||||||
children: "structure",
|
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
});
|
});
|
||||||
|
@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
title: 其他
|
|
||||||
index: false
|
|
||||||
icon: question-circle
|
|
||||||
category: 其他
|
|
||||||
---
|
|
||||||
|
|
||||||
<Catalog />
|
|
@ -1,55 +0,0 @@
|
|||||||
---
|
|
||||||
title: 地理分布
|
|
||||||
icon: globe
|
|
||||||
order: 1
|
|
||||||
category: 其他
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
:::echarts Liteyuki Dist
|
|
||||||
|
|
||||||
```js
|
|
||||||
const option = {
|
|
||||||
backgroundColor: '#454545',
|
|
||||||
title: {
|
|
||||||
text: 'LiteyukiBot分布demo',
|
|
||||||
subtext: 'LiteyukiBot分布',
|
|
||||||
textStyle: {
|
|
||||||
color: '#fff',
|
|
||||||
fontSize: 20
|
|
||||||
},
|
|
||||||
top: '10px',
|
|
||||||
left: '10px'
|
|
||||||
},
|
|
||||||
geo: {
|
|
||||||
map: 'world',
|
|
||||||
roam: false,
|
|
||||||
itemStyle: {
|
|
||||||
normal: {
|
|
||||||
areaColor: '#000',
|
|
||||||
borderType: null, // 设置边界线类型为无
|
|
||||||
borderColor: '#000', // 设置边界线颜色
|
|
||||||
|
|
||||||
},
|
|
||||||
emphasis: {
|
|
||||||
areaColor: '#000',
|
|
||||||
borderType: null, // 设置边界线类型为无
|
|
||||||
borderColor: '#000', // 设置边界线颜色
|
|
||||||
}
|
|
||||||
},
|
|
||||||
regions: [] // 先保留为空
|
|
||||||
},
|
|
||||||
series: [{
|
|
||||||
// 散点效果
|
|
||||||
type: 'scatter',
|
|
||||||
coordinateSystem: 'geo', // 表示使用的坐标系为地理坐标系
|
|
||||||
symbolSize: 5, // 设置散点的大小为20
|
|
||||||
itemStyle: {
|
|
||||||
color: '#ffeb3b', // 黄色
|
|
||||||
},
|
|
||||||
}],
|
|
||||||
textStyle: {
|
|
||||||
fontSize: 1
|
|
||||||
}
|
|
||||||
};
|
|
||||||
```
|
|
Loading…
Reference in New Issue
Block a user