courtManage.vue
994 字节
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<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>