添加图标

This commit is contained in:
仲么了
2023-01-16 10:52:17 +08:00
parent 25482cb612
commit 6c164907db
12 changed files with 139 additions and 3 deletions

25
pages/home/taskReport.vue Normal file
View File

@@ -0,0 +1,25 @@
<template>
<Rc-page :loading='loading'>
<view slot='body'>
<view class='index'>
报表任务
</view>
</view>
</Rc-page>
</template>
<script>
export default {
data () {
return {
loading: false
}
},
methods: {
}
}
</script>
<style lang='scss'>
.index {
padding: 34rpx;
}
</style>