命名版本1.0.0 正式开源

This commit is contained in:
sc 2021-05-07 13:12:33 +08:00
parent 1538abe2b5
commit 79a2f71d5a
3 changed files with 25 additions and 10 deletions

View File

@ -1,15 +1,30 @@
<template> <template>
<el-skeleton /> <div style="height: 300px;">
<el-scrollbar >
<el-timeline>
<el-timeline-item v-for="(item, index) in activities" :key="index" :timestamp="item.timestamp" placement="top">
<div v-html="item.content"></div>
</el-timeline-item>
</el-timeline>
</el-scrollbar>
</div>
</template> </template>
<script> <script>
export default { export default {
title:"模块2", title: "模块2",
props: { data() {
msg: String return {
activities: [
{
content: '1.0.0 版本开源 <i class="el-icon-present"></i>',
timestamp: '2021-05-07'
}
]
}
}, },
mounted(){ mounted() {
console.log("加载C2");
} }
} }
</script> </script>

View File

@ -44,14 +44,14 @@
}, ], }, ],
series: [{ series: [{
name: '支出', name: '支出',
barWidth: '20%', barWidth: '15px',
type: 'bar', type: 'bar',
data: [5, 20, 36, 10, 10], data: [5, 20, 36, 10, 10],
}, },
{ {
name: '收入', name: '收入',
type: 'bar', type: 'bar',
barWidth: '20%', barWidth: '15px',
data: [15, 20, 16, 20, 30], data: [15, 20, 16, 20, 30],
}, },
], ],

View File

@ -120,10 +120,10 @@
copmsList: [ copmsList: [
[ [
{ title: "模块1", com: 'C1' }, { title: "模块1", com: 'C1' },
{ title: "模块2", com: 'C2' } { title: "模块3", com: 'C3' }
], ],
[ [
{ title: "模块3", com: 'C3' } { title: "模块2", com: 'C2' }
], ],
[ [