1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192 |
- <template>
- <view class="main-block">
- <view class="page-block">
- <view class="btn-list">
-
- <navigator url="./index/index"
- class="item flex flex-col flex-center">
- <image src="../static/images/icon_2.png" class="icon-img" mode="aspectFit"></image>
- <view class="name">首页设置</view>
- </navigator>
- <navigator url="./audio/audio" class="item flex flex-col flex-center">
- <image src="../static/images/icon_15.png" class="icon-img" mode="aspectFit"></image>
- <view class="name">语音列表</view>
- </navigator>
- <navigator url="./swiper/swiper"
- class="item flex flex-col flex-center">
- <image src="../static/images/icon_9.png" class="icon-img" mode="aspectFit"></image>
- <view class="name">轮播图</view>
- </navigator>
-
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {
- store_id:"",
- type:2,
- }
- },
- onLoad(options) {
- this.type=options.type;
- this.store_id = options.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>
|