systemTip.vue 875 字节
<template>
	<view class="systemTip">
		<view v-for="(item, index) in systemInfo" :key="index" class="sytem_row">
			<u-notice-bar :text="item" :fontSize="12" bgColor="transparent" :color="ThemeColor.PrimaryColor"></u-notice-bar>
		</view>
	</view>
</template>

<script>
	import ThemeColor from '@/utils/themeColor';
	export default{
		data(){
			return {
				ThemeColor,
				systemInfo: [
					'(CLOOL发起拼场)2022-12-26 14:23:45',
					'(奇犽加入拼场并成功支付)2022-12-26 14:23:45',
					'(奇犽加入拼场并成功支付)2022-12-26 14:23:45'
				]
			}
		}
	}
</script>

<style scoped lang="scss">
	.systemTip{
		display: flex;
		flex-direction: column;
		gap: 20rpx;
		background: rgba(255,161,0, .16);
		border-radius: 12rpx;
		margin: 0 30rpx;
		padding: 16rpx 20rpx;
		.sytem_row{
			font-size: 24rpx;
			line-height: 36rpx;
		}
	}
</style>