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.
36 lines
769 B
36 lines
769 B
<template>
|
|
<view class="fixed-button">
|
|
<button class="fb-btn">取消</button>
|
|
<button class="fb-btn">提交</button>
|
|
</view>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
.fixed-button{
|
|
position: fixed;
|
|
left: 0;
|
|
bottom: 0;
|
|
padding: 10upx 20upx;
|
|
width: 100%;
|
|
@include ctf(center);
|
|
.fb-btn{
|
|
margin: 0 20upx;
|
|
width: 240upx;
|
|
text-align: center;
|
|
border: 2upx solid $mColor;
|
|
border-radius: 44upx;
|
|
background: #fff;
|
|
@include flcw(32upx, 88upx, $mColor);
|
|
&+.fb-btn{
|
|
background: $mColor;
|
|
color: #fff;
|
|
}
|
|
}
|
|
}
|
|
</style>
|