statisticalReport.vue 284 B

1234567891011121314151617181920212223242526
  1. <!-- 统计报表 -->
  2. <template>
  3. <view class="report">
  4. </view>
  5. </template>
  6. <script>
  7. export default {
  8. data() {
  9. return {
  10. }
  11. },
  12. methods: {
  13. }
  14. }
  15. </script>
  16. <style lang="scss">
  17. page {
  18. background-color: #1767F2;
  19. min-height: calc(100vh - 44px);
  20. }
  21. </style>