9c71fb38
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
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
|
<template>
<view>
<view class="uni-list">
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
开票类型:
</view>
<view class="uni-list-cell-db">
增值税电子普通发票
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
抬头类型:
</view>
<view class="uni-list-cell-db">
公司
</view>
</view>
</view>
<uni-section title="发票详情" type="line">
<view class="uni-list">
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
<text class="is-required">*</text>发票抬头:
</view>
<view class="uni-list-cell-db">
中兴智能交通股份有限公司
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
<text class="is-required">*</text>纳税人识别号:
</view>
<view class="uni-list-cell-db">
123333
</view>
</view>
<view class="uni-list-cell">
<view class="uni-list-cell-left jy-fix-height34">
注册地址:
</view>
<view class="uni-list-cell-db">
北京市海淀区玲珑路中关村产业园
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
注册电话:
</view>
<view class="uni-list-cell-db">
123
</view>
</view>
<view class="uni-list-cell">
<view class="uni-list-cell-left jy-fix-height34">
开户行:
</view>
<view class="uni-list-cell-db uni-ellipsis-2">
北京市海淀区玲珑路中关村产业园北京市海淀区玲珑路中关村产业园
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
开户账号:
</view>
<view class="uni-list-cell-db">
1123村产业园
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
<text class="is-required">*</text>电子邮箱:
</view>
<view class="uni-list-cell-db">
1123@qq.com
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left">
备注:
</view>
<view class="uni-list-cell-db">
备注
</view>
</view>
<view class="uni-list-cell jy-fix-height34">
<view class="uni-list-cell-left fontweightBold">
开票金额:
</view>
<view class="uni-list-cell-db fontweightBold">
5000元
</view>
</view>
</view>
</uni-section>
<uni-section title="提示:" type="line">
<view class="paddinglr30 recordCon">
1.若所选开票记录分属多家运营公司,您会收到多张电子发票;
</view>
<view class="paddinglr30 recordCon">
2.根据国家发票管理办法,请您提供真实有效的开票信息,感谢您的配合。
</view>
</uni-section>
<view class="margin-top-30">
<button type="primary" class="tel-btn">确认</button>
</view>
</view>
</template>
<script>
export default {
data() {
return {
// 基础表单数据
baseFormData: {
name: '',
age: '',
introduction: '',
sex: 2,
hobby: [5],
datetimesingle: 1627529992399
},
}
}
}
</script>
<style lang="scss">
.tel-btn {
width: 90%;
margin: 30upx auto;
}
</style>
|