| 1234567891011121314151617181920212223242526 |
- <template>
- <view class="container">
- <view class="">工单管理</view>
- <Recording />
- </view>
- </template>
- <script>
- import Recording from '../components/recording.vue'
- export default {
- components: {
- Recording
- },
- data() {
- return {}
- }
- }
- </script>
- <style lang="scss" scoped>
- .container {
- width: 100vw;
- height: calc(100vh - 102rpx);
- background-color: salmon;
- }
- </style>
|