12345678910111213141516171819202122232425262728 |
- <template>
- <transition name="fade">
- <router-view></router-view>
- </transition>
- </template>
- <script>
- export default {
- }
- </script>
- <style>
- .dialog-footer{
- position: fixed;
- right: 36px;
- top: 120px;
- z-index: 999;
- }
- .my-title{
- font-size: 18px;
- padding-bottom: 20px;
- }
- .flow_region{
- width: 100% !important;
- height: 100% !important;
- margin: 0 !important;
- }
- </style>
|