orderCard.vue
348 Bytes
<template>
<view class="card">
</view>
</template>
<script>
export default {
data() {
return {
};
}
}
</script>
<style lang="scss">
.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;
}
</style>