snInfo.vue
3.79 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<template>
<div class="content">
<div class="logo">
<div>
<img style="width: 100%;height:100%" src="../../assets/huaheng.png" alt=""/>
</div>
</div>
<div class="top">
<div class="top-d">
<div class="top-d-w">
<label style="font-weight: 800;font-size:1vw ;margin-left: -68vw;color:#191970">货叉信息</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">设备类型:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">生产工厂:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">SN:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
</div>
</div>
<div class="header">
<div class="top-d">
<div class="top-d-w">
<label style="font-weight: 800;font-size:1vw ;margin-left: -68vw;color:#191970">客户信息</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">客户名称:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">交期要求:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
<div class="top-d-w">
<label style="font-weight: 600;font-size:1vw">合同编号:</label>
<label>dwdeqefwfewfefefefwefewfefwefef</label>
</div>
</div>
</div>
<!-- 表格 -->
<div class="center">我是表格</div>
<div class="bottom">
<div class="bottom-d">
<div style="height: 10%; ">安装视频</div>
<div style="height: 90%;margin-top:1vh;">
<video controls autoplay loop muted playsinlin
src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video>
</div>
</div>
<div class="bottom-d">
<div style="height: 10%; ">保养视频</div>
<div style="height: 90%;margin-top:1vh;">
<video controls autoplay loop muted playsinlin
src="http://clips.vorwaerts-gmbh.de/big_buck_bunny.mp4"></video>
</div>
</div>
</div>
</div>
</template>
<script>
export default {
data() {
return {}
},
}
</script>
<style lang="less" scoped>
.content {
width: 99.1%;
height: 100%;
border: 1px solid #fff;
margin: 0 auto;
background-color: #fff;
overflow: auto;
}
.logo {
height: 5%;
margin-top: 10px;
div {
width: 50%;
height: 100%;
text-align: center;
margin: 0 auto;
}
}
.top-d {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
margin: 1vh 0;
//border: 1px solid red;
.top-d-w {
height: 25%;
}
}
.top {
width: 95%;
height: 15%;
border: 1px solid #eee;
border-radius: 10px;
background: #f7f7f7;
text-align: center;
margin: 0 auto;
margin-top: 10px;
}
.header {
width: 95%;
height: 15%;
border: 1px solid #eee;
border-radius: 10px;
background: #f7f7f7;
text-align: center;
margin: 0 auto;
margin-top: 10px;
}
.center {
width: 95%;
height: 25%;
border: 1px solid #eee;
border-radius: 10px;
background: #f7f7f7;
text-align: center;
margin: 0 auto;
margin-top: 10px;
}
.bottom {
width: 95%;
height: 45%;
border: 1px solid #eee;
border-radius: 10px;
background: #f7f7f7;
text-align: center;
margin: 0 auto;
margin-top: 10px;
.bottom-d {
height: 50%;
}
video {
width: 97.5%;
height: 95%;
padding-left: 0.6vw;
padding-right: 0.6vw;
border-radius: 7px;
padding-top: 0.6vw;
object-fit: cover;
}
}
</style>