1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <!--
- * @Author: zhangyu
- * @Date: 2020-05-08 16:47:45
- * @Info:
- * @LastEditTime: 2020-05-08 18:38:11
- -->
- <template>
- <div class="saga-toolbar-box">
- <div class="saga-toolbar-main">
- <brand-tool></brand-tool>
- </div>
- </div>
- </template>
- <script>
- import brandTool from "@/components/brand/brandTool"
- export default {
- components: {
- brandTool
- },
- created() {},
- mounted() {},
- data() {
- return {
- }
- },
- methods: {}
- }
- </script>
- <style lang="scss" scoped>
- .saga-toolbar-box {
- position: fixed;
- top: 48px;
- left: 0;
- width: 100%;
- height: 70px;
- background: #fff;
- .saga-toolbar-main {
- width: 1200px;
- height: 100%;
- margin: auto;
- }
- }
- </style>
|