|
|
@@ -1,11 +1,30 @@
|
|
1
|
|
-<script lang="ts" setup>
|
|
2
|
|
-
|
|
3
|
|
-</script>
|
|
4
|
|
-
|
|
5
|
1
|
<template>
|
|
6
|
|
- <div>Banben</div>
|
|
|
2
|
+ <ContentWrap>
|
|
|
3
|
+ <el-timeline>
|
|
|
4
|
+ <el-timeline-item
|
|
|
5
|
+
|
|
|
6
|
+ v-for="(item, index) in activities" :key="index" :icon="item.icon" :timestamp="item.timestamp"
|
|
|
7
|
+ :type="item.type" placement="top">
|
|
|
8
|
+ <el-card shadow="never" style="background: rgb(244, 246, 250)">
|
|
|
9
|
+ <h2 style="margin: 4px 0px 8px 0px">版本号: {{ item.version }}</h2>
|
|
|
10
|
+ <p v-for="(text, i) in item.content" :key="i" style="margin: 0px; font-size: 14px;line-height: 30px">
|
|
|
11
|
+ <span> {{ i + 1 + '. ' + text.item }}</span>
|
|
|
12
|
+ </p>
|
|
|
13
|
+ </el-card>
|
|
|
14
|
+ </el-timeline-item>
|
|
|
15
|
+ </el-timeline>
|
|
|
16
|
+ </ContentWrap>
|
|
7
|
17
|
</template>
|
|
8
|
18
|
|
|
9
|
|
-<style lang="scss" scoped>
|
|
|
19
|
+<script setup>
|
|
|
20
|
+import {data} from './data.js'
|
|
|
21
|
+
|
|
|
22
|
+const activities = data
|
|
|
23
|
+</script>
|
|
10
|
24
|
|
|
|
25
|
+<style lang="scss" scoped>
|
|
|
26
|
+::v-deep .el-timeline-item__timestamp {
|
|
|
27
|
+ color: rgba(0, 0, 0, 0.53);
|
|
|
28
|
+ font-size: 13px;
|
|
|
29
|
+}
|
|
11
|
30
|
</style>
|