diff --git a/src/api/request2.js b/src/api/request2.js index c3f423b5..6aff7531 100644 --- a/src/api/request2.js +++ b/src/api/request2.js @@ -568,7 +568,18 @@ export function getPurchaseReceiptJobDetail(id) { export function purchaseReceiptJobSubmit(params) { return http.put("/wms/purchasereceipt-job-main/execute" ,params) } - +/** + * 采购收货 指引单列表 + * @param {*} 任务id + * + */ +export function queryInspectionFreeFlag(params) { + return request({ + url: baseApi + "/wms/purchasereceipt-job-main/queryInspectionFreeFlag", + method: "get", + data: params, + }); +} /** * 采购退货 * status 任务状态 diff --git a/src/pages/pointPutawayJob/index.vue b/src/pages/pointPutawayJob/index.vue index 620056a9..54c58b45 100644 --- a/src/pages/pointPutawayJob/index.vue +++ b/src/pages/pointPutawayJob/index.vue @@ -1,63 +1,88 @@ - + +.top1 th { + font-weight: bold; + font-size: 16px; + padding: 10px; +} + + +table { + border-collapse: collapse; + border: 1px solid #dedede; + /* 设置表格的边框 */ + width: 100% +} + +th { + text-align: left; + padding: 10px; +} + +td { + padding: 10px; + +} + +.tabs-box { + display: flex; + align-items: center; + margin-bottom: 20rpx; + border-bottom: 2rpx solid rgb(188, 188, 188); + position: fixed; + background: white; + width: 100%; + left: 0px; + + view { + flex: 1; + text-align: center; + line-height: 60rpx; + font-size: 30rpx; + } + + .active1 { + color: rgb(60, 156, 255) !important; + font-weight: bold; + border-bottom: 4rpx solid rgb(60, 156, 255); + } +} + \ No newline at end of file diff --git a/src/pages/purchaseReceipt/job/receiptDetail.vue b/src/pages/purchaseReceipt/job/receiptDetail.vue index d85be67f..3448175b 100644 --- a/src/pages/purchaseReceipt/job/receiptDetail.vue +++ b/src/pages/purchaseReceipt/job/receiptDetail.vue @@ -445,7 +445,8 @@ const submitJob = () => { } console.log(dataParams) uni.redirectTo({ - url: `/pages/pointPutawayJob/index?data=${encodeURIComponent(JSON.stringify(dataParams))}` + uurl: '/pages/pointPutawayJob/index?number='+jobContent.value.number+'&data=' + + encodeURIComponent(JSON.stringify(dataParams)) }) } })