货无忧
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.
 
 
 
 
 

157 lines
5.4 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_icon2 = common_vendor.resolveComponent("u-icon");
const _easycom_l_calendar2 = common_vendor.resolveComponent("l-calendar");
(_easycom_u_navbar2 + _easycom_u_icon2 + _easycom_l_calendar2)();
}
const _easycom_u_navbar = () => "../../../uni_modules/uview-plus/components/u-navbar/u-navbar.js";
const _easycom_u_icon = () => "../../../uni_modules/uview-plus/components/u-icon/u-icon.js";
const _easycom_l_calendar = () => "../../../uni_modules/l-calendar/components/l-calendar/l-calendar.js";
if (!Math) {
(_easycom_u_navbar + _easycom_u_icon + _easycom_l_calendar)();
}
const _sfc_main = /* @__PURE__ */ common_vendor.defineComponent({
__name: "SelfPickupScan",
setup(__props) {
let details = common_vendor.reactive({
datatime: "",
show: false,
current: 1,
size: 10,
recordsList: []
});
const date = common_vendor.ref([]);
function showCalendar() {
details.show = !details.show;
}
function onConfirm(e) {
console.log(e);
date.value[0] = e.startDate;
date.value[1] = e.endDate;
details.datatime = date.value[0] + " 至 " + date.value[1];
}
common_vendor.watchEffect(() => {
if (date.value.length != 0) {
details.datatime = date.value[0] + " 至 " + date.value[1];
}
});
common_vendor.onLoad(() => {
date.value[0] = common_vendor.index.$u.timeFormat((/* @__PURE__ */ new Date()).valueOf() - 1e3 * 60 * 60 * 24 * 3, "yyyy-mm-dd");
date.value[1] = common_vendor.index.$u.timeFormat((/* @__PURE__ */ new Date()).valueOf(), "yyyy-mm-dd");
init();
});
function init() {
details.current = 1;
initpage();
}
function jiazai() {
details.current++;
initpage();
}
async function initpage() {
let data = {
current: details.current,
size: details.size,
pickUpTimeStart: date.value[0],
pickUpTimeEnd: date.value[1]
};
let response = await api_user.billLadingpageList(data);
if (details.current == 1) {
details.recordsList = response.data.records;
} else {
if (response.data.records.lngth == 0) {
common_vendor.index.showToast({
title: "已经到底了。",
icon: "none"
});
return;
}
details.recordsList = details.recordsList.concat(response.data.records);
}
}
function goselscan(item) {
common_vendor.index.navigateTo({
url: "/pagesHome/pages/SelfPScanList/SelfPScanList?billLadingId=" + item.billLadingId
});
}
function goselscandetails(item) {
common_vendor.index.navigateTo({
url: "/pagesHome/pages/SelfPickupDetails/SelfPickupDetails?billLadingId=" + item.billLadingId
});
}
function cleartime() {
details.datatime = "";
date.value = [];
init();
}
const { datatime, dataList, show, recordsList } = common_vendor.toRefs(details);
return (_ctx, _cache) => {
return common_vendor.e({
a: common_vendor.p({
title: "自提扫描",
placeholder: true,
border: "true",
autoBack: true,
leftIconSize: "35"
}),
b: common_vendor.unref(datatime),
c: !common_vendor.unref(datatime)
}, !common_vendor.unref(datatime) ? {
d: common_vendor.o(showCalendar),
e: common_vendor.p({
name: "calendar",
color: "#999999",
size: "50"
})
} : {
f: common_vendor.o(cleartime),
g: common_vendor.p({
name: "close-circle",
color: "#999999",
size: "40"
})
}, {
h: common_vendor.o(() => {
}),
i: common_vendor.o(showCalendar),
j: common_vendor.o(init),
k: common_vendor.f(common_vendor.unref(recordsList), (item, k0, i0) => {
return {
a: common_vendor.t(item.item),
b: common_vendor.t(item.conditionStr),
c: common_vendor.t(item.pickUpPlate),
d: common_vendor.t(item.consignee),
e: common_vendor.t(item.createTime),
f: common_vendor.t(item.createTime),
g: common_vendor.t(item.orderNum),
h: common_vendor.t(item.planNum),
i: common_vendor.t(item.signedNum),
j: common_vendor.o(($event) => goselscandetails(item)),
k: common_vendor.o(($event) => goselscan(item))
};
}),
l: common_vendor.o(jiazai),
m: common_vendor.o(showCalendar),
n: common_vendor.o(onConfirm),
o: common_vendor.o(($event) => common_vendor.isRef(show) ? show.value = $event : null),
p: common_vendor.p({
initStartDate: date.value[0],
initEndDate: date.value[1],
value: common_vendor.unref(show)
})
});
};
}
});
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "F:/物流/logPm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]);
wx.createPage(MiniProgramPage);