1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<template>
<div>
<div class="information-container flex-1-dhc" style="overflow-x: auto">
<van-steps direction="vertical" :active="active">
<van-step>
<div class="area">
<div>
<div style="margin-left: 10%">
<div style="font-weight: 400; width: 20%">八月</div>
<div style="font-size: 18px; width: 20%">18</div>
</div>
<div style="margin-top: -10%; margin-left: 19%; padding: 5% 5%">公司成立</div>
</div>
</div>
</van-step>
<van-step>
<div class="area">
<div>
<div style="margin-left: 10%">
<div style="font-weight: 400; width: 20%">九月</div>
<div style="font-size: 18px; width: 20%">13</div>
</div>
<div style="margin-top: -10%; margin-left: 19%; padding: 5% 5%">获得国家安全可靠计算机信息系统集成重点企业证书(特一级资质)</div>
</div>
</div>
</van-step>
</van-steps>
</div>
</div>
</template>
<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import { Step, Steps } from "vant";
/**
* @Description:企业时光轴
* @author pd
* @date 2021-11-06 16:42:29
*/
Vue.use(Step);
Vue.use(Steps);
@Component({
name: "EnterpriseTimeline",
})
export default class EnterpriseTimeline extends Vue {
active: any = 1;
}
</script>
<style scoped>
.shape {
/*
border-width: 1 px;
*/
position: absolute;
left: 5%;
top: 14%;
width: 0.6%;
height: 2.5%;
background: inherit;
background-color: rgba(2, 167, 240, 1);
border: none;
border-radius: 1%;
-moz-box-shadow: none;
-webkit-box-shadow: none;
box-shadow: none;
}
.area {
border-width: 0px;
/* position: absolute;
left: 0 px;
top: 0 px;*/
width: 100%;
height: auto;
background: inherit;
background-color: rgba(255, 255, 255, 1);
border: none;
border-radius: 2%;
-moz-box-shadow: 0px 1px 3px rgba(204, 204, 204, 1);
-webkit-box-shadow: 0px 1px 3px rgb(204 204 204);
box-shadow: 0px 1px 3px rgb(204 204 204);
}
</style>