35 lines
419 B
Vue
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> |