Blame view

ant-design-vue-jeecg/src/components/tools/FooterToolBar.vue 532 Bytes
肖超群 authored
1
2
3
4
5
6
7
8
9
10
11
12
<template>
  <div class="toolbar">
    <div style="float: left">
      <slot name="extra"></slot>
    </div>
    <div style="float: right">
      <slot></slot>
    </div>
  </div>
</template>

<script>
肖超群 authored
13
14
15
export default {
  name: "FooterToolBar"
}
肖超群 authored
16
17
18
</script>

<style lang="less" scoped>
肖超群 authored
19
20
21
22
23
24
25
26
27
28
29
30
31
.toolbar {
  position: fixed;
  width: 100%;
  bottom: 0;
  right: 0;
  height: 56px;
  line-height: 56px;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.03);
  background: #fff;
  border-top: 1px solid #e8e8e8;
  padding: 0 24px;
  z-index: 9;
}
肖超群 authored
32
</style>