123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- <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">
- <block v-for="(item,index) in power_list" :key='index'>
- <navigator class="table-td" :url="item.address">
- <image :src="item.image"></image>
- <view>{{item.name}}</view>
- </navigator>
- </block>
-
- <!-- <navigator class="table-td" url="../order/juheOrder?type=1">
- <image src="../static/images/icon_2.png"></image>
- <view class="">订单列表</view>
- </navigator>
- <navigator class="table-td" url="../order/delivery?type=1">
- <image src="../static/images/ps.png"></image>
- <view class="">聚合配送费记录</view>
- </navigator>
-
- <navigator class="table-td" url="/saomaDiancan/orderList/orderList">
- <image src="/static/images/gn_icon_3.png"></image>
- <view class="">小程序订单</view>
- </navigator>
-
- <navigator class="table-td" url="/saomaDiancan/order/refundRecord">
- <image src="/static/images/gn_icon_2.png"></image>
- <view class="">退款记录</view>
- </navigator> -->
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- power_list:[],
- }
- },
- onLoad(e) {
- 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>
|