28010de0
chenbiao
add 发票申领 发票填充
|
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
|
<template>
<view>
<view class="elec-content">
<view class="elec-card bg-white">
<view class="elec-card-left float-left">
<view class="elec-card-msg">黄石肯特科技发展有限公司</view>
<view class="elec-card-msg">折扣券</view>
<view class="elec-card-msg">万达车场8折折扣券</view>
<view class="elec-card-msg">¥5元/张 X 15张</view>
</view>
<view class="elec-card-right float-right">
<view class="elec-card-text">
75.00元
</view>
</view>
</view>
<view class="elec-card bg-white">
<view class="elec-card-left float-left">
<view class="elec-card-msg">黄石肯特科技发展有限公司</view>
<view class="elec-card-msg">折扣券</view>
<view class="elec-card-msg">万达车场8折折扣券</view>
<view class="elec-card-msg">¥5元/张 X 15张</view>
</view>
<view class="elec-card-right float-right">
<view class="elec-card-text">
75.00元
</view>
</view>
</view>
</view>
</view>
</template>
<script>
export default {
data() {
return {
}
},
methods: {
}
}
</script>
<style lang="scss">
.elec-content {
width: 100%;
height: 100vh;
}
.elec-card {
width: 100%;
height: 200upx;
padding: 22upx 30upx;
line-height: 32upx;
border-bottom: 1px solid #e5e5e5;
}
.elec-card-left {
width: 70%;
height: 200upx;
}
.elec-card-right {
width: 30%;
height: 200upx;
line-height: 200upx;
}
.elec-card-msg {
line-height: 50upx;
color: rgba(0, 0, 0, .7);
}
.elec-card-text {
font-size: 32upx;
font-weight: bold;
}
</style>
|