Files
dvcp_v2_wxcp_app/src/apps/AppIntegralExchange/orderForm.vue
shijingjing 71b93d1144 我的订单
2022-11-23 09:57:26 +08:00

35 lines
419 B
Vue

<template>
<div class="orderForm">
<div class="card">
</div>
</div>
</template>
<script>
export default {
name: 'orderForm',
data() {
return {
}
},
onShow() {
document.title = '提交订单'
},
methods: {
}
}
</script>
<style lang="scss" scoped>
.orderForm {
padding: 32px;
box-sizing: border-box;
.card {
background: #FFFFFF;
border-radius: 32px;
}
}
</style>