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.
132 lines
5.2 KiB
132 lines
5.2 KiB
2 years ago
|
"use strict";
|
||
|
const common_vendor = require("../../../common/vendor.js");
|
||
|
const uni_modules_fantMiniPlus_components_hdCalendar_index = require("../../../uni_modules/fant-mini-plus/components/hd-calendar/index.js");
|
||
|
const uni_modules_fantMiniPlus_libs_utils_CommonUtil = require("../../../uni_modules/fant-mini-plus/libs/utils/CommonUtil.js");
|
||
|
const api_user = require("../../../api/user.js");
|
||
|
require("../../../uni_modules/fant-mini-plus/libs/functions/reg.js");
|
||
|
require("../../../utils/request.js");
|
||
|
require("../../../store/index.js");
|
||
|
require("../../../utils/functions.js");
|
||
|
require("../../../utils/IDCardVerification.js");
|
||
|
require("../../../config/host.js");
|
||
|
require("../../../utils/base64.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_hd_calendar2 = common_vendor.resolveComponent("hd-calendar");
|
||
|
(_easycom_u_navbar2 + _easycom_u_icon2 + _easycom_hd_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_hd_calendar = () => "../../../uni_modules/fant-mini-plus/components/hd-calendar/hd-calendar.js";
|
||
|
if (!Math) {
|
||
|
(_easycom_u_navbar + _easycom_u_icon + _easycom_hd_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 calendar = uni_modules_fantMiniPlus_components_hdCalendar_index.useCalendar();
|
||
|
const date = common_vendor.ref([]);
|
||
|
function showCalendar() {
|
||
|
calendar.showCalendar();
|
||
|
}
|
||
|
function onConfirm(e) {
|
||
|
date.value = uni_modules_fantMiniPlus_libs_utils_CommonUtil.CommonUtil.deepClone(e);
|
||
|
details.datatime = common_vendor.index.$u.timeFormat(date.value[0], "yyyy-mm-dd") + " 至 " + common_vendor.index.$u.timeFormat(date.value[1], "yyyy-mm-dd");
|
||
|
}
|
||
|
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");
|
||
|
initpage();
|
||
|
});
|
||
|
async function initpage() {
|
||
|
let data = {
|
||
|
current: details.current,
|
||
|
size: details.size
|
||
|
// pickUpTimeStart:(uni as any).$u.timeFormat(date.value[0], 'yyyy-mm-dd'),
|
||
|
// pickUpTimeEnd:(uni as any).$u.timeFormat(date.value[1], 'yyyy-mm-dd'),
|
||
|
};
|
||
|
let response = await api_user.billLadingpageList(data);
|
||
|
details.recordsList = 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() {
|
||
|
console.log(1231211);
|
||
|
details.datatime = "";
|
||
|
}
|
||
|
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.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))
|
||
|
};
|
||
|
}),
|
||
|
k: common_vendor.o(onConfirm),
|
||
|
l: common_vendor.p({
|
||
|
defaultDate: date.value,
|
||
|
mode: "range",
|
||
|
color: "#D3832A",
|
||
|
minDate: "2023-01-01"
|
||
|
})
|
||
|
});
|
||
|
};
|
||
|
}
|
||
|
});
|
||
|
const MiniProgramPage = /* @__PURE__ */ common_vendor._export_sfc(_sfc_main, [["__file", "F:/物流/logPm/pagesHome/pages/SelfPickupScan/SelfPickupScan.vue"]]);
|
||
|
wx.createPage(MiniProgramPage);
|