You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
294 lines
9.9 KiB
294 lines
9.9 KiB
"use strict"; |
|
const common_vendor = require("../../../common/vendor.js"); |
|
const api_user = require("../../../api/user.js"); |
|
require("../../../utils/request.js"); |
|
require("../../../store/index.js"); |
|
require("../../../utils/functions.js"); |
|
require("../../../utils/IDCardVerification.js"); |
|
require("../../../utils/base64.js"); |
|
require("../../../config/host.js"); |
|
require("../../../utils/md5.js"); |
|
if (!Array) { |
|
const _easycom_u_navbar2 = common_vendor.resolveComponent("u-navbar"); |
|
const _easycom_u_popup2 = common_vendor.resolveComponent("u-popup"); |
|
const _component_tiplist = common_vendor.resolveComponent("tiplist"); |
|
const _component_saomiao2 = common_vendor.resolveComponent("saomiao2"); |
|
(_easycom_u_navbar2 + _easycom_u_popup2 + _component_tiplist + _component_saomiao2)(); |
|
} |
|
const _easycom_u_navbar = () => "../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js"; |
|
const _easycom_u_popup = () => "../../../uni_modules/uview-plus/components/u-popup/u-popup.js"; |
|
if (!Math) { |
|
(_easycom_u_navbar + cusSelects + _easycom_u_popup)(); |
|
} |
|
const cusSelects = () => "../../../compoment/cus-selects-fan/cus-selects-fan.js"; |
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({ |
|
__name: "CustomerOrdersDetails", |
|
setup(__props) { |
|
const utils = common_vendor.inject("utils"); |
|
const showPopup = common_vendor.ref(false); |
|
let details = common_vendor.reactive({ |
|
schanvalue: "", |
|
typearr: [ |
|
{ |
|
value: 3, |
|
label: "齐套" |
|
}, |
|
{ |
|
value: 2, |
|
label: "部分扫" |
|
}, |
|
{ |
|
value: 1, |
|
label: "未扫" |
|
} |
|
], |
|
items: {}, |
|
datalist: [], |
|
scancode: "", |
|
orderStatus: 1, |
|
id: "", |
|
orderType: 0, |
|
inputtxt: "", |
|
listcheckindex: -1, |
|
isscan: false |
|
}); |
|
const tiplists = common_vendor.ref(null); |
|
common_vendor.onLoad((op) => { |
|
details.items = JSON.parse(op.item); |
|
details.id = op.id; |
|
}); |
|
function goorderdetail(item) { |
|
common_vendor.index.navigateTo({ |
|
url: "/pagesHome/pages/orderDetails/orderDetails?orderCode=" + item.orderCode |
|
}); |
|
} |
|
common_vendor.onShow(() => { |
|
common_vendor.index.$on("scancodedate", function(code) { |
|
if (code) { |
|
console.log(code); |
|
details.scancode = code; |
|
details.isscan = true; |
|
scandata(); |
|
} |
|
}); |
|
initpage(); |
|
}); |
|
common_vendor.onHide(() => { |
|
common_vendor.index.$off("scancodedate"); |
|
}); |
|
const loadingNub = common_vendor.computed(() => { |
|
let num = 0; |
|
details.datalist.map((item) => { |
|
if (item.loadingNub) { |
|
num += item.loadingNub; |
|
} |
|
}); |
|
return num; |
|
}); |
|
function showsdqs() { |
|
tiplists.value.setdetails({ |
|
isshow: true, |
|
tipstate: 1, |
|
title: "请输入扫描的码", |
|
placeholder: "请输入扫描的码", |
|
inputtext: "", |
|
success: (detail) => { |
|
details.scancode = detail.inputtext; |
|
scandata(); |
|
tiplists.value.setdetails({ isshow: false }); |
|
}, |
|
cancel: () => { |
|
tiplists.value.setdetails({ isshow: false }); |
|
}, |
|
close: () => { |
|
tiplists.value.setdetails({ isshow: false }); |
|
} |
|
}); |
|
} |
|
async function initpage() { |
|
let data = { |
|
reservationId: details.items.id, |
|
completecode: details.orderType, |
|
orderCode: details.inputtxt |
|
}; |
|
details.datalist = []; |
|
let response = null; |
|
if (details.orderStatus == 1) { |
|
response = await api_user.deliveryorder(data); |
|
} else if (details.orderStatus == 2) { |
|
response = await api_user.signforinventory(data); |
|
} |
|
details.datalist = response.data.records || []; |
|
if (loadingNub.value != 0 && details.isscan) { |
|
console.log(loadingNub.value + "件"); |
|
utils.ttsspke(loadingNub.value + "件"); |
|
} |
|
} |
|
function checktype(e) { |
|
if (e == "") { |
|
details.schanvalue = ""; |
|
details.orderType = 0; |
|
} |
|
details.typearr.map((item) => { |
|
if (item.value == e) { |
|
details.schanvalue = item.label; |
|
details.orderType = item.value; |
|
console.log(details.schanvalue); |
|
} |
|
}); |
|
} |
|
function setorderStatus(state) { |
|
details.orderStatus = state; |
|
initpage(); |
|
} |
|
async function scandata() { |
|
let loadingId = common_vendor.index.getStorageSync("checkvehicle").id; |
|
if (details.orderStatus == 1) { |
|
let data = { |
|
reservationId: details.items.id, |
|
deliveryId: details.id, |
|
loadingId, |
|
type: 1, |
|
barcode: details.scancode |
|
}; |
|
data.barcode = "P00752306060908726"; |
|
let res = await api_user.deliveryloadingscan(data); |
|
console.log(res); |
|
const { code, audio } = res; |
|
if (code === 5e3) { |
|
utils.ttsspke(audio); |
|
showPopup.value = true; |
|
} |
|
if (code === 3001) |
|
utils.ttsspke(audio); |
|
} else if (details.orderStatus == 2) { |
|
let data = { |
|
reservationId: details.items.id, |
|
deliveryId: details.id, |
|
loadingId, |
|
type: 1, |
|
barcode: details.scancode |
|
}; |
|
let res = await api_user.deliveryloadinginventory(data); |
|
console.log(res); |
|
} |
|
initpage(); |
|
} |
|
function checkphon(index) { |
|
if (details.listcheckindex == index) { |
|
details.listcheckindex = -1; |
|
} else { |
|
details.listcheckindex = index; |
|
} |
|
} |
|
function abnormalTruckLoading() { |
|
let loadingId = common_vendor.index.getStorageSync("checkvehicle").id; |
|
let data = { |
|
reservationId: details.items.id, |
|
deliveryId: details.id, |
|
loadingId, |
|
type: 1, |
|
barcode: details.scancode |
|
}; |
|
data.barcode = "P00842306030843402"; |
|
api_user.postAbnormalTruckLoading(data); |
|
showPopup.value = false; |
|
} |
|
function close() { |
|
showPopup.value = false; |
|
} |
|
const { listcheckindex, inputtxt, orderStatus, schanvalue, typearr, items, datalist } = common_vendor.toRefs(details); |
|
return (_ctx, _cache) => { |
|
return common_vendor.e({ |
|
a: common_vendor.p({ |
|
title: "客户订单扫描", |
|
bgColor: "#D3832A", |
|
leftIconColor: "#ffffff", |
|
titleStyle: "color:#ffffff", |
|
placeholder: true, |
|
autoBack: true, |
|
leftIconSize: "35" |
|
}), |
|
b: common_vendor.t(common_vendor.unref(items).consignee), |
|
c: common_vendor.o(showsdqs), |
|
d: common_vendor.t(common_vendor.unref(items).isstock), |
|
e: common_vendor.t(common_vendor.unref(items).isload), |
|
f: common_vendor.t(common_vendor.unref(items).ordNub), |
|
g: common_vendor.t(common_vendor.unref(items).reservationNum), |
|
h: common_vendor.t(common_vendor.unref(loadingNub)), |
|
i: common_vendor.t(common_vendor.unref(items).signNub), |
|
j: common_vendor.o(checktype), |
|
k: common_vendor.p({ |
|
data: common_vendor.unref(typearr), |
|
value: common_vendor.unref(schanvalue), |
|
placeholder: "全部", |
|
arrLeft: 5, |
|
size: "145", |
|
clearable: true |
|
}), |
|
l: common_vendor.unref(inputtxt), |
|
m: common_vendor.o(($event) => common_vendor.isRef(inputtxt) ? inputtxt.value = $event.detail.value : null), |
|
n: common_vendor.o(initpage), |
|
o: common_vendor.n(common_vendor.unref(orderStatus) == 1 ? "xz" : ""), |
|
p: common_vendor.o(($event) => setorderStatus(1)), |
|
q: common_vendor.n(common_vendor.unref(orderStatus) == 2 ? "xz" : ""), |
|
r: common_vendor.o(($event) => setorderStatus(2)), |
|
s: common_vendor.unref(orderStatus) == 1 |
|
}, common_vendor.unref(orderStatus) == 1 ? { |
|
t: common_vendor.f(common_vendor.unref(datalist), (item, index, i0) => { |
|
return common_vendor.e({ |
|
a: common_vendor.o(($event) => goorderdetail(item)), |
|
b: common_vendor.t(item.orderCode), |
|
c: common_vendor.t(item.reservationNum), |
|
d: common_vendor.t(item.loadingNub), |
|
e: common_vendor.unref(listcheckindex) == index |
|
}, common_vendor.unref(listcheckindex) == index ? { |
|
f: common_vendor.f(item.distributionAppParcelListVOS, (ite, k1, i1) => { |
|
return { |
|
a: common_vendor.t(ite.orderPackageCode), |
|
b: common_vendor.t(ite.thirdProduct), |
|
c: common_vendor.t(ite.isScan ? ite.isScan : "未扫") |
|
}; |
|
}) |
|
} : {}, { |
|
g: item.complete |
|
}, item.complete ? { |
|
h: common_vendor.t(item.complete), |
|
i: common_vendor.n(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3") |
|
} : {}, { |
|
j: common_vendor.o(($event) => checkphon(index)) |
|
}); |
|
}) |
|
} : {}, { |
|
v: common_vendor.unref(orderStatus) == 2 |
|
}, common_vendor.unref(orderStatus) == 2 ? { |
|
w: common_vendor.f(common_vendor.unref(datalist), (item, index, i0) => { |
|
return { |
|
a: common_vendor.t(item.sku), |
|
b: common_vendor.t(item.descriptionGoods), |
|
c: common_vendor.t(item.specification), |
|
d: common_vendor.t(item.logpmUnit), |
|
e: common_vendor.o(($event) => checkphon(index)) |
|
}; |
|
}) |
|
} : {}, { |
|
x: common_vendor.o(abnormalTruckLoading), |
|
y: common_vendor.o(close), |
|
z: common_vendor.o(close), |
|
A: common_vendor.p({ |
|
show: showPopup.value, |
|
mode: "center", |
|
customStyle: { |
|
"padding": "20px", |
|
"border-radius": "5px" |
|
} |
|
}), |
|
B: common_vendor.sr(tiplists, "63b9eb44-3", { |
|
"k": "tiplists" |
|
}) |
|
}); |
|
}; |
|
} |
|
}); |
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "D:/worksp/logpm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]); |
|
wx.createPage(MiniProgramPage);
|
|
|