命名版本1.0.0 正式开源
This commit is contained in:
parent
1538abe2b5
commit
79a2f71d5a
|
|
@ -1,15 +1,30 @@
|
|||
<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>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
title:"模块2",
|
||||
props: {
|
||||
msg: String
|
||||
title: "模块2",
|
||||
data() {
|
||||
return {
|
||||
activities: [
|
||||
{
|
||||
content: '1.0.0 版本开源 <i class="el-icon-present"></i>',
|
||||
timestamp: '2021-05-07'
|
||||
}
|
||||
]
|
||||
}
|
||||
},
|
||||
mounted(){
|
||||
console.log("加载C2");
|
||||
mounted() {
|
||||
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
|
|
@ -44,14 +44,14 @@
|
|||
}, ],
|
||||
series: [{
|
||||
name: '支出',
|
||||
barWidth: '20%',
|
||||
barWidth: '15px',
|
||||
type: 'bar',
|
||||
data: [5, 20, 36, 10, 10],
|
||||
},
|
||||
{
|
||||
name: '收入',
|
||||
type: 'bar',
|
||||
barWidth: '20%',
|
||||
barWidth: '15px',
|
||||
data: [15, 20, 16, 20, 30],
|
||||
},
|
||||
],
|
||||
|
|
|
|||
|
|
@ -120,10 +120,10 @@
|
|||
copmsList: [
|
||||
[
|
||||
{ title: "模块1", com: 'C1' },
|
||||
{ title: "模块2", com: 'C2' }
|
||||
{ title: "模块3", com: 'C3' }
|
||||
],
|
||||
[
|
||||
{ title: "模块3", com: 'C3' }
|
||||
{ title: "模块2", com: 'C2' }
|
||||
],
|
||||
[
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue