You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
697 B
33 lines
697 B
<template>
|
|
<view class="fixed-button">
|
|
<button class="fb-btn" hover-class="hover-active" @click="$emit('click')">新建</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.fixed-button{
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
width: 100%;
|
|
padding: 10upx 24upx;
|
|
@include isPd(10upx);
|
|
.fb-btn{
|
|
@include clearBtn;
|
|
text-align: center;
|
|
height: 112upx;
|
|
background: $mColor;
|
|
border-radius: 10upx;
|
|
@include flcw(32upx, 112upx, #fff, 500);
|
|
}
|
|
.hover-active{
|
|
opacity: .9;
|
|
}
|
|
}
|
|
</style>
|