suitFooter通用底部栏
说明
1、通用栏底部组件,为了满足小程序开发时底部栏的样式统一 2、该组件在components公用组件中,可以在任意页面直接使用,不需要引入
# 使用
<template>
<view>
<suit-footer>
<view class="test">
<view style="width: 45%">
<u-button text="驳回"></u-button>
</view>
<view style="width: 45%">
<u-button text="通过" type="primary"></u-button>
</view>
</view>
</suit-footer>
</view>
</template>
<style scoped lang="scss">
.test {
width: 100%;
display: flex;
justify-content: space-between;
}
</style>