12345678910111213141516171819202122232425262728293031323334353637 |
- <template>
- <div class="lists-filter">
- <Layout :style="{background:'none'}">
- <Content>
- <Form inline>
- <slot></slot>
- </Form>
- </Content>
- <Sider hide-trigger :style="{background:'none'}" :width="rightWidth" style="text-align: right">
- <slot name="right"></slot>
- </Sider>
- </Layout>
- </div>
- </template>
- <script>
- export default {
- name: "pageBar",
- props: {
- rightWidth: {
- type: [Number, String],
- default: 162
- },
- },
- }
- </script>
- <style>
- .lists-filter .ivu-layout.ivu-layout-has-sider>.ivu-layout, .lists-filter .ivu-layout.ivu-layout-has-sider>.ivu-layout-content{
- overflow-x: visible;
- display: flex;
- align-items: center;
- }
- .lists-filter .ivu-form-item{
- margin-bottom: 10px;
- }
- </style>
|