courtManage.vue 994 字节
<template>
	<view class="courtManage">
		<view class="cell_box" @click="goRouter('/pages_arenaControl/arenaControl/arenaControl?type=add')">
			<image style="width: 42rpx;" src="@/static/myImg/control.png" mode="widthFix"></image>
			<text class="col-3 f-28 m-l-20">门店管理</text>
		</view>
		<view class="cell_box" @click="goRouter('/pages_arenaControl/arenaControl/arenaControl?type=lock')">
			<image style="width: 42rpx;" src="@/static/myImg/lock.png" mode="widthFix"></image>
			<text class="col-3 f-28 m-l-20">预约锁定</text>
		</view>
	</view>
</template>

<script>
	export default {
		methods: {
			goRouter(path){
				uni.navigateTo({
					url: path
				})
			}
		}
	}
</script>

<style lang="scss" scoped>
.courtManage{
	padding: 20rpx 30rpx 0;
	min-height: 100vh;
	background-color: #F6F7FB;
	.cell_box{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 120rpx;
		background: #FFFFFF;
		border-radius: 12rpx;
		margin-bottom: 20rpx;
	}
}
</style>