pageBar.vue 949 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <template>
  2. <div class="lists-filter">
  3. <Layout :style="{background:'none'}">
  4. <Content>
  5. <Form inline>
  6. <slot></slot>
  7. </Form>
  8. </Content>
  9. <Sider hide-trigger :style="{background:'none'}" :width="rightWidth" style="text-align: right">
  10. <slot name="right"></slot>
  11. </Sider>
  12. </Layout>
  13. </div>
  14. </template>
  15. <script>
  16. export default {
  17. name: "pageBar",
  18. props: {
  19. rightWidth: {
  20. type: [Number, String],
  21. default: 162
  22. },
  23. },
  24. }
  25. </script>
  26. <style>
  27. .lists-filter .ivu-layout.ivu-layout-has-sider>.ivu-layout, .lists-filter .ivu-layout.ivu-layout-has-sider>.ivu-layout-content{
  28. overflow-x: visible;
  29. display: flex;
  30. align-items: center;
  31. }
  32. .lists-filter .ivu-form-item{
  33. margin-bottom: 10px;
  34. }
  35. </style>