Blame view

pages/reflect/reflect.vue 418 Bytes
bb09ac81   wangming   DEV初始化
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
  <template>
  	<view>
  		<image src="../../static/beijing.png" class="background" mode=""></image>
  		提现金额
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
  				
  			}
  		},
  		methods: {
  			
  		}
  	}
  </script>
  
  <style>
  /* 背景图片 */
  		.background {
  		width: 100%;
  		height: 100%;
  		position:fixed; 
  		/* border-radius:50% 50% 0 0 ; */
  		background-size:100% 100%;
  		z-index: -1;
  		}
  </style>