loading调整
This commit is contained in:
@@ -2,8 +2,8 @@
|
|||||||
"name" : "干巷仓库APP",
|
"name" : "干巷仓库APP",
|
||||||
"appid" : "__UNI__A67E78B",
|
"appid" : "__UNI__A67E78B",
|
||||||
"description" : "",
|
"description" : "",
|
||||||
"versionName" : "2.2.1",
|
"versionName" : "2.2.3",
|
||||||
"versionCode" : 221,
|
"versionCode" : 223,
|
||||||
"transformPx" : false,
|
"transformPx" : false,
|
||||||
"app-plus" : {
|
"app-plus" : {
|
||||||
"usingComponents" : true,
|
"usingComponents" : true,
|
||||||
|
|||||||
@@ -225,6 +225,7 @@ export default {
|
|||||||
createBy: 'admin',
|
createBy: 'admin',
|
||||||
secondNum: this.secondNum || 0
|
secondNum: this.secondNum || 0
|
||||||
};
|
};
|
||||||
|
uni.$u.throttle(()=>{
|
||||||
GoodsActionApi.doConsolidationGoods(data).then((res) => {
|
GoodsActionApi.doConsolidationGoods(data).then((res) => {
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
@@ -245,6 +246,7 @@ export default {
|
|||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},5000)
|
||||||
},
|
},
|
||||||
modalCancel() {
|
modalCancel() {
|
||||||
this.modalShow = false;
|
this.modalShow = false;
|
||||||
|
|||||||
@@ -144,7 +144,7 @@
|
|||||||
this.newMaterialList = [];
|
this.newMaterialList = [];
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
} else if (type === 2) {
|
} else if (type === 2) {
|
||||||
if(this.loading){
|
if (this.loading) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
content: '请等待加载完成!',
|
content: '请等待加载完成!',
|
||||||
@@ -184,9 +184,9 @@
|
|||||||
isStrict: this.isStrict
|
isStrict: this.isStrict
|
||||||
};
|
};
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
setTimeout(()=>{
|
setTimeout(() => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
},10000)
|
}, 10000)
|
||||||
WarehoseApi.checkWarehousing(checkData).then((res) => {
|
WarehoseApi.checkWarehousing(checkData).then((res) => {
|
||||||
if (res.code === 200 && res.data) {
|
if (res.code === 200 && res.data) {
|
||||||
this.newMaterialList.push(data);
|
this.newMaterialList.push(data);
|
||||||
@@ -269,9 +269,9 @@
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.loading = true;
|
this.loading = true;
|
||||||
setTimeout(()=>{
|
setTimeout(() => {
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
},30000)
|
}, 30000)
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '入库操作',
|
title: '入库操作',
|
||||||
content: '是否确认入库?',
|
content: '是否确认入库?',
|
||||||
@@ -288,10 +288,10 @@
|
|||||||
location: this.warehouseInfo.location,
|
location: this.warehouseInfo.location,
|
||||||
packagelist: list
|
packagelist: list
|
||||||
};
|
};
|
||||||
uni.$u.throttle(()=>{
|
uni.$u.throttle(() => {
|
||||||
WarehoseApi.handlerIntoProductWarehouse(data).then((res) => {
|
WarehoseApi.handlerIntoProductWarehouse(data).then((res) => {
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
if (!res.data) {
|
if (res.data === 0 || !res.data) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
content: '入库失败:' + res.msg,
|
content: '入库失败:' + res.msg,
|
||||||
@@ -303,12 +303,14 @@
|
|||||||
}
|
}
|
||||||
uni.showToast({
|
uni.showToast({
|
||||||
icon: 'success',
|
icon: 'success',
|
||||||
title: '入库成功!'
|
title: '入库成功!' + res.msg
|
||||||
});
|
});
|
||||||
this.loading = false;
|
this.loading = false;
|
||||||
this.oldMaterialList = JSON.parse(JSON.stringify(this.clearData
|
this.oldMaterialList = JSON.parse(JSON.stringify(this
|
||||||
|
.clearData
|
||||||
.oldMaterialList));
|
.oldMaterialList));
|
||||||
this.newMaterialList = JSON.parse(JSON.stringify(this.clearData
|
this.newMaterialList = JSON.parse(JSON.stringify(this
|
||||||
|
.clearData
|
||||||
.newMaterialList));
|
.newMaterialList));
|
||||||
// this.clear();
|
// this.clear();
|
||||||
} else {
|
} else {
|
||||||
@@ -319,8 +321,10 @@
|
|||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},5000)
|
}, 5000)
|
||||||
|
|
||||||
|
} else {
|
||||||
|
this.loading = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|||||||
@@ -408,6 +408,7 @@
|
|||||||
}
|
}
|
||||||
uni.$u.throttle(() => {
|
uni.$u.throttle(() => {
|
||||||
WarehoseApi.doMaterialOut(data).then((res) => {
|
WarehoseApi.doMaterialOut(data).then((res) => {
|
||||||
|
|
||||||
if (res.code !== 200) {
|
if (res.code !== 200) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
title: '提示',
|
title: '提示',
|
||||||
|
|||||||
@@ -200,6 +200,7 @@
|
|||||||
createBy: "admin",
|
createBy: "admin",
|
||||||
firstNum: this.firstNum || 0
|
firstNum: this.firstNum || 0
|
||||||
};
|
};
|
||||||
|
uni.$u.throttle(()=>{
|
||||||
GoodsActionApi.doUnpackingGoods(data).then((res) => {
|
GoodsActionApi.doUnpackingGoods(data).then((res) => {
|
||||||
if (res.code === 200) {
|
if (res.code === 200) {
|
||||||
uni.showModal({
|
uni.showModal({
|
||||||
@@ -220,6 +221,8 @@
|
|||||||
this.loading = false;
|
this.loading = false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
},5000)
|
||||||
|
|
||||||
},
|
},
|
||||||
modalCancel(){
|
modalCancel(){
|
||||||
this.modalShow = false;
|
this.modalShow = false;
|
||||||
|
|||||||
Reference in New Issue
Block a user