suitFooter通用底部栏

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>

# 组件源码及综合示例参考

组件源码 (opens new window) 综合示例 (opens new window)