management.vue 383 B

1234567891011121314151617181920212223242526
  1. <template>
  2. <view class="container">
  3. <view class="">工单管理</view>
  4. <Recording />
  5. </view>
  6. </template>
  7. <script>
  8. import Recording from '../components/recording.vue'
  9. export default {
  10. components: {
  11. Recording
  12. },
  13. data() {
  14. return {}
  15. }
  16. }
  17. </script>
  18. <style lang="scss" scoped>
  19. .container {
  20. width: 100vw;
  21. height: calc(100vh - 102rpx);
  22. background-color: salmon;
  23. }
  24. </style>