123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- <template>
- <view class="content">
- <view class="title">常用功能</view>
- <view class="list">
- <view class="item" v-for="(item,index) in 7" :key="index">
- <view class="icon">
- <image src="./icon/icon.png" mode=""></image>
- </view>
- <view class="name">通知公告</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- name:"t-i-common",
- data() {
- return {
-
- };
- }
- }
- </script>
- <style lang="scss">
- .content{
- margin-bottom: 30rpx;
- background-color: #FFFFFF;
-
- box-sizing: border-box;
- padding: 50rpx 25rpx;
- }
- .title{
- font-size: 36rpx;
- }
- .list{
- width: 700rpx;
- overflow: hidden;
- .item{
- margin-top: 30rpx;
- margin-right: 25rpx;
- width: 120rpx;
-
- float: left;
- .icon{
- width: 120rpx;
- text-align: center;
- image{
- width: 78rpx;
- height: 78rpx;
- }
- }
- .name{
- text-align: center;
- font-size: 26rpx;
- }
- }
- .item:nth-child(5n){
- margin-right: 0;
- }
- }
- </style>
|