26 lines
272 B
Vue
26 lines
272 B
Vue
<template>
|
|
<view>
|
|
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data() {
|
|
return {
|
|
|
|
};
|
|
},
|
|
created() {
|
|
console.log(this.$Route.query.id)
|
|
uni.setNavigationBarTitle({
|
|
title: '服务协议'
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
|
|
</style>
|