Files
dvcp_v2_wxcp_app/src/apps/AppIntegralExchange/orderForm.vue

35 lines
419 B
Vue
Raw Normal View History

2022-11-22 19:24:52 +08:00
<template>
<div class="orderForm">
2022-11-23 09:57:26 +08:00
<div class="card">
2022-11-22 19:24:52 +08:00
2022-11-23 09:57:26 +08:00
</div>
2022-11-22 19:24:52 +08:00
</div>
</template>
<script>
export default {
name: 'orderForm',
data() {
return {
}
},
onShow() {
document.title = '提交订单'
},
2022-11-23 09:57:26 +08:00
methods: {
2022-11-22 19:24:52 +08:00
}
}
</script>
<style lang="scss" scoped>
.orderForm {
2022-11-23 09:57:26 +08:00
padding: 32px;
box-sizing: border-box;
.card {
background: #FFFFFF;
border-radius: 32px;
}
2022-11-22 19:24:52 +08:00
}
</style>