123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384 |
- <template>
- <view class="team">
- <text class="team-title">团长功能</text>
- <view class="function-team">
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/319.png" mode=""></image>
- <view class="characters">平台商品库</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src='../../../static/mine/318.png' mode=""></image>
- <view class="characters">商品管理</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/315.png" mode=""></image>
- <view class="characters">订单管理</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/320.png" mode=""></image>
- <view class="characters">售后管理</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/316.png" mode=""></image>
- <view class="characters">供应链商品</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" style="padding: 0 15px;" src="../../../static/mine/pc.png" mode=""></image>
- <view class="characters">PC端</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/317.png" mode=""></image>
- <view class="characters">联系客服</view>
- </view>
- <view class="icon-center">
- <image class="form-icon" src="../../../static/mine/321.png" mode=""></image>
- <view class="characters">账号设置</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- </script>
- <style lang="scss">
- .team{
- height: 170px;
- width: 100%;
- background-color: #fff;
- border-radius: 10px;
- margin-top: 10px;
- padding-top: 14px;
- .team-title{
- color: #222;
- font-size: 14px;
- font-weight: 600;
- display: block;
- margin-left: 10px;
- }
- .function-team{
- display: flex;
- flex-wrap: wrap;
- justify-content: space-around;
- align-items: center;
- .icon-center{
- width: 18%;
- margin-top: 18px;
- display: flex;
- flex-wrap: wrap;
- padding: 0 10px;
- justify-content: center;
- }
- .form-icon{
- width: 24px;
- height: 24px;
- }
-
- .characters{
- color: #202020;
- font-size: 12px;
- margin-top: 10px;
- }
- }
- }
- </style>
|