123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180 |
- <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">当前余额(元):{{obj.squirrel_money}}</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="./distriBution">
- <image src="../static/images/icon_2.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>{{item.name}}</view>
- </navigator>
- </block>
- </view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- obj:{},
- power_list:[]
- }
- },
- onLoad(e) {
-
- let col = this.$store.state.management_list_store;
-
- let { list } = getData(col,e.sid,e.id);
- this.power_list = list;
-
-
- function getData(col,sid,id) {
- return col.find(it => it.id == sid).list.find(item=> item.id == id)
- }
- },
-
- onShow(){
- this.http()
- },
-
- methods: {
- http() {
- this.request({
- url: "Smdcshop/store_user_info",
- data: {
- id: uni.getStorageSync("admin_id"),
- },
- }).then(res => {
- console.log(res, "res")
- if (res.code === '200') {
- this.obj = res.data;
- }
- }).catch((res) => {});
- },
- }
- }
- </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>
|