Blame view

pages/invoiceRecord/invoiceRecord.vue 1.21 KB
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
  <template>
  	<view>
  		<view class="record-content">
  			<view class="bg-white border-bottom-1 pos-rel" @click="payClick">
  				<view class="recordCon uni-list-cell-pd">
  					<text class="color-black">余额充值</text>
  					<text>已发送电子邮箱</text>
  				</view>
  				<view class="recordCon uni-list-cell-pd">
  					<text>2020-10-01 01:01:01</text>
  					<text>¥3.00</text>
  				</view>
  				<view class="uni-icon pos-abs icon-arrowright uni-icon-arrowright">
  				</view>
  			</view>
  			<view class="bg-white pos-rel" @click="payClick">
  				<view class="recordCon uni-list-cell-pd">
  					<text class="color-black">余额充值</text>
  					<text>已发送电子邮箱</text>
  				</view>
  				<view class="recordCon uni-list-cell-pd">
  					<text>2020-10-01 01:01:01</text>
  					<text>¥3.00</text>
  				</view>
  				<view class="uni-icon pos-abs icon-arrowright uni-icon-arrowright">
  				</view>
  			</view>
  
  		</view>
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
  
  			}
  		},
  		methods: {
  			payClick() {
  				uni.navigateTo({
  					url: '../invoiceForm/invoiceForm'
  
  				});
  			},
  		}
  	}
  </script>
  
  <style lang="scss">
  	.icon-arrowright {
  		color: #bbb;
  		font-size: 20px;
  		right: 2upx;
  		top: 60upx;
  	}
  </style>