| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207 |
- <template>
- <view class="content">
- <scroll-view scroll-y="true" class="nave-left" :scroll-into-view="scrollToLeft">
- <view class="scroll">
- <view class="goods-type" :class="{ isSelect: scrollToLeft === 'idx' + index }" v-for="(val, index) in items" :key="index"
- @click="scrollRight(index)" :id="'idx' + index">
- {{ val.name }}
- </view>
- </view>
- </scroll-view>
- <scroll-view scroll-y="true" class="nav-right" :scroll-into-view="scrollToRight" scroll-with-animation="" @scroll="scrolling">
- <view class="scroll">
- <view class="goods-list" v-for="(val, index) in items" :key="index" :id="'id' + index">
- <view class="goods-head">{{ val.name }}</view>
- <view class="goods-body" v-for="(item, idx) in val.children" :key="idx">{{ item.name }}</view>
- </view>
- </view>
- </scroll-view>
- </view>
- </template>
- <script>
- export default {
- name: 'goodsSecond',
- data() {
- return {
- scrollToRight: '',
- nodeHeight: [],
- scrollToLeft: 'idx0',
- items: [{
- name: 'A',
- children: [{
- name: 'A1'
- },
- {
- name: 'A2'
- },
- {
- name: 'A3'
- },
- {
- name: 'A1'
- },
- {
- name: 'A2'
- },
- {
- name: 'A3'
- }
- ]
- },
- {
- name: 'B',
- children: [{
- name: 'B1'
- },
- {
- name: 'B2'
- },
- {
- name: 'B3'
- },
- {
- name: 'B1'
- },
- {
- name: 'B2'
- },
- {
- name: 'B3'
- }
- ]
- },
- {
- name: 'C',
- children: [{
- name: 'C1'
- },
- {
- name: 'C2'
- },
- {
- name: 'C3'
- },
- {
- name: 'C1'
- },
- {
- name: 'C2'
- },
- {
- name: 'C3'
- }
- ]
- }
- ]
- };
- },
- mounted() {
- this.getGoodsLsit();
- },
- methods: {
- getGoodsLsit() {
- let view = uni
- .createSelectorQuery()
- .in(this)
- .selectAll('.goods-list');
- view.boundingClientRect(data => {
- console.log('得到布局位置信息');
- this.nodeHeight = data;
- console.log(data);
- }).exec();
- },
- scrollRight(index) {
- this.scrollToRight = 'id' + index;
- this.scrollToLeft = 'idx' + index;
- },
- scrolling(e) {
- this.scrollLeft(Math.ceil(e.detail.scrollTop));
- console.log(e.detail);
- },
- scrollLeft(e) {
- for (let i = 2; i < this.nodeHeight.length; i++) {
- if (e > this.nodeHeight[i - 1].top && e < this.nodeHeight[i].top) {
- this.scrollToLeft = 'idx' + (i - 1);
- } else if (e > this.nodeHeight[this.nodeHeight.length - 1].top) {
- this.scrollToLeft = 'idx' + (this.nodeHeight.length - 1);
- } else if (e < this.nodeHeight[1].top) {
- this.scrollToLeft = 'idx0';
- this.scrollToRight = 'id0';
- }
- this.scrollToRight = '';
- }
- }
- }
- };
- </script>
- <style>
- .content {
- width: 100%;
- height: 100%;
- display: flex;
- }
- .nave-left {
- width: 187rpx;
- height: 100%;
- }
- .nav-right {
- width: 562rpx;
- height: 100%;
- }
- .scroll {
- width: 100%;
- height: 100%;
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .goods-type {
- width: 150rpx;
- height: 80rpx;
- box-shadow: 0px 4px 7px 1px rgba(206, 148, 5, 0.24);
- border-radius: 20px;
- display: flex;
- align-items: center;
- justify-content: center;
- font-size: 24rpx;
- font-family: Microsoft YaHei UI;
- font-weight: 400;
- color: #a1a1a1;
- }
- .isSelect {
- border: 2rpx solid rgb(206, 148, 5);
- }
- .goods-list {
- width: 500rpx;
- }
- .goods-head {
- width: 500rpx;
- height: 80rpx;
- display: flex;
- align-items: center;
- }
- .goods-body {
- width: 500rpx;
- height: 150rpx;
- display: flex;
- align-items: center;
- box-shadow: 0px 4px 7px 1px rgba(206, 148, 5, 0.24);
- border-radius: 20px;
- }
- </style>
|