123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129 |
- <template>
- <view class="container body">
- <view class="info">
- <scroll-view scroll-y="true" class="scroll-view">
- <view class="list-scroll-view">
- <slot></slot>
- </view>
- </scroll-view>
- </view>
- <view class="foot" v-if="frameStyle&&frameStyle.useBar||false">
- <view class="list" v-for="(item,index) in barList" :key="index" @tap="toPath(index,item)">
- <image class="image" :src="item.normal" mode="" v-if="active!=index"></image>
- <image class="image" :src="item.active" mode="" v-else></image>
- <view class="name" :style="{color:active==index?frameStyle.barActive||'#FB1438':''}">{{item.name}}</view>
- </view>
- </view>
- </view>
- </template>
- <script>
- export default {
- props: {
- frameStyle: {
- type: Object,
- },
- },
- data() {
- return {
- active: 0,
- barList: [{
- name: '首页',
- route: 'pages/home/index',
- normal: require('@/static/shouye.png'),
- active: require('@/static/shouye_1.png')
- },
- {
- name: '微店',
- route: 'pages/store/index',
- normal: require('@/static/store.png'),
- active: require('@/static/store_1.png')
- },
- {
- name: '周边',
- route: 'pages/week/index',
- normal: require('@/static/week.png'),
- active: require('@/static/week_1.png')
- },
- {
- name: '购物车',
- route: 'pages/market/index',
- normal: require('@/static/market.png'),
- active: require('@/static/market_1.png')
- },
- {
- name: '我的',
- route: 'pages/my/index',
- normal: require('@/static/my.png'),
- active: require('@/static/my_1.png')
- },
- ]
- };
- },
- created: function() {
- const that = this;
- that.search()
- },
- onShow: function() {},
- methods: {
- search() {
- const that = this;
- let pages = getCurrentPages();
- let currentPage = pages[pages.length - 1];
- let index = that.barList.findIndex((i) => i.route == currentPage.route);
- if (index) that.$set(that, `active`, index);
- },
- toPath(index, item) {
- const that = this;
- that.$set(that, `active`, index);
- that.$emit('toPath', item)
- }
- }
- }
- </script>
- <style lang="scss">
- .body {
- .info {
- position: relative;
- flex-grow: 1;
- }
- .foot {
- height: 8vh;
- overflow: hidden;
- background-color: var(--fffColor);
- display: flex;
- flex-direction: row;
- justify-content: space-around;
- border-top: 1px solid var(--f1Color);
- .list {
- padding: 1vw 0;
- text-align: center;
- .image {
- width: 7vw;
- height: 6vw;
- }
- .name {
- font-size: 12px;
- }
- }
- }
- }
- .scroll-view {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- .list-scroll-view {
- display: flex;
- flex-direction: column;
- }
- }
- </style>
|