Blame view

src/pages/myOrder/orderCard.vue 356 Bytes
72a08fa45   BigBoss   icon
1
  <template>
987972474   BigBoss   订单页card组件提取
2
  	<view class="card">
72a08fa45   BigBoss   icon
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  		
  	</view>
  </template>
  
  <script>
  	export default {
  		data() {
  			return {
  				
  			};
  		}
  	}
  </script>
  
  <style lang="scss">
987972474   BigBoss   订单页card组件提取
18
19
20
21
22
23
24
25
26
  	.card{
  		width: 670rpx;
  		height: 478rpx;
  		background: #FFFFFF;
  		box-shadow: 0 0 10px 0 rgba(177,128,128,0.06);
  		border-radius: 8px;
  		border-radius: 8px;
  		margin-top: 20rpx;
  	}
72a08fa45   BigBoss   icon
27
  </style>