You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.3 KiB
75 lines
1.3 KiB
12 months ago
|
<style lang="less" scoped>
|
||
|
.container{
|
||
|
min-height: 100%;
|
||
|
background:#f6f6f6;
|
||
|
padding-top:30rpx;
|
||
|
.card{
|
||
|
margin-top:0;
|
||
|
._title{
|
||
|
color:#10C176;
|
||
|
font-size:32rpx;
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
&:before{
|
||
|
content:"";
|
||
|
height:32rpx;
|
||
|
width:8rpx;
|
||
|
border-radius: 10rpx;
|
||
|
background:#10C176;
|
||
|
margin-right:15rpx;
|
||
|
}
|
||
|
}
|
||
|
.content{
|
||
|
margin-top:25rpx;
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
margin-right:-70rpx;
|
||
|
min-height: 700rpx;
|
||
|
&>view{
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: center;
|
||
|
margin-right:70rpx;
|
||
|
image{
|
||
|
width:72rpx;
|
||
|
height:72rpx;
|
||
|
margin-bottom:6rpx;
|
||
|
}
|
||
|
.name{
|
||
|
font-size:20rpx;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</style>
|
||
|
<template>
|
||
|
<view class="container">
|
||
|
<view class="card">
|
||
|
<view class="_title">所有应用</view>
|
||
|
<view class="content">
|
||
|
<view>
|
||
|
<image src="/static/patrolGarden/inventory.svg"/>
|
||
|
<text class="name">库存</text>
|
||
|
</view>
|
||
|
<view>
|
||
|
<image src="/static/patrolGarden/procure.svg"/>
|
||
|
<text class="name">采购</text>
|
||
|
</view>
|
||
|
<view>
|
||
|
<image src="/static/patrolGarden/tour.svg"/>
|
||
|
<text class="name">巡园</text>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</view>
|
||
|
</template>
|
||
|
<script>
|
||
|
export default {
|
||
|
data(){
|
||
|
return{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|