You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

33 lines
553 B

<template>
<div>
<div class="inner service-box">
<div style="margin-bottom: 40px">简介</div>
<div>
<a-button>直接申请</a-button>
<a-button type="primary">加入购物车</a-button>
</div>
</div>
</div>
</template>
<script>
export default {
name: 'ServiceDet',
data() {
return {};
},
created() {
console.log(this.$route.params.id);
},
};
</script>
<style lang="stylus" scoped>
.service-box {
margin: 60px auto;
min-height: 400px;
padding: 20px;
background: #fff;
}
</style>