waitAllot.vue 389 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <view class="container">
  3. <view class="">待分配单</view>
  4. <Recording2 />
  5. </view>
  6. </template>
  7. <script>
  8. import Recording2 from '../components/recording2.vue'
  9. export default {
  10. components: {
  11. Recording2
  12. },
  13. data() {
  14. return {}
  15. },
  16. mounted() {},
  17. methods: {}
  18. }
  19. </script>
  20. <style lang="scss" scoped>
  21. .container {
  22. width: 100vw;
  23. height: calc(100vh - 102rpx);
  24. }
  25. </style>