This commit is contained in:
2025-04-29 13:26:19 +08:00
parent 6e1ae24845
commit bf88fcb395
73 changed files with 12939 additions and 4637 deletions

View File

@@ -57,7 +57,7 @@
})
onMounted(() => {
const query = uni.createSelectorQuery().in(this);
query.select(".receive-listBox").boundingClientRect((data) => {
query.select(".receive-listBox").boundingClientRect((data:any) => {
state.scrollHeight = data.height
}).exec();
fnDataList()
@@ -65,7 +65,6 @@
const fnScrollBottom = () => {
console.log(state.page.pageIndex * state.page.pageSize,state.page.totalCount);
if (state.page.pageIndex * state.page.pageSize <= state.page.totalCount) {
debugger
state.page.pageIndex ++;
uni.showLoading({ mask: true });
setTimeout(() => {
@@ -74,7 +73,7 @@
}
}
const fnToUrl = (item : any) => {
toPages('/pages/outOftock/material',{id:item.FID,fBillNo:item.FBillNo})
toPages('/pages/encasement/material',{id:item.FID,fBillNo:item.FBillNo})
}
const debounceTimer = ref()
const changeFun = (e : any) => {
@@ -95,7 +94,7 @@
if (state.page.pageIndex == 1) {
uni.showLoading({ mask: true });
}
SAL_DELIVERYNOTICEList(param).then(res => {
BarcodePackBillList(param).then(res => {
uni.hideLoading();
if (res.code == 200) {
let result = res.data;
@@ -103,18 +102,11 @@
dataArray.forEach(p => {
p.FDateFormat = parseTime(p.FDate, '{y}-{m}-{d}');
});
if (state.page.pageIndex == 1) {
state.dataList = dataArray;
}
else {
state.dataList = state.dataList.concat(dataArray);
}
if (state.page.pageIndex == 1) { state.dataList = dataArray; }
else { state.dataList = state.dataList.concat(dataArray); }
state.page.totalCount = result.total;
if (state.dataList.length == state.page.totalCount) {
// more_status.value = 'nomore';
}
if (state.dataList.length == state.page.totalCount) { }
}
});
}