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.
261 lines
8.6 KiB
261 lines
8.6 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 _component_tiplist = common_vendor.resolveComponent("tiplist"); |
|
const _component_saomiao2 = common_vendor.resolveComponent("saomiao2"); |
|
(_easycom_u_navbar2 + _component_tiplist + _component_saomiao2)(); |
|
} |
|
const _easycom_u_navbar = () => "../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js"; |
|
if (!Math) { |
|
(_easycom_u_navbar + cusSelects)(); |
|
} |
|
const cusSelects = () => "../../../compoment/cus-selects-fan/cus-selects-fan.js"; |
|
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({ |
|
__name: "CustomerOrdersDetails", |
|
setup(__props) { |
|
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 |
|
}); |
|
const tiplists = common_vendor.ref(null); |
|
common_vendor.onLoad((op) => { |
|
details.items = JSON.parse(op.item); |
|
details.id = op.id; |
|
}); |
|
common_vendor.onShow(() => { |
|
common_vendor.index.$on("scancodedate", function(code) { |
|
if (code) { |
|
console.log(code); |
|
details.scancode = code; |
|
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 || []; |
|
} |
|
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 = { |
|
deliveryId: details.id, |
|
loadingId, |
|
type: 1, |
|
barcode: details.scancode |
|
}; |
|
let res = await api_user.deliveryloadingscan(data); |
|
console.log(res); |
|
if (res.code == 200) { |
|
common_vendor.index.showToast({ |
|
title: res.msg, |
|
icon: "none" |
|
}); |
|
} else { |
|
common_vendor.index.showToast({ |
|
title: res.msg, |
|
icon: "none" |
|
}); |
|
} |
|
} 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); |
|
if (res.code == 200) { |
|
common_vendor.index.showToast({ |
|
title: res.msg, |
|
icon: "none" |
|
}); |
|
} else { |
|
common_vendor.index.showToast({ |
|
title: res.msg, |
|
icon: "none" |
|
}); |
|
} |
|
} |
|
initpage(); |
|
} |
|
function checkphon(index) { |
|
if (details.listcheckindex == index) { |
|
details.listcheckindex = -1; |
|
} else { |
|
details.listcheckindex = index; |
|
} |
|
} |
|
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.t(item.orderCode), |
|
b: common_vendor.t(item.reservationNum), |
|
c: common_vendor.t(item.loadingNub), |
|
d: common_vendor.unref(listcheckindex) == index |
|
}, common_vendor.unref(listcheckindex) == index ? { |
|
e: 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 : "未扫") |
|
}; |
|
}) |
|
} : {}, { |
|
f: common_vendor.t(item.complete), |
|
g: common_vendor.n(item.completecode == 3 ? "tip tp1" : item.completecode == 1 ? "tip tp2" : "tip tp3"), |
|
h: 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.sr(tiplists, "dfa68ca0-2", { |
|
"k": "tiplists" |
|
}) |
|
}); |
|
}; |
|
} |
|
}); |
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "F:/物流/logPm/pagesHome/pages/CustomerOrdersDetails/CustomerOrdersDetails.vue"]]); |
|
wx.createPage(MiniProgramPage);
|
|
|