my-invoice.vue
611 字节
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
<template>
<view class="content">
<view class="imgBox">
<image src="../../static/fapiaonoData.png" mode=""></image>
</view>
<view class="text">
本模块尚未开通,请联系匠心培训 机构工作人员!
</view>
</view>
</template>
<script>
</script>
<style>
.content {
min-height: 100vh;
padding-top: 162rpx;
box-sizing: border-box;
}
.imgBox {
width: 368rpx;
height: 368rpx;
margin: 0 auto;
}
.imgBox image {
width: 368rpx;
height: 368rpx;
}
.text {
width: 520rpx;
margin: 0 auto;
color: #969799;
font-size: 34rpx;
text-align: center;
}
</style>