|
|
@@ -11,15 +11,16 @@
|
|
|
</view>
|
|
|
|
|
|
<view class="scroll-middle_bx">
|
|
|
- <scroll-view scroll-y scroll-with-animation class="tab-view" :scroll-top="scrollTop">
|
|
|
+ <scroll-view scroll-y scroll-with-animation class="tab-view">
|
|
|
<div v-for="(item, index) in globalClassData" :key="index" class="tab-bar-item" :class="[globalClassIndex == index ? 'active' : '']" :data-current="index" @tap.stop="globalSwitchClass(index,item)">
|
|
|
<text>{{ item.name || "" }}</text>
|
|
|
</div>
|
|
|
</scroll-view>
|
|
|
- <scroll-view scroll-y class="right-box"
|
|
|
+ <scroll-view scroll-y class="right-box"
|
|
|
+ :scroll-top="globalScrollTopPlace"
|
|
|
+ @scroll="globalGetScroll"
|
|
|
:scroll-into-view="scroll_into_view"
|
|
|
scroll-with-animation="true"
|
|
|
- @scroll="scroll_detail"
|
|
|
lower-threshold="100"
|
|
|
@scrolltolower="scroll_bottom">
|
|
|
|
|
|
@@ -74,7 +75,7 @@
|
|
|
import AppSearchModule from "@/components/module/app-search";
|
|
|
import AppWrapperEmpty from "@/components/app-wrapper-empty";
|
|
|
import ItemComponent from "./components/changeStockItem2";
|
|
|
-import productMins from "@/mixins/product2;
|
|
|
+import productMins from "@/mixins/product2";
|
|
|
import { mapGetters } from "vuex";
|
|
|
import { checkOrderApi } from "@/api/inventory";
|
|
|
import { changeFrontHide } from "@/api/item";
|
|
|
@@ -165,12 +166,6 @@ export default {
|
|
|
if (val.index === 0) {
|
|
|
this.modalCancel();
|
|
|
}
|
|
|
- },
|
|
|
- scrollTop() {},
|
|
|
- initProductInfo() {
|
|
|
- this.globalClassItemListContrapose = [];
|
|
|
- this.page = 1;
|
|
|
- this.isMore = true;
|
|
|
}
|
|
|
}
|
|
|
};
|