| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 | <template>	<view>		<uni-section title="基本用法" type="line" padding>			<uni-steps :options="list1" :active="active" />		</uni-section>		<uni-section title="自定义图标" type="line" padding>			<uni-steps :options="list1" active-icon="checkbox" :active="active" />		</uni-section>		<uni-section title="自定义图标" type="line" padding>			<uni-steps :options="list1" active-icon="medal" :active="active" />		</uni-section>		<uni-section title="纵向排列" type="line" padding>			<uni-steps :options="list2" active-color="#007AFF" :active="active" direction="column" />		</uni-section>		<button type="primary" size="mini" style="margin: 30px 10px; width: 100px;" @click="change">改变状态</button>	</view></template><script>	export default {		components: {},		data() {			return {				active: 1,				list1: [{					title: '事件一'				}, {					title: '事件二'				}, {					title: '事件三'				}, {					title: '事件四'				}],				list2: [{					title: '买家下单',					desc: '2018-11-11'				}, {					title: '卖家发货',					desc: '2018-11-12'				}, {					title: '买家签收',					desc: '2018-11-13'				}, {					title: '交易完成',					desc: '2018-11-14'				}]			}		},		methods: {			change() {				if (this.active < this.list1.length - 1) {					this.active += 1				} else {					this.active = 0				}			}		}	}</script><style lang="scss">	.status-btn {		/* #ifndef APP-NVUE */		display: flex;		/* #endif */		flex-direction: row;		align-items: center;		justify-content: center;		height: 92rpx;		margin: 30rpx;		background-color: #007AFF;	}	.example-body {		/* #ifndef APP-NVUE */		display: block;		/* #endif */		padding: 15px;		flex-direction: row;	}</style>
 |