diff --git a/src/api/http.ts b/src/api/http.ts index d0e64e78..608ba47e 100644 --- a/src/api/http.ts +++ b/src/api/http.ts @@ -89,7 +89,19 @@ instance.interceptors.response.use((v) => { confirmText: '重新登录', success: function (res) { if (res.confirm) { - uni.reLaunch({ url: '/pages/login' }) + uni.reLaunch({ url: '/pages/login/index' }) + } + } + }) + } else if(v.data.code == 401){ + uni.showModal({ + title: '系统提示', + content: '账号未登录,请重新登录', + cancelText: '关闭', + confirmText: '重新登录', + success: function (res) { + if (res.confirm) { + uni.reLaunch({ url: '/pages/login/index' }) } } }) diff --git a/src/api/request2.js b/src/api/request2.js index 94f96ef7..33d3433b 100644 --- a/src/api/request2.js +++ b/src/api/request2.js @@ -2108,7 +2108,7 @@ export function productionReturnRequestAddAgain(id) { export function productionReturnRequestCreate(params) { - return http.put("/wms/productionreturn-request-main/create",params) + return http.post("/wms/productionreturn-request-main/create",params) } /** * 生产退料记录 提交 diff --git a/src/common/calc.js b/src/common/calc.js index 6c5da860..5661a6bb 100644 --- a/src/common/calc.js +++ b/src/common/calc.js @@ -2,15 +2,23 @@ import Decimal from 'decimal.js' class Calc { add(num1,num2) { + num1 = num1 || 0 + num2 = num2 || 0 return new Decimal(num1).add(new Decimal(num2)).toNumber() } sub(num1,num2) { + num1 = num1 || 0 + num2 = num2 || 0 return new Decimal(num1).sub(new Decimal(num2)).toNumber() } mul(num1,num2) { + num1 = num1 || 0 + num2 = num2 || 0 return new Decimal(num1).mul(new Decimal(num2)).toNumber() } div(num1,num2) { + num1 = num1 || 0 + num2 = num2 || 0 return new Decimal(num1).div(new Decimal(num2)).toNumber() } } diff --git a/src/common/style/new_style.css b/src/common/style/new_style.css index 9e694dcf..3808b7c6 100644 --- a/src/common/style/new_style.css +++ b/src/common/style/new_style.css @@ -218,7 +218,6 @@ uni-page-head .uni-page-head__title { .cen_card { padding: 0 0rpx; - width: 100%; box-sizing: border-box; background:#EEF4FA; padding:20rpx; diff --git a/src/components/my-paging/my-paging.vue b/src/components/my-paging/my-paging.vue index e8447694..29685440 100644 --- a/src/components/my-paging/my-paging.vue +++ b/src/components/my-paging/my-paging.vue @@ -131,6 +131,7 @@ const reload = (data) => { } // 接收页面触发的complete方法,传给z-paging const complete = (data) => { + console.log(data) paging.value.complete(data) } /* diff --git a/src/mycomponents/balance/pack.vue b/src/mycomponents/balance/pack.vue index 3874c0a4..a205761e 100644 --- a/src/mycomponents/balance/pack.vue +++ b/src/mycomponents/balance/pack.vue @@ -1,6 +1,6 @@ diff --git a/src/mycomponents/detail/comDetailCard.vue b/src/mycomponents/detail/comDetailCard.vue index 66f55847..8c0c48dd 100644 --- a/src/mycomponents/detail/comDetailCard.vue +++ b/src/mycomponents/detail/comDetailCard.vue @@ -10,7 +10,7 @@ - + @@ -48,6 +48,10 @@ const props = defineProps({ locationAreaTypeList: { type: Array, default: null + }, + queryBalance: { + type: Boolean, + default: true } }) const option = ref([]) @@ -59,6 +63,7 @@ const scanOptions = ref([]) const comMessageRef = ref() const collapse = ref() const qtyEdit = ref() +const scanLocationCode = ref() const dataContent = ref(props.dataContent) dataContent.value.subList.forEach((item) => { item.show = false @@ -110,7 +115,7 @@ const swipeClick = (params, item) => { } const edit = (item) => { editItem.value = item - qtyEdit.value.openEditPopup(item.balance, item.handleQty) + qtyEdit.value.openEditPopup(item, item.handleQty) } const detail = (item) => { emit('openDetail', item) @@ -129,7 +134,7 @@ const confirm = (qty) => { editItem.value.handleQty = qty emit('updateData') } -const showLocation = () => { +const showLocation = (item) => { locatonItem.value = item scanLocationCode.value.openScanPopup() } diff --git a/src/mycomponents/item/itemCompareQty.vue b/src/mycomponents/item/itemCompareQty.vue index 3bac1b38..82e36972 100644 --- a/src/mycomponents/item/itemCompareQty.vue +++ b/src/mycomponents/item/itemCompareQty.vue @@ -3,7 +3,7 @@ - + diff --git a/src/mycomponents/item/itemQty.vue b/src/mycomponents/item/itemQty.vue index 4e8fe76b..9eb9e54e 100644 --- a/src/mycomponents/item/itemQty.vue +++ b/src/mycomponents/item/itemQty.vue @@ -1,5 +1,5 @@