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

174 lines
6.1 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 _component_tips = common_vendor.resolveComponent("tips");
const _easycom_l_calendar2 = common_vendor.resolveComponent("l-calendar");
(_easycom_u_navbar2 + _easycom_u_icon2 + _component_tips + _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: "pickingScan",
setup(__props) {
let details = common_vendor.reactive({
datatime: "",
dataList: [],
show: false,
currentPage: 1,
size: 10,
stockupDate: "",
status: 0
});
let tip = common_vendor.ref(null);
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.onShow(() => {
init();
});
common_vendor.onLoad(() => {
details.currentPage = 1;
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");
});
function init() {
details.currentPage = 1;
initpage();
}
function jiazai() {
details.currentPage++;
initpage();
}
async function initpage() {
let data = {
current: details.currentPage,
size: details.size,
stockupDateStart: date.value[0],
stockupDateEnd: date.value[1],
status: details.status
};
let response = await api_user.distributionStockuppageList(data);
if (details.currentPage == 1) {
details.dataList = response.data.records;
} else {
if (response.data.records.lngth == 0) {
common_vendor.index.showToast({
title: "已经到底了。",
icon: "none"
});
details.currentPage--;
return;
}
details.dataList = details.dataList.concat(response.data.records);
}
}
function gostockuplist(item) {
common_vendor.index.navigateTo({
url: "/pagesHome/pages/PickingScanList/PickingScanList?id=" + item.id + "&stockupArea=" + item.stockupArea
});
}
function cleartime() {
details.datatime = "";
date.value = [];
init();
}
function setstate(state) {
details.status = state;
initpage();
}
const { datatime, dataList, show, status } = 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.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.n(common_vendor.unref(status) == 0 ? "xz" : ""),
l: common_vendor.o(($event) => setstate(0)),
m: common_vendor.n(common_vendor.unref(status) == 1 ? "xz" : ""),
n: common_vendor.o(($event) => setstate(1)),
o: common_vendor.f(common_vendor.unref(dataList), (item, k0, i0) => {
return {
a: common_vendor.t(item.typeServiceStr),
b: common_vendor.t(item.stockupStatusStr),
c: common_vendor.t(item.customer),
d: common_vendor.t(item.stockupArea),
e: common_vendor.t(item.warehouseArea),
f: common_vendor.t(item.trays),
g: common_vendor.t(item.orderNum),
h: common_vendor.t(item.planNum),
i: common_vendor.t(item.realNum),
j: common_vendor.t(item.inventoryNub),
k: common_vendor.o(($event) => gostockuplist(item))
};
}),
p: common_vendor.o(jiazai),
q: common_vendor.sr(tip, "7babdaae-3", {
"k": "tip"
}),
r: common_vendor.o(showCalendar),
s: common_vendor.o(onConfirm),
t: common_vendor.o(($event) => common_vendor.isRef(show) ? show.value = $event : null),
v: 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/pickingScan/pickingScan.vue"]]);
wx.createPage(MiniProgramPage);