123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194 |
- <template>
- <view class="content">
- <view class="header">
- <image src="../../static/images/skm_fn_bg.png" mode="aspectFill" class="bg-img"></image>
- <view class="info-block flex-y-center">
- <view class="info">
- <view class="title">智慧经营管理</view>
- <view class="desc">手机管理方便又快捷</view>
- </view>
- </view>
- </view>
-
- <view class="content-row">
- <view class="setup flex-y-center ft32">
- 常用应用
- </view>
- <view class="table">
- <view class="table-tr">
-
- <!-- <navigator class="table-td" url="../partnerCenter/partnerCenter">
- <image src="../../static/images/icon_5.png" mode=""/>
- <view class="">合伙人设置</view>
- </navigator> -->
- <!--
- 暂时先去掉,有问题,下个版本修改
- <navigator class="table-td" url="../partnerList/add">
- <image src="../static/images/icon_3.png" mode=""></image>
- <view class="">新增合伙人</view>
- </navigator> -->
-
- <block v-for="(item,index) in power_list" :key='index'>
- <navigator class="table-td" :url="item.address">
- <image :src="item.image"></image>
- <view class="">{{item.name}}</view>
- </navigator>
- </block>
-
-
- <!--
- <navigator class="table-td" url="../partnerGrade/list">
- <image src="../../static/images/icon_3.png" mode=""></image>
- <view class="">合伙人等级</view>
- </navigator>
-
- <navigator class="table-td" url="../partnerList/index">
- <image src="../static/images/icon_2.png" mode=""></image>
- <view class="">合伙人</view>
- </navigator>
- <navigator class="table-td" url="../commission/index">
- <image src="../static/images/icon_4.png" mode=""></image>
- <view class="">佣金明细</view>
- </navigator>
-
-
- <navigator class="table-td" url="../TxDetail/TxDetail">
- <image src="../static/images/icon_5.png" mode=""></image>
- <view class="">提现明细</view>
- </navigator>
-
- <navigator class="table-td" url="../promotedMembers/membersList">
- <image src="../../static/images/icon_2.png" mode=""></image>
- <view class="">已推广的会员</view>
- </navigator> -->
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- power_list:[],
- }
- },
- onLoad(e) {
- this.sid=e.id;
- let { list } = this.$store.state.management_list_store.find((v, i) => v.id == e.id)
- this.power_list = list
- },
- methods: {
- }
- }
- </script>
- <style>
- .setup {
- width: 100%;
- height: 90rpx;
- opacity: 1;
- padding: 0 22rpx;
- }
- .table,
- .table div {
- margin: 0 auto;
- }
- .table {
- /* display: table; */
- width: 100%;
- border-collapse: collapse;
- box-sizing: border-box;
- }
- .table-tr {
- /* display: table-row; */
- /* height: 92rpx; */
- }
- .table-th {
- display: table-cell;
- font-weight: bold;
- border: 1rpx solid #FAFAFA;
- text-align: center;
- vertical-align: middle;
- }
- .table-td {
- display: inline-block;
- border: 1rpx solid #FAFAFA;
- text-align: center;
- vertical-align: middle;
- background: #fff;
- font-size: 27rpx;
- color: #666666;
- padding: 62rpx 0;
- width: 33.333%;
- }
- .table-td image {
- width: 50rpx;
- height: 50rpx;
- margin-bottom: 23rpx;
- }
- .header {
- width: 100%;
- height: 198rpx;
- position: relative;
- }
- .header .bg-img {
- display: block;
- position: absolute;
- left: 0;
- top: 0;
- z-index: 1;
- width: 100%;
- height: 198rpx;
- }
- .header .info-block {
- padding: 0 40rpx 0 48rpx;
- height: 198rpx;
- position: relative;
- z-index: 2;
- }
- .header .info-block .title {
- font-size: 36rpx;
- color: #fff;
- font-weight: 500;
- line-height: 50rpx;
- }
- .header .info-block .desc {
- font-size: 28rpx;
- font-weight: 500;
- color: #fff;
- line-height: 40rpx;
- margin-top: 8rpx;
- }
- .header .info-block .btn {
- width: 170rpx;
- height: 56rpx;
- border-radius: 28rpx;
- background-color: rgb(255, 255, 255);
- text-align: center;
- line-height: 52rpx;
- font-size: 28rpx;
- font-weight: 500;
- color: #3387FF;
- }
- </style>
|