页面切图

This commit is contained in:
仲么了
2023-03-09 13:50:45 +08:00
parent 43419da4c7
commit b5892b275f
16 changed files with 282 additions and 29 deletions

25
pages/mine/database.vue Normal file
View File

@@ -0,0 +1,25 @@
<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>