Compare commits
No commits in common. "823b8e2550b1e043f036ea72cfe988db67d5f3ed" and "53583892a63de8a12296217effa713b25d2b5e96" have entirely different histories.
823b8e2550
...
53583892a6
|
|
@ -4,7 +4,7 @@
|
||||||
<view class="box">
|
<view class="box">
|
||||||
<view class="rel-left">
|
<view class="rel-left">
|
||||||
<scroll-view scroll-y="true" scroll-with-animation :scroll-top="leftscrolltop" class="scroll-Y"
|
<scroll-view scroll-y="true" scroll-with-animation :scroll-top="leftscrolltop" class="scroll-Y"
|
||||||
@scrolltolower="plsbuytolower" :lower-threshold="400">
|
@scrolltolower="plsbuytolower" :lower-threshold="200">
|
||||||
<view class="margin-height"></view>
|
<view class="margin-height"></view>
|
||||||
<view class="boxitem" v-for="(v,i) in plsbuy" :key='i'
|
<view class="boxitem" v-for="(v,i) in plsbuy" :key='i'
|
||||||
:class="{'yujing':v?.cgdType=='9','active':leftitem==i}"
|
:class="{'yujing':v?.cgdType=='9','active':leftitem==i}"
|
||||||
|
|
@ -53,17 +53,13 @@
|
||||||
</view>
|
</view>
|
||||||
<scroll-view scroll-y="true" class="cgdscroll" scroll-with-animation>
|
<scroll-view scroll-y="true" class="cgdscroll" scroll-with-animation>
|
||||||
<view class="fler">
|
<view class="fler">
|
||||||
<view class="boxitem" v-for="(f,l) in InvoicingList" :key='l' @scrolltolower="scrolltolower"
|
<view class="boxitem" v-for="(f,l) in InvoicingList" :key='l'>
|
||||||
:lower-threshold="200">
|
|
||||||
<view>{{f.wlName}}</view>
|
<view>{{f.wlName}}</view>
|
||||||
<view style="white-space: nowrap;">规格型号:{{f.wlSpecificationModel}}</view>
|
<view style="white-space: nowrap;">规格型号:{{f.wlSpecificationModel}}</view>
|
||||||
<view>采购金额:{{f.procurementPrice}}</view>
|
<view>采购金额:{{f.procurementPrice}}</view>
|
||||||
<view>采购数量:{{f.purchaseQuantity}}</view>
|
<view>采购数量:{{f.purchaseQuantity}}</view>
|
||||||
</view>
|
</view>
|
||||||
</view>
|
</view>
|
||||||
<view style="height:3vw;width: 100%;display: flex;align-items: center;justify-content: center;">
|
|
||||||
<u-loadmore :status="status" :loadText="{nomore:'暂无更多数据'}" v-if="InvoicingList.length>6"/>
|
|
||||||
</view>
|
|
||||||
</scroll-view>
|
</scroll-view>
|
||||||
</view>
|
</view>
|
||||||
|
|
||||||
|
|
@ -351,7 +347,7 @@
|
||||||
}
|
}
|
||||||
const getmiddle = (item : any, i : number) => {
|
const getmiddle = (item : any, i : number) => {
|
||||||
let num = Math.ceil((i + 1))
|
let num = Math.ceil((i + 1))
|
||||||
leftscrolltop.value = (num - 2) * 185;
|
leftscrolltop.value = (num - 1) * 238.5;
|
||||||
leftitem.value = i;
|
leftitem.value = i;
|
||||||
shopitem.value = -1
|
shopitem.value = -1
|
||||||
|
|
||||||
|
|
@ -594,8 +590,7 @@
|
||||||
detailform.wlId = InvoicingList.value[0].wlId
|
detailform.wlId = InvoicingList.value[0].wlId
|
||||||
|
|
||||||
|
|
||||||
status.value = res.result.total == InvoicingList.value.length ? 'nomore' : 'loadmore';
|
status.value = res.result.total == InvoicingList.value.length ? 'nomore' : 'loadmore'
|
||||||
|
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
const saveleftgo = ref(0);
|
const saveleftgo = ref(0);
|
||||||
|
|
@ -1421,7 +1416,6 @@
|
||||||
height: 100%;
|
height: 100%;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.box {
|
.box {
|
||||||
width: 100vw;
|
width: 100vw;
|
||||||
height: 100vh;
|
height: 100vh;
|
||||||
|
|
@ -1711,7 +1705,6 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 1vw 1.6vw 0;
|
padding: 1vw 1.6vw 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
>view {
|
>view {
|
||||||
&:nth-child(1) {
|
&:nth-child(1) {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue