| 123456789101112131415161718192021222324252627 |
- <template>
- <view class="container">
- <view class="">待分配单</view>
- <Recording2 />
- </view>
- </template>
- <script>
- import Recording2 from '../components/recording2.vue'
- export default {
- components: {
- Recording2
- },
- data() {
- return {}
- },
- mounted() {},
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: calc(100vh - 102rpx);
- }
- </style>
|