123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <template>
- <div class='jf-inner' style='width:100%;overflow:hidden'>
- <rotation size='width' :rotationImg='tableImg' :type='3'></rotation>
- </div>
- </template>
- <script>
- // import Select from '@/components/Select/Select.vue'
- import { Select } from 'meri-design'
- export default {
- props: ['tableImg', 'loading'],
- data() {
- return {}
- },
- components: { Select },
- methods: {}
- }
- </script>
- <style lang="less" scoped>
- .jf-inner {
- width: 100%;
- height: 700px;
- overflow: hidden;
- margin: 0 auto;
- margin-top: 8px;
- }
- </style>
- <style lang="less">
- .compute-item {
- .compute-center {
- display: flex;
- align-items: center;
- margin-bottom: 12px;
- }
- .foot {
- height: 32px;
- display: flex;
- justify-content: flex-end;
- margin-top: 28px;
- }
- }
- </style>
|