quanyawei
2024-09-06 60e16bd5406c4cbdf61bf20a50e8e1b49a45b2aa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<template>
    <div class="toolbar" :style="toolbarStyle">
        <div class="left">
            <slot name="extra"></slot>
        </div>
        <div class="right">
            <slot name ="children"></slot>
        </div>
    </div>
</template>
 
<style lang="less" scoped>
.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;
 
  &:after {
    content: "";
    display: block;
    clear: both;
  }
 
  .left {
    float: left;
  }
 
  .right {
    float: right;
  }
 
  button + button {
    margin-left: 8px;
  }
}
</style>
 
<script  lang="ts">
import { Component, Prop, Vue } from 'vue-property-decorator';
 
@Component({})
export default class FooterToolbar extends Vue {
  @Prop({ type: Object, default() {
    return {};
  }})
  private toolbarStyle!: any;
}
</script>