12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <template>
- <view class="main-block">
- <view class="page-block">
- <view class="btn-list">
- <block v-for="(item,index) in power_list" :key='index'>
- <navigator
- :url="item.address" class="item flex flex-col flex-center">
- <image :src="item.image" class="icon-img" mode="aspectFit"></image>
- <view class="name">{{item.name}}</view>
- </navigator>
- <navigator v-if="item.id==256||item.name=='门店设置'" :url="`./mandatory?store_id=${store_id}`"
- class="item flex flex-col flex-center">
- <image src="./static/images/icon_8.png" class="icon-img" mode="aspectFit"></image>
- <view class="name">必选商品设置</view>
- </navigator>
- </block>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- store_id: "",
- power_list:[]
- }
- },
- onLoad(e) {
- let { list } = this.$store.state.management_list.find((v, i) => v.id == e.id)
- this.power_list = list
- this.store_id = uni.getStorageSync("store_id");
- },
- }
- </script>
- <style>
-
- .main-block {
- padding: 50rpx 25rpx 0;
- }
-
- .btn-list {
- display: -webkit-box;
- display: -webkit-flex;
- display: flex;
- -webkit-box-orient: horizontal;
- -webkit-box-direction: normal;
- -webkit-flex-flow: row wrap;
- flex-flow: row wrap;
- -webkit-box-pack: start;
- -webkit-justify-content: flex-start;
- justify-content: flex-start;
- -webkit-align-content: flex-start;
- align-content: flex-start;
- }
-
- .page-block {
- width: 700rpx;
- background-color: #fff;
- box-sizing: border-box;
- border-radius: 8rpx;
- margin-bottom: 30rpx;
-
- }
-
- .btn-list .item {
- width: 33.33%;
- height: 145rpx;
- }
-
- .btn-list .item .icon-img {
- display: block;
- width: 48rpx;
- height: 48rpx;
- }
-
- .btn-list .item .name {
- font-size: 24rpx;
- line-height: 33rpx;
- margin-top: 16rpx;
- color: #666;
- }
- </style>
|