25 lines
389 B
Vue
25 lines
389 B
Vue
|
|
<template>
|
||
|
|
<Cn-page :loading='loading'>
|
||
|
|
<view slot='body'>
|
||
|
|
<view class='index'>
|
||
|
|
说明书pdf
|
||
|
|
</view>
|
||
|
|
</view>
|
||
|
|
</Cn-page>
|
||
|
|
</template>
|
||
|
|
<script>
|
||
|
|
export default {
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
loading: false
|
||
|
|
}
|
||
|
|
},
|
||
|
|
methods: {
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<style lang='scss'>
|
||
|
|
.index {
|
||
|
|
padding: 34rpx;
|
||
|
|
}
|
||
|
|
</style>
|