diff --git a/pages-home/service/todoDetail.vue b/pages-home/service/todoDetail.vue
index 4a0c14a..9b1cda8 100644
--- a/pages-home/service/todoDetail.vue
+++ b/pages-home/service/todoDetail.vue
@@ -199,6 +199,7 @@ export default {
},
//是否可以点击
canClick:true,
+ subLoading: false
};
},
onLoad(data) {
@@ -356,54 +357,60 @@ export default {
})
},
confirmOpe(type) {
- if(this.selectWares.length==0){
- uni.showToast({
- title: '请选中要审核的配件!',
- icon: 'none'
- })
- return
- }
- if (this.canClick) {
- this.canClick = false
- let url = '/admin-api/repair/tw/audit'
- let dataObj = {
- id: this.id,
- type: "01",
- status: "yes" == type ? "01" : "02"
- }
- try {
- if (this.selectWares && this.selectWares.length > 0) {
- dataObj.items = [...this.selectWares.map(item => {
- return {
- id: item.id
- }
- })]
- } else {
- dataObj.items = []
- this.repairList.map((groupItem) => {
- groupItem.twItemList.map((item) => {
- dataObj.items.push({id: item.id})
- })
- })
- }
- request({
- url: url,
- method: 'POST',
- data: dataObj
- }).then((res) => {
- this.canClick = true
- if (res.code == 200) {
- uni.showToast({
- title: '审批成功!',
- icon: 'none'
- })
- setTimeout(() => {
- uni.navigateBack()
- }, 700)
- }
+ if (!this.subLoading){
+ this.subLoading = true
+ if(this.selectWares.length==0){
+ uni.showToast({
+ title: '请选中要审核的配件!',
+ icon: 'none'
})
- } catch (e) {
- this.canClick = true
+ this.subLoading = false
+ return
+ }
+ if (this.canClick) {
+ this.canClick = false
+ let url = '/admin-api/repair/tw/audit'
+ let dataObj = {
+ id: this.id,
+ type: "01",
+ status: "yes" == type ? "01" : "02"
+ }
+ try {
+ if (this.selectWares && this.selectWares.length > 0) {
+ dataObj.items = [...this.selectWares.map(item => {
+ return {
+ id: item.id
+ }
+ })]
+ } else {
+ dataObj.items = []
+ this.repairList.map((groupItem) => {
+ groupItem.twItemList.map((item) => {
+ dataObj.items.push({id: item.id})
+ })
+ })
+ }
+ request({
+ url: url,
+ method: 'POST',
+ data: dataObj
+ }).then((res) => {
+ this.canClick = true
+ if (res.code == 200) {
+ uni.showToast({
+ title: '审批成功!',
+ icon: 'none'
+ })
+ setTimeout(() => {
+ uni.navigateBack()
+ }, 700)
+ }
+ this.subLoading = false
+ })
+ } catch (e) {
+ this.subLoading = false
+ this.canClick = true
+ }
}
}
},
diff --git a/pages-warehouse/inOutWarehouse/part.vue b/pages-warehouse/inOutWarehouse/part.vue
index 0e2470c..92e7397 100644
--- a/pages-warehouse/inOutWarehouse/part.vue
+++ b/pages-warehouse/inOutWarehouse/part.vue
@@ -96,7 +96,7 @@
保存
- 入库
+ 入库
@@ -143,6 +143,7 @@ export default {
unitList: [],
query: null,
selectRows: [],
+ subLoading: false
};
},
onLoad(data) {
@@ -424,35 +425,39 @@ export default {
* 入库
*/
inWare() {
- const data = {
- id: this.soId,
- soNo: createUniqueCodeByHead("RK")
- }
- const values = this.partList.map(([key, value]) => value).reduce((acc, item) => acc.concat(item))
- if (this.selectRows && this.selectRows.length > 0){
- const ids = this.selectRows.map(item => item.id)
- const newSelect = values.filter(item => ids.includes(item.id))
- data.soiList = [...newSelect]
- data.waresList = [...newSelect.map(item => item.wares)]
- }else {
- data.soiList = [...values]
- data.waresList = [...values.map(item => item.wares)]
- }
- request({
- url: '/admin-api/repair/so/inWare',
- method: 'post',
- data: data
- }).then((res) => {
- if (res.code == 200) {
- uni.showToast({
- title: '入库成功!',
- icon: 'none'
- })
- setTimeout(() => {
- uni.navigateBack()
- }, 700)
+ if (!this.subLoading){
+ this.subLoading = true
+ const data = {
+ id: this.soId,
+ soNo: createUniqueCodeByHead("RK")
}
- })
+ const values = this.partList.map(([key, value]) => value).reduce((acc, item) => acc.concat(item))
+ if (this.selectRows && this.selectRows.length > 0){
+ const ids = this.selectRows.map(item => item.id)
+ const newSelect = values.filter(item => ids.includes(item.id))
+ data.soiList = [...newSelect]
+ data.waresList = [...newSelect.map(item => item.wares)]
+ }else {
+ data.soiList = [...values]
+ data.waresList = [...values.map(item => item.wares)]
+ }
+ request({
+ url: '/admin-api/repair/so/inWare',
+ method: 'post',
+ data: data
+ }).then((res) => {
+ if (res.code == 200) {
+ uni.showToast({
+ title: '入库成功!',
+ icon: 'none'
+ })
+ setTimeout(() => {
+ uni.navigateBack()
+ }, 700)
+ }
+ this.subLoading = false
+ })
+ }
// this.partList.forEach(item => {
// item.inCount = item.count
// item.goodsId = item.id