if (typeof Promise !== "undefined" && !Promise.prototype.finally) { Promise.prototype.finally = function(callback) { const promise = this.constructor; return this.then( (value) => promise.resolve(callback()).then(() => value), (reason) => promise.resolve(callback()).then(() => { throw reason; }) ); }; } ; if (typeof uni !== "undefined" && uni && uni.requireGlobal) { const global2 = uni.requireGlobal(); ArrayBuffer = global2.ArrayBuffer; Int8Array = global2.Int8Array; Uint8Array = global2.Uint8Array; Uint8ClampedArray = global2.Uint8ClampedArray; Int16Array = global2.Int16Array; Uint16Array = global2.Uint16Array; Int32Array = global2.Int32Array; Uint32Array = global2.Uint32Array; Float32Array = global2.Float32Array; Float64Array = global2.Float64Array; BigInt64Array = global2.BigInt64Array; BigUint64Array = global2.BigUint64Array; } ; if (uni.restoreGlobal) { uni.restoreGlobal(Vue, weex, plus, setTimeout, clearTimeout, setInterval, clearInterval); } (function(vue) { "use strict"; const _sfc_main$11 = /* @__PURE__ */ vue.defineComponent({ __name: "CustomNavbar", setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const __returned__ = { safeAreaInsets }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); const _imports_0$2 = "/static/images/logo.png"; const _export_sfc = (sfc, props) => { const target = sfc.__vccOpts || sfc; for (const [key, val] of props) { target[key] = val; } return target; }; function _sfc_render$10(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( "view", { class: "navbar", style: vue.normalizeStyle({ paddingTop: $setup.safeAreaInsets.top + 10 + "px" }) }, [ vue.createCommentVNode(" logo文字 "), vue.createElementVNode("view", { class: "logo" }, [ vue.createElementVNode("image", { class: "logo-image", src: _imports_0$2 }) ]) ], 4 /* STYLE */ ); } const CustomNavbar = /* @__PURE__ */ _export_sfc(_sfc_main$11, [["render", _sfc_render$10], ["__scopeId", "data-v-ff0d84a2"], ["__file", "E:/demo/hmrabbit/src/pages/index/components/CustomNavbar.vue"]]); const _sfc_main$10 = /* @__PURE__ */ vue.defineComponent({ __name: "CategoryPanel", props: { list: { type: Array, required: true } }, setup(__props, { expose: __expose }) { __expose(); const __returned__ = {}; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$$(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "category" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($props.list, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { class: "category-item", "hover-class": "none", url: item.target, key: item.id }, [ vue.createElementVNode( "view", { class: "icon", style: vue.normalizeStyle({ "background-image": `linear-gradient(45deg, ${item.colors[0]} 0%, ${item.colors[1]} 99%, ${item.colors[0]} 100%)` }) }, [ vue.createElementVNode("image", { class: "", src: item.icon }, null, 8, ["src"]) ], 4 /* STYLE */ ), vue.createElementVNode( "text", { class: "text" }, vue.toDisplayString(item.name), 1 /* TEXT */ ) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]); } const CategoryPanel = /* @__PURE__ */ _export_sfc(_sfc_main$10, [["render", _sfc_render$$], ["__scopeId", "data-v-44ae5a81"], ["__file", "E:/demo/hmrabbit/src/pages/index/components/CategoryPanel.vue"]]); const _sfc_main$$ = /* @__PURE__ */ vue.defineComponent({ __name: "index", setup(__props, { expose: __expose }) { __expose(); const categoryList = vue.ref([ { colors: ["#4facfe", "#00f2fe"], target: "/pages/inbound/inbound", icon: "/static/home/inbound.png", name: "入库" }, { colors: ["#6991c7", "#a3bded"], target: "/pages/weigh/weigh", icon: "/static/home/weigh.png", name: "称重" }, { colors: ["#005bea", "#00c6fb"], target: "/pages/outbound/outbound", icon: "/static/home/outbound.png", name: "出库" }, { colors: ["#667eea", "#764ba2"], target: "/pages/warehouseScan/warehouseScan", icon: "/static/home/houscan.png", name: "仓库扫描" }, { colors: ["#f83600", "#f9d423"], target: "/pages/printer/printer", icon: "/static/home/houscan.png", name: "打印" }, { colors: ["#ff0844", "#ffb199"], target: "/pages/scanLotno/scanLotno", icon: "/static/home/link.png", name: "托盘/批次" }, { colors: ["#29323c", "#485563"], target: "/pages/waybillNo/waybillNo", icon: "/static/home/link.png", name: "库位绑定" }, { colors: ["#2af598", "#009efd"], target: "/pages/pickup/waybillPickUpOrder", icon: "/static/home/pickup.png", name: "取件单" }, { colors: ["#4facfe", "#00f2fe"], target: "/pages/waybillDeliveryOrder/waybillDeliveryOrder", icon: "/static/home/dispatch.png", name: "派送单" } ]); const __returned__ = { categoryList, CustomNavbar, CategoryPanel }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$_(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 自定义导航栏 "), vue.createVNode($setup["CustomNavbar"]), vue.createCommentVNode(" 滚动容器 "), vue.createElementVNode("scroll-view", { "enable-back-to-top": "", "refresher-enabled": false, class: "scroll-view", "scroll-y": "" }, [ vue.createCommentVNode(" 分类面板 "), vue.createVNode($setup["CategoryPanel"], { list: $setup.categoryList }, null, 8, ["list"]) ]) ]); } const PagesIndexIndex = /* @__PURE__ */ _export_sfc(_sfc_main$$, [["render", _sfc_render$_], ["__file", "E:/demo/hmrabbit/src/pages/index/index.vue"]]); const _sfc_main$_ = /* @__PURE__ */ vue.defineComponent({ __name: "XtxSwiper", props: { list: { type: Array, required: true } }, setup(__props, { expose: __expose }) { __expose(); const activeIndex = vue.ref(0); const onChange = (ev) => { activeIndex.value = ev.detail.current; }; const __returned__ = { activeIndex, onChange }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$Z(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "carousel" }, [ vue.createElementVNode( "swiper", { circular: true, autoplay: false, interval: 3e3, onChange: $setup.onChange }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($props.list, (item) => { return vue.openBlock(), vue.createElementBlock("swiper-item", { key: item.id }, [ vue.createElementVNode("navigator", { url: "/pages/index/index", "hover-class": "none", class: "navigator" }, [ vue.createElementVNode("image", { mode: "aspectFill", class: "image", src: item.imgUrl }, null, 8, ["src"]) ]) ]); }), 128 /* KEYED_FRAGMENT */ )) ], 32 /* NEED_HYDRATION */ ), vue.createCommentVNode(" 指示点 "), vue.createElementVNode("view", { class: "indicator" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($props.list, (item, index) => { return vue.openBlock(), vue.createElementBlock( "text", { key: item.id, class: vue.normalizeClass(["dot", { active: index === $setup.activeIndex }]) }, null, 2 /* CLASS */ ); }), 128 /* KEYED_FRAGMENT */ )) ]) ]); } const __easycom_0$c = /* @__PURE__ */ _export_sfc(_sfc_main$_, [["render", _sfc_render$Z], ["__scopeId", "data-v-17cc3903"], ["__file", "E:/demo/hmrabbit/src/components/XtxSwiper.vue"]]); const ON_SHOW = "onShow"; const ON_HIDE = "onHide"; const ON_LAUNCH = "onLaunch"; const ON_LOAD = "onLoad"; const ON_UNLOAD = "onUnload"; const ON_BACK_PRESS = "onBackPress"; const ON_NAVIGATION_BAR_BUTTON_TAP = "onNavigationBarButtonTap"; function requireNativePlugin(name) { return weex.requireModule(name); } function formatAppLog(type, filename, ...args) { if (uni.__log__) { uni.__log__(type, filename, ...args); } else { console[type].apply(console, [...args, filename]); } } function resolveEasycom(component, easycom2) { return typeof component === "string" ? easycom2 : component; } const createHook = (lifecycle) => (hook, target = vue.getCurrentInstance()) => { !vue.isInSSRComponentSetup && vue.injectHook(lifecycle, hook, target); }; const onShow = /* @__PURE__ */ createHook(ON_SHOW); const onHide = /* @__PURE__ */ createHook(ON_HIDE); const onLaunch = /* @__PURE__ */ createHook(ON_LAUNCH); const onLoad = /* @__PURE__ */ createHook(ON_LOAD); const onUnload = /* @__PURE__ */ createHook(ON_UNLOAD); const onBackPress = /* @__PURE__ */ createHook(ON_BACK_PRESS); const onNavigationBarButtonTap = /* @__PURE__ */ createHook(ON_NAVIGATION_BAR_BUTTON_TAP); var isVue2 = false; function set$1(target, key, val) { if (Array.isArray(target)) { target.length = Math.max(target.length, key); target.splice(key, 1, val); return val; } target[key] = val; return val; } function del(target, key) { if (Array.isArray(target)) { target.splice(key, 1); return; } delete target[key]; } function getDevtoolsGlobalHook() { return getTarget().__VUE_DEVTOOLS_GLOBAL_HOOK__; } function getTarget() { return typeof navigator !== "undefined" && typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : {}; } const isProxyAvailable = typeof Proxy === "function"; const HOOK_SETUP = "devtools-plugin:setup"; const HOOK_PLUGIN_SETTINGS_SET = "plugin:settings:set"; let supported; let perf; function isPerformanceSupported() { var _a; if (supported !== void 0) { return supported; } if (typeof window !== "undefined" && window.performance) { supported = true; perf = window.performance; } else if (typeof global !== "undefined" && ((_a = global.perf_hooks) === null || _a === void 0 ? void 0 : _a.performance)) { supported = true; perf = global.perf_hooks.performance; } else { supported = false; } return supported; } function now() { return isPerformanceSupported() ? perf.now() : Date.now(); } class ApiProxy { constructor(plugin, hook) { this.target = null; this.targetQueue = []; this.onQueue = []; this.plugin = plugin; this.hook = hook; const defaultSettings = {}; if (plugin.settings) { for (const id in plugin.settings) { const item = plugin.settings[id]; defaultSettings[id] = item.defaultValue; } } const localSettingsSaveId = `__vue-devtools-plugin-settings__${plugin.id}`; let currentSettings = Object.assign({}, defaultSettings); try { const raw = localStorage.getItem(localSettingsSaveId); const data = JSON.parse(raw); Object.assign(currentSettings, data); } catch (e2) { } this.fallbacks = { getSettings() { return currentSettings; }, setSettings(value) { try { localStorage.setItem(localSettingsSaveId, JSON.stringify(value)); } catch (e2) { } currentSettings = value; }, now() { return now(); } }; if (hook) { hook.on(HOOK_PLUGIN_SETTINGS_SET, (pluginId, value) => { if (pluginId === this.plugin.id) { this.fallbacks.setSettings(value); } }); } this.proxiedOn = new Proxy({}, { get: (_target, prop) => { if (this.target) { return this.target.on[prop]; } else { return (...args) => { this.onQueue.push({ method: prop, args }); }; } } }); this.proxiedTarget = new Proxy({}, { get: (_target, prop) => { if (this.target) { return this.target[prop]; } else if (prop === "on") { return this.proxiedOn; } else if (Object.keys(this.fallbacks).includes(prop)) { return (...args) => { this.targetQueue.push({ method: prop, args, resolve: () => { } }); return this.fallbacks[prop](...args); }; } else { return (...args) => { return new Promise((resolve) => { this.targetQueue.push({ method: prop, args, resolve }); }); }; } } }); } async setRealTarget(target) { this.target = target; for (const item of this.onQueue) { this.target.on[item.method](...item.args); } for (const item of this.targetQueue) { item.resolve(await this.target[item.method](...item.args)); } } } function setupDevtoolsPlugin(pluginDescriptor, setupFn) { const descriptor = pluginDescriptor; const target = getTarget(); const hook = getDevtoolsGlobalHook(); const enableProxy = isProxyAvailable && descriptor.enableEarlyProxy; if (hook && (target.__VUE_DEVTOOLS_PLUGIN_API_AVAILABLE__ || !enableProxy)) { hook.emit(HOOK_SETUP, pluginDescriptor, setupFn); } else { const proxy = enableProxy ? new ApiProxy(descriptor, hook) : null; const list = target.__VUE_DEVTOOLS_PLUGINS__ = target.__VUE_DEVTOOLS_PLUGINS__ || []; list.push({ pluginDescriptor: descriptor, setupFn, proxy }); if (proxy) setupFn(proxy.proxiedTarget); } } /*! * pinia v2.0.27 * (c) 2022 Eduardo San Martin Morote * @license MIT */ let activePinia; const setActivePinia = (pinia2) => activePinia = pinia2; const piniaSymbol = Symbol("pinia"); function isPlainObject(o2) { return o2 && typeof o2 === "object" && Object.prototype.toString.call(o2) === "[object Object]" && typeof o2.toJSON !== "function"; } var MutationType; (function(MutationType2) { MutationType2["direct"] = "direct"; MutationType2["patchObject"] = "patch object"; MutationType2["patchFunction"] = "patch function"; })(MutationType || (MutationType = {})); const IS_CLIENT = typeof window !== "undefined"; const USE_DEVTOOLS = IS_CLIENT; const _global = /* @__PURE__ */ (() => typeof window === "object" && window.window === window ? window : typeof self === "object" && self.self === self ? self : typeof global === "object" && global.global === global ? global : typeof globalThis === "object" ? globalThis : { HTMLElement: null })(); function bom(blob, { autoBom = false } = {}) { if (autoBom && /^\s*(?:text\/\S*|application\/xml|\S*\/\S*\+xml)\s*;.*charset\s*=\s*utf-8/i.test(blob.type)) { return new Blob([String.fromCharCode(65279), blob], { type: blob.type }); } return blob; } function download(url, name, opts) { const xhr = new XMLHttpRequest(); xhr.open("GET", url); xhr.responseType = "blob"; xhr.onload = function() { saveAs(xhr.response, name, opts); }; xhr.onerror = function() { console.error("could not download file"); }; xhr.send(); } function corsEnabled(url) { const xhr = new XMLHttpRequest(); xhr.open("HEAD", url, false); try { xhr.send(); } catch (e2) { } return xhr.status >= 200 && xhr.status <= 299; } function click(node) { try { node.dispatchEvent(new MouseEvent("click")); } catch (e2) { const evt = document.createEvent("MouseEvents"); evt.initMouseEvent("click", true, true, window, 0, 0, 0, 80, 20, false, false, false, false, 0, null); node.dispatchEvent(evt); } } const _navigator = typeof navigator === "object" ? navigator : { userAgent: "" }; const isMacOSWebView = /* @__PURE__ */ (() => /Macintosh/.test(_navigator.userAgent) && /AppleWebKit/.test(_navigator.userAgent) && !/Safari/.test(_navigator.userAgent))(); const saveAs = !IS_CLIENT ? () => { } : ( // Use download attribute first if possible (#193 Lumia mobile) unless this is a macOS WebView or mini program typeof HTMLAnchorElement !== "undefined" && "download" in HTMLAnchorElement.prototype && !isMacOSWebView ? downloadSaveAs : ( // Use msSaveOrOpenBlob as a second approach "msSaveOrOpenBlob" in _navigator ? msSaveAs : ( // Fallback to using FileReader and a popup fileSaverSaveAs ) ) ); function downloadSaveAs(blob, name = "download", opts) { const a2 = document.createElement("a"); a2.download = name; a2.rel = "noopener"; if (typeof blob === "string") { a2.href = blob; if (a2.origin !== location.origin) { if (corsEnabled(a2.href)) { download(blob, name, opts); } else { a2.target = "_blank"; click(a2); } } else { click(a2); } } else { a2.href = URL.createObjectURL(blob); setTimeout(function() { URL.revokeObjectURL(a2.href); }, 4e4); setTimeout(function() { click(a2); }, 0); } } function msSaveAs(blob, name = "download", opts) { if (typeof blob === "string") { if (corsEnabled(blob)) { download(blob, name, opts); } else { const a2 = document.createElement("a"); a2.href = blob; a2.target = "_blank"; setTimeout(function() { click(a2); }); } } else { navigator.msSaveOrOpenBlob(bom(blob, opts), name); } } function fileSaverSaveAs(blob, name, opts, popup2) { popup2 = popup2 || open("", "_blank"); if (popup2) { popup2.document.title = popup2.document.body.innerText = "downloading..."; } if (typeof blob === "string") return download(blob, name, opts); const force = blob.type === "application/octet-stream"; const isSafari = /constructor/i.test(String(_global.HTMLElement)) || "safari" in _global; const isChromeIOS = /CriOS\/[\d]+/.test(navigator.userAgent); if ((isChromeIOS || force && isSafari || isMacOSWebView) && typeof FileReader !== "undefined") { const reader = new FileReader(); reader.onloadend = function() { let url = reader.result; if (typeof url !== "string") { popup2 = null; throw new Error("Wrong reader.result type"); } url = isChromeIOS ? url : url.replace(/^data:[^;]*;/, "data:attachment/file;"); if (popup2) { popup2.location.href = url; } else { location.assign(url); } popup2 = null; }; reader.readAsDataURL(blob); } else { const url = URL.createObjectURL(blob); if (popup2) popup2.location.assign(url); else location.href = url; popup2 = null; setTimeout(function() { URL.revokeObjectURL(url); }, 4e4); } } function toastMessage(message, type) { const piniaMessage = "🍍 " + message; if (typeof __VUE_DEVTOOLS_TOAST__ === "function") { __VUE_DEVTOOLS_TOAST__(piniaMessage, type); } else if (type === "error") { console.error(piniaMessage); } else if (type === "warn") { console.warn(piniaMessage); } else { console.log(piniaMessage); } } function isPinia(o2) { return "_a" in o2 && "install" in o2; } function checkClipboardAccess() { if (!("clipboard" in navigator)) { toastMessage(`Your browser doesn't support the Clipboard API`, "error"); return true; } } function checkNotFocusedError(error) { if (error instanceof Error && error.message.toLowerCase().includes("document is not focused")) { toastMessage('You need to activate the "Emulate a focused page" setting in the "Rendering" panel of devtools.', "warn"); return true; } return false; } async function actionGlobalCopyState(pinia2) { if (checkClipboardAccess()) return; try { await navigator.clipboard.writeText(JSON.stringify(pinia2.state.value)); toastMessage("Global state copied to clipboard."); } catch (error) { if (checkNotFocusedError(error)) return; toastMessage(`Failed to serialize the state. Check the console for more details.`, "error"); console.error(error); } } async function actionGlobalPasteState(pinia2) { if (checkClipboardAccess()) return; try { pinia2.state.value = JSON.parse(await navigator.clipboard.readText()); toastMessage("Global state pasted from clipboard."); } catch (error) { if (checkNotFocusedError(error)) return; toastMessage(`Failed to deserialize the state from clipboard. Check the console for more details.`, "error"); console.error(error); } } async function actionGlobalSaveState(pinia2) { try { saveAs(new Blob([JSON.stringify(pinia2.state.value)], { type: "text/plain;charset=utf-8" }), "pinia-state.json"); } catch (error) { toastMessage(`Failed to export the state as JSON. Check the console for more details.`, "error"); console.error(error); } } let fileInput; function getFileOpener() { if (!fileInput) { fileInput = document.createElement("input"); fileInput.type = "file"; fileInput.accept = ".json"; } function openFile() { return new Promise((resolve, reject) => { fileInput.onchange = async () => { const files = fileInput.files; if (!files) return resolve(null); const file = files.item(0); if (!file) return resolve(null); return resolve({ text: await file.text(), file }); }; fileInput.oncancel = () => resolve(null); fileInput.onerror = reject; fileInput.click(); }); } return openFile; } async function actionGlobalOpenStateFile(pinia2) { try { const open2 = await getFileOpener(); const result = await open2(); if (!result) return; const { text, file } = result; pinia2.state.value = JSON.parse(text); toastMessage(`Global state imported from "${file.name}".`); } catch (error) { toastMessage(`Failed to export the state as JSON. Check the console for more details.`, "error"); console.error(error); } } function formatDisplay(display) { return { _custom: { display } }; } const PINIA_ROOT_LABEL = "🍍 Pinia (root)"; const PINIA_ROOT_ID = "_root"; function formatStoreForInspectorTree(store) { return isPinia(store) ? { id: PINIA_ROOT_ID, label: PINIA_ROOT_LABEL } : { id: store.$id, label: store.$id }; } function formatStoreForInspectorState(store) { if (isPinia(store)) { const storeNames = Array.from(store._s.keys()); const storeMap = store._s; const state2 = { state: storeNames.map((storeId) => ({ editable: true, key: storeId, value: store.state.value[storeId] })), getters: storeNames.filter((id) => storeMap.get(id)._getters).map((id) => { const store2 = storeMap.get(id); return { editable: false, key: id, value: store2._getters.reduce((getters, key) => { getters[key] = store2[key]; return getters; }, {}) }; }) }; return state2; } const state = { state: Object.keys(store.$state).map((key) => ({ editable: true, key, value: store.$state[key] })) }; if (store._getters && store._getters.length) { state.getters = store._getters.map((getterName) => ({ editable: false, key: getterName, value: store[getterName] })); } if (store._customProperties.size) { state.customProperties = Array.from(store._customProperties).map((key) => ({ editable: true, key, value: store[key] })); } return state; } function formatEventData(events) { if (!events) return {}; if (Array.isArray(events)) { return events.reduce((data, event) => { data.keys.push(event.key); data.operations.push(event.type); data.oldValue[event.key] = event.oldValue; data.newValue[event.key] = event.newValue; return data; }, { oldValue: {}, keys: [], operations: [], newValue: {} }); } else { return { operation: formatDisplay(events.type), key: formatDisplay(events.key), oldValue: events.oldValue, newValue: events.newValue }; } } function formatMutationType(type) { switch (type) { case MutationType.direct: return "mutation"; case MutationType.patchFunction: return "$patch"; case MutationType.patchObject: return "$patch"; default: return "unknown"; } } let isTimelineActive = true; const componentStateTypes = []; const MUTATIONS_LAYER_ID = "pinia:mutations"; const INSPECTOR_ID = "pinia"; const getStoreType = (id) => "🍍 " + id; function registerPiniaDevtools(app, pinia2) { setupDevtoolsPlugin({ id: "dev.esm.pinia", label: "Pinia 🍍", logo: "https://pinia.vuejs.org/logo.svg", packageName: "pinia", homepage: "https://pinia.vuejs.org", componentStateTypes, app }, (api) => { if (typeof api.now !== "function") { toastMessage("You seem to be using an outdated version of Vue Devtools. Are you still using the Beta release instead of the stable one? You can find the links at https://devtools.vuejs.org/guide/installation.html."); } api.addTimelineLayer({ id: MUTATIONS_LAYER_ID, label: `Pinia 🍍`, color: 15064968 }); api.addInspector({ id: INSPECTOR_ID, label: "Pinia 🍍", icon: "storage", treeFilterPlaceholder: "Search stores", actions: [ { icon: "content_copy", action: () => { actionGlobalCopyState(pinia2); }, tooltip: "Serialize and copy the state" }, { icon: "content_paste", action: async () => { await actionGlobalPasteState(pinia2); api.sendInspectorTree(INSPECTOR_ID); api.sendInspectorState(INSPECTOR_ID); }, tooltip: "Replace the state with the content of your clipboard" }, { icon: "save", action: () => { actionGlobalSaveState(pinia2); }, tooltip: "Save the state as a JSON file" }, { icon: "folder_open", action: async () => { await actionGlobalOpenStateFile(pinia2); api.sendInspectorTree(INSPECTOR_ID); api.sendInspectorState(INSPECTOR_ID); }, tooltip: "Import the state from a JSON file" } ], nodeActions: [ { icon: "restore", tooltip: "Reset the state (option store only)", action: (nodeId) => { const store = pinia2._s.get(nodeId); if (!store) { toastMessage(`Cannot reset "${nodeId}" store because it wasn't found.`, "warn"); } else if (!store._isOptionsAPI) { toastMessage(`Cannot reset "${nodeId}" store because it's a setup store.`, "warn"); } else { store.$reset(); toastMessage(`Store "${nodeId}" reset.`); } } } ] }); api.on.inspectComponent((payload, ctx) => { const proxy = payload.componentInstance && payload.componentInstance.proxy; if (proxy && proxy._pStores) { const piniaStores = payload.componentInstance.proxy._pStores; Object.values(piniaStores).forEach((store) => { payload.instanceData.state.push({ type: getStoreType(store.$id), key: "state", editable: true, value: store._isOptionsAPI ? { _custom: { value: vue.toRaw(store.$state), actions: [ { icon: "restore", tooltip: "Reset the state of this store", action: () => store.$reset() } ] } } : ( // NOTE: workaround to unwrap transferred refs Object.keys(store.$state).reduce((state, key) => { state[key] = store.$state[key]; return state; }, {}) ) }); if (store._getters && store._getters.length) { payload.instanceData.state.push({ type: getStoreType(store.$id), key: "getters", editable: false, value: store._getters.reduce((getters, key) => { try { getters[key] = store[key]; } catch (error) { getters[key] = error; } return getters; }, {}) }); } }); } }); api.on.getInspectorTree((payload) => { if (payload.app === app && payload.inspectorId === INSPECTOR_ID) { let stores = [pinia2]; stores = stores.concat(Array.from(pinia2._s.values())); payload.rootNodes = (payload.filter ? stores.filter((store) => "$id" in store ? store.$id.toLowerCase().includes(payload.filter.toLowerCase()) : PINIA_ROOT_LABEL.toLowerCase().includes(payload.filter.toLowerCase())) : stores).map(formatStoreForInspectorTree); } }); api.on.getInspectorState((payload) => { if (payload.app === app && payload.inspectorId === INSPECTOR_ID) { const inspectedStore = payload.nodeId === PINIA_ROOT_ID ? pinia2 : pinia2._s.get(payload.nodeId); if (!inspectedStore) { return; } if (inspectedStore) { payload.state = formatStoreForInspectorState(inspectedStore); } } }); api.on.editInspectorState((payload, ctx) => { if (payload.app === app && payload.inspectorId === INSPECTOR_ID) { const inspectedStore = payload.nodeId === PINIA_ROOT_ID ? pinia2 : pinia2._s.get(payload.nodeId); if (!inspectedStore) { return toastMessage(`store "${payload.nodeId}" not found`, "error"); } const { path } = payload; if (!isPinia(inspectedStore)) { if (path.length !== 1 || !inspectedStore._customProperties.has(path[0]) || path[0] in inspectedStore.$state) { path.unshift("$state"); } } else { path.unshift("state"); } isTimelineActive = false; payload.set(inspectedStore, path, payload.state.value); isTimelineActive = true; } }); api.on.editComponentState((payload) => { if (payload.type.startsWith("🍍")) { const storeId = payload.type.replace(/^🍍\s*/, ""); const store = pinia2._s.get(storeId); if (!store) { return toastMessage(`store "${storeId}" not found`, "error"); } const { path } = payload; if (path[0] !== "state") { return toastMessage(`Invalid path for store "${storeId}": ${path} Only state can be modified.`); } path[0] = "$state"; isTimelineActive = false; payload.set(store, path, payload.state.value); isTimelineActive = true; } }); }); } function addStoreToDevtools(app, store) { if (!componentStateTypes.includes(getStoreType(store.$id))) { componentStateTypes.push(getStoreType(store.$id)); } setupDevtoolsPlugin({ id: "dev.esm.pinia", label: "Pinia 🍍", logo: "https://pinia.vuejs.org/logo.svg", packageName: "pinia", homepage: "https://pinia.vuejs.org", componentStateTypes, app, settings: { logStoreChanges: { label: "Notify about new/deleted stores", type: "boolean", defaultValue: true } // useEmojis: { // label: 'Use emojis in messages ⚡️', // type: 'boolean', // defaultValue: true, // }, } }, (api) => { const now2 = typeof api.now === "function" ? api.now.bind(api) : Date.now; store.$onAction(({ after, onError, name, args }) => { const groupId = runningActionId++; api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { time: now2(), title: "🛫 " + name, subtitle: "start", data: { store: formatDisplay(store.$id), action: formatDisplay(name), args }, groupId } }); after((result) => { activeAction = void 0; api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { time: now2(), title: "🛬 " + name, subtitle: "end", data: { store: formatDisplay(store.$id), action: formatDisplay(name), args, result }, groupId } }); }); onError((error) => { activeAction = void 0; api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { time: now2(), logType: "error", title: "💥 " + name, subtitle: "end", data: { store: formatDisplay(store.$id), action: formatDisplay(name), args, error }, groupId } }); }); }, true); store._customProperties.forEach((name) => { vue.watch(() => vue.unref(store[name]), (newValue, oldValue) => { api.notifyComponentUpdate(); api.sendInspectorState(INSPECTOR_ID); if (isTimelineActive) { api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { time: now2(), title: "Change", subtitle: name, data: { newValue, oldValue }, groupId: activeAction } }); } }, { deep: true }); }); store.$subscribe(({ events, type }, state) => { api.notifyComponentUpdate(); api.sendInspectorState(INSPECTOR_ID); if (!isTimelineActive) return; const eventData = { time: now2(), title: formatMutationType(type), data: { store: formatDisplay(store.$id), ...formatEventData(events) }, groupId: activeAction }; activeAction = void 0; if (type === MutationType.patchFunction) { eventData.subtitle = "⤵️"; } else if (type === MutationType.patchObject) { eventData.subtitle = "🧩"; } else if (events && !Array.isArray(events)) { eventData.subtitle = events.type; } if (events) { eventData.data["rawEvent(s)"] = { _custom: { display: "DebuggerEvent", type: "object", tooltip: "raw DebuggerEvent[]", value: events } }; } api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: eventData }); }, { detached: true, flush: "sync" }); const hotUpdate = store._hotUpdate; store._hotUpdate = vue.markRaw((newStore) => { hotUpdate(newStore); api.addTimelineEvent({ layerId: MUTATIONS_LAYER_ID, event: { time: now2(), title: "🔥 " + store.$id, subtitle: "HMR update", data: { store: formatDisplay(store.$id), info: formatDisplay(`HMR update`) } } }); api.notifyComponentUpdate(); api.sendInspectorTree(INSPECTOR_ID); api.sendInspectorState(INSPECTOR_ID); }); const { $dispose } = store; store.$dispose = () => { $dispose(); api.notifyComponentUpdate(); api.sendInspectorTree(INSPECTOR_ID); api.sendInspectorState(INSPECTOR_ID); api.getSettings().logStoreChanges && toastMessage(`Disposed "${store.$id}" store 🗑`); }; api.notifyComponentUpdate(); api.sendInspectorTree(INSPECTOR_ID); api.sendInspectorState(INSPECTOR_ID); api.getSettings().logStoreChanges && toastMessage(`"${store.$id}" store installed 🆕`); }); } let runningActionId = 0; let activeAction; function patchActionForGrouping(store, actionNames) { const actions = actionNames.reduce((storeActions, actionName) => { storeActions[actionName] = vue.toRaw(store)[actionName]; return storeActions; }, {}); for (const actionName in actions) { store[actionName] = function() { const _actionId = runningActionId; const trackedStore = new Proxy(store, { get(...args) { activeAction = _actionId; return Reflect.get(...args); }, set(...args) { activeAction = _actionId; return Reflect.set(...args); } }); return actions[actionName].apply(trackedStore, arguments); }; } } function devtoolsPlugin({ app, store, options }) { if (store.$id.startsWith("__hot:")) { return; } if (options.state) { store._isOptionsAPI = true; } if (typeof options.state === "function") { patchActionForGrouping( // @ts-expect-error: can cast the store... store, Object.keys(options.actions) ); const originalHotUpdate = store._hotUpdate; vue.toRaw(store)._hotUpdate = function(newStore) { originalHotUpdate.apply(this, arguments); patchActionForGrouping(store, Object.keys(newStore._hmrPayload.actions)); }; } addStoreToDevtools( app, // FIXME: is there a way to allow the assignment from Store to StoreGeneric? store ); } function createPinia() { const scope = vue.effectScope(true); const state = scope.run(() => vue.ref({})); let _p = []; let toBeInstalled = []; const pinia2 = vue.markRaw({ install(app) { setActivePinia(pinia2); { pinia2._a = app; app.provide(piniaSymbol, pinia2); app.config.globalProperties.$pinia = pinia2; if (USE_DEVTOOLS) { registerPiniaDevtools(app, pinia2); } toBeInstalled.forEach((plugin) => _p.push(plugin)); toBeInstalled = []; } }, use(plugin) { if (!this._a && !isVue2) { toBeInstalled.push(plugin); } else { _p.push(plugin); } return this; }, _p, // it's actually undefined here // @ts-expect-error _a: null, _e: scope, _s: /* @__PURE__ */ new Map(), state }); if (USE_DEVTOOLS && typeof Proxy !== "undefined") { pinia2.use(devtoolsPlugin); } return pinia2; } function patchObject(newState, oldState) { for (const key in oldState) { const subPatch = oldState[key]; if (!(key in newState)) { continue; } const targetValue = newState[key]; if (isPlainObject(targetValue) && isPlainObject(subPatch) && !vue.isRef(subPatch) && !vue.isReactive(subPatch)) { newState[key] = patchObject(targetValue, subPatch); } else { { newState[key] = subPatch; } } } return newState; } const noop = () => { }; function addSubscription(subscriptions, callback, detached, onCleanup = noop) { subscriptions.push(callback); const removeSubscription = () => { const idx = subscriptions.indexOf(callback); if (idx > -1) { subscriptions.splice(idx, 1); onCleanup(); } }; if (!detached && vue.getCurrentScope()) { vue.onScopeDispose(removeSubscription); } return removeSubscription; } function triggerSubscriptions(subscriptions, ...args) { subscriptions.slice().forEach((callback) => { callback(...args); }); } function mergeReactiveObjects(target, patchToApply) { if (target instanceof Map && patchToApply instanceof Map) { patchToApply.forEach((value, key) => target.set(key, value)); } if (target instanceof Set && patchToApply instanceof Set) { patchToApply.forEach(target.add, target); } for (const key in patchToApply) { if (!patchToApply.hasOwnProperty(key)) continue; const subPatch = patchToApply[key]; const targetValue = target[key]; if (isPlainObject(targetValue) && isPlainObject(subPatch) && target.hasOwnProperty(key) && !vue.isRef(subPatch) && !vue.isReactive(subPatch)) { target[key] = mergeReactiveObjects(targetValue, subPatch); } else { target[key] = subPatch; } } return target; } const skipHydrateSymbol = Symbol("pinia:skipHydration"); function shouldHydrate(obj) { return !isPlainObject(obj) || !obj.hasOwnProperty(skipHydrateSymbol); } const { assign } = Object; function isComputed(o2) { return !!(vue.isRef(o2) && o2.effect); } function createOptionsStore(id, options, pinia2, hot) { const { state, actions, getters } = options; const initialState = pinia2.state.value[id]; let store; function setup() { if (!initialState && !hot) { { pinia2.state.value[id] = state ? state() : {}; } } const localState = hot ? ( // use ref() to unwrap refs inside state TODO: check if this is still necessary vue.toRefs(vue.ref(state ? state() : {}).value) ) : vue.toRefs(pinia2.state.value[id]); return assign(localState, actions, Object.keys(getters || {}).reduce((computedGetters, name) => { if (name in localState) { console.warn(`[🍍]: A getter cannot have the same name as another state property. Rename one of them. Found with "${name}" in store "${id}".`); } computedGetters[name] = vue.markRaw(vue.computed(() => { setActivePinia(pinia2); const store2 = pinia2._s.get(id); return getters[name].call(store2, store2); })); return computedGetters; }, {})); } store = createSetupStore(id, setup, options, pinia2, hot, true); store.$reset = function $reset() { const newState = state ? state() : {}; this.$patch(($state) => { assign($state, newState); }); }; return store; } function createSetupStore($id, setup, options = {}, pinia2, hot, isOptionsStore) { let scope; const optionsForPlugin = assign({ actions: {} }, options); if (!pinia2._e.active) { throw new Error("Pinia destroyed"); } const $subscribeOptions = { deep: true // flush: 'post', }; { $subscribeOptions.onTrigger = (event) => { if (isListening) { debuggerEvents = event; } else if (isListening == false && !store._hotUpdating) { if (Array.isArray(debuggerEvents)) { debuggerEvents.push(event); } else { console.error("🍍 debuggerEvents should be an array. This is most likely an internal Pinia bug."); } } }; } let isListening; let isSyncListening; let subscriptions = vue.markRaw([]); let actionSubscriptions = vue.markRaw([]); let debuggerEvents; const initialState = pinia2.state.value[$id]; if (!isOptionsStore && !initialState && !hot) { { pinia2.state.value[$id] = {}; } } const hotState = vue.ref({}); let activeListener; function $patch(partialStateOrMutator) { let subscriptionMutation; isListening = isSyncListening = false; { debuggerEvents = []; } if (typeof partialStateOrMutator === "function") { partialStateOrMutator(pinia2.state.value[$id]); subscriptionMutation = { type: MutationType.patchFunction, storeId: $id, events: debuggerEvents }; } else { mergeReactiveObjects(pinia2.state.value[$id], partialStateOrMutator); subscriptionMutation = { type: MutationType.patchObject, payload: partialStateOrMutator, storeId: $id, events: debuggerEvents }; } const myListenerId = activeListener = Symbol(); vue.nextTick().then(() => { if (activeListener === myListenerId) { isListening = true; } }); isSyncListening = true; triggerSubscriptions(subscriptions, subscriptionMutation, pinia2.state.value[$id]); } const $reset = () => { throw new Error(`🍍: Store "${$id}" is built using the setup syntax and does not implement $reset().`); }; function $dispose() { scope.stop(); subscriptions = []; actionSubscriptions = []; pinia2._s.delete($id); } function wrapAction(name, action) { return function() { setActivePinia(pinia2); const args = Array.from(arguments); const afterCallbackList = []; const onErrorCallbackList = []; function after(callback) { afterCallbackList.push(callback); } function onError(callback) { onErrorCallbackList.push(callback); } triggerSubscriptions(actionSubscriptions, { args, name, store, after, onError }); let ret; try { ret = action.apply(this && this.$id === $id ? this : store, args); } catch (error) { triggerSubscriptions(onErrorCallbackList, error); throw error; } if (ret instanceof Promise) { return ret.then((value) => { triggerSubscriptions(afterCallbackList, value); return value; }).catch((error) => { triggerSubscriptions(onErrorCallbackList, error); return Promise.reject(error); }); } triggerSubscriptions(afterCallbackList, ret); return ret; }; } const _hmrPayload = /* @__PURE__ */ vue.markRaw({ actions: {}, getters: {}, state: [], hotState }); const partialStore = { _p: pinia2, // _s: scope, $id, $onAction: addSubscription.bind(null, actionSubscriptions), $patch, $reset, $subscribe(callback, options2 = {}) { const removeSubscription = addSubscription(subscriptions, callback, options2.detached, () => stopWatcher()); const stopWatcher = scope.run(() => vue.watch(() => pinia2.state.value[$id], (state) => { if (options2.flush === "sync" ? isSyncListening : isListening) { callback({ storeId: $id, type: MutationType.direct, events: debuggerEvents }, state); } }, assign({}, $subscribeOptions, options2))); return removeSubscription; }, $dispose }; const store = vue.reactive(assign( { _hmrPayload, _customProperties: vue.markRaw(/* @__PURE__ */ new Set()) // devtools custom properties }, partialStore // must be added later // setupStore )); pinia2._s.set($id, store); const setupStore = pinia2._e.run(() => { scope = vue.effectScope(); return scope.run(() => setup()); }); for (const key in setupStore) { const prop = setupStore[key]; if (vue.isRef(prop) && !isComputed(prop) || vue.isReactive(prop)) { if (hot) { set$1(hotState.value, key, vue.toRef(setupStore, key)); } else if (!isOptionsStore) { if (initialState && shouldHydrate(prop)) { if (vue.isRef(prop)) { prop.value = initialState[key]; } else { mergeReactiveObjects(prop, initialState[key]); } } { pinia2.state.value[$id][key] = prop; } } { _hmrPayload.state.push(key); } } else if (typeof prop === "function") { const actionValue = hot ? prop : wrapAction(key, prop); { setupStore[key] = actionValue; } { _hmrPayload.actions[key] = prop; } optionsForPlugin.actions[key] = prop; } else { if (isComputed(prop)) { _hmrPayload.getters[key] = isOptionsStore ? ( // @ts-expect-error options.getters[key] ) : prop; if (IS_CLIENT) { const getters = setupStore._getters || // @ts-expect-error: same (setupStore._getters = vue.markRaw([])); getters.push(key); } } } } { assign(store, setupStore); assign(vue.toRaw(store), setupStore); } Object.defineProperty(store, "$state", { get: () => hot ? hotState.value : pinia2.state.value[$id], set: (state) => { if (hot) { throw new Error("cannot set hotState"); } $patch(($state) => { assign($state, state); }); } }); { store._hotUpdate = vue.markRaw((newStore) => { store._hotUpdating = true; newStore._hmrPayload.state.forEach((stateKey) => { if (stateKey in store.$state) { const newStateTarget = newStore.$state[stateKey]; const oldStateSource = store.$state[stateKey]; if (typeof newStateTarget === "object" && isPlainObject(newStateTarget) && isPlainObject(oldStateSource)) { patchObject(newStateTarget, oldStateSource); } else { newStore.$state[stateKey] = oldStateSource; } } set$1(store, stateKey, vue.toRef(newStore.$state, stateKey)); }); Object.keys(store.$state).forEach((stateKey) => { if (!(stateKey in newStore.$state)) { del(store, stateKey); } }); isListening = false; isSyncListening = false; pinia2.state.value[$id] = vue.toRef(newStore._hmrPayload, "hotState"); isSyncListening = true; vue.nextTick().then(() => { isListening = true; }); for (const actionName in newStore._hmrPayload.actions) { const action = newStore[actionName]; set$1(store, actionName, wrapAction(actionName, action)); } for (const getterName in newStore._hmrPayload.getters) { const getter = newStore._hmrPayload.getters[getterName]; const getterValue = isOptionsStore ? ( // special handling of options api vue.computed(() => { setActivePinia(pinia2); return getter.call(store, store); }) ) : getter; set$1(store, getterName, getterValue); } Object.keys(store._hmrPayload.getters).forEach((key) => { if (!(key in newStore._hmrPayload.getters)) { del(store, key); } }); Object.keys(store._hmrPayload.actions).forEach((key) => { if (!(key in newStore._hmrPayload.actions)) { del(store, key); } }); store._hmrPayload = newStore._hmrPayload; store._getters = newStore._getters; store._hotUpdating = false; }); } if (USE_DEVTOOLS) { const nonEnumerable = { writable: true, configurable: true, // avoid warning on devtools trying to display this property enumerable: false }; ["_p", "_hmrPayload", "_getters", "_customProperties"].forEach((p2) => { Object.defineProperty(store, p2, { value: store[p2], ...nonEnumerable }); }); } pinia2._p.forEach((extender) => { if (USE_DEVTOOLS) { const extensions = scope.run(() => extender({ store, app: pinia2._a, pinia: pinia2, options: optionsForPlugin })); Object.keys(extensions || {}).forEach((key) => store._customProperties.add(key)); assign(store, extensions); } else { assign(store, scope.run(() => extender({ store, app: pinia2._a, pinia: pinia2, options: optionsForPlugin }))); } }); if (store.$state && typeof store.$state === "object" && typeof store.$state.constructor === "function" && !store.$state.constructor.toString().includes("[native code]")) { console.warn(`[🍍]: The "state" must be a plain object. It cannot be state: () => new MyClass() Found in store "${store.$id}".`); } if (initialState && isOptionsStore && options.hydrate) { options.hydrate(store.$state, initialState); } isListening = true; isSyncListening = true; return store; } function defineStore(idOrOptions, setup, setupOptions) { let id; let options; const isSetupStore = typeof setup === "function"; if (typeof idOrOptions === "string") { id = idOrOptions; options = isSetupStore ? setupOptions : setup; } else { options = idOrOptions; id = idOrOptions.id; } function useStore(pinia2, hot) { const currentInstance = vue.getCurrentInstance(); pinia2 = // in test mode, ignore the argument provided as we can always retrieve a // pinia instance with getActivePinia() pinia2 || currentInstance && vue.inject(piniaSymbol); if (pinia2) setActivePinia(pinia2); if (!activePinia) { throw new Error(`[🍍]: getActivePinia was called with no active Pinia. Did you forget to install pinia? const pinia = createPinia() app.use(pinia) This will fail in production.`); } pinia2 = activePinia; if (!pinia2._s.has(id)) { if (isSetupStore) { createSetupStore(id, setup, options, pinia2); } else { createOptionsStore(id, options, pinia2); } { useStore._pinia = pinia2; } } const store = pinia2._s.get(id); if (hot) { const hotId = "__hot:" + id; const newStore = isSetupStore ? createSetupStore(hotId, setup, options, pinia2, true) : createOptionsStore(hotId, assign({}, options), pinia2, true); hot._hotUpdate(newStore); delete pinia2.state.value[hotId]; pinia2._s.delete(hotId); } if (IS_CLIENT && currentInstance && currentInstance.proxy && // avoid adding stores that are just built for hot module replacement !hot) { const vm = currentInstance.proxy; const cache = "_pStores" in vm ? vm._pStores : vm._pStores = {}; cache[id] = store; } return store; } useStore.$id = id; return useStore; } function isObject$1(v2) { return typeof v2 === "object" && v2 !== null; } function normalizeOptions(options, factoryOptions) { options = isObject$1(options) ? options : /* @__PURE__ */ Object.create(null); return new Proxy(options, { get(target, key, receiver) { if (key === "key") return Reflect.get(target, key, receiver); return Reflect.get(target, key, receiver) || Reflect.get(factoryOptions, key, receiver); } }); } function get(state, path) { return path.reduce((obj, p2) => { return obj == null ? void 0 : obj[p2]; }, state); } function set(state, path, val) { return path.slice(0, -1).reduce((obj, p2) => { if (/^(__proto__)$/.test(p2)) return {}; else return obj[p2] = obj[p2] || {}; }, state)[path[path.length - 1]] = val, state; } function pick(baseState, paths) { return paths.reduce((substate, path) => { const pathArray = path.split("."); return set(substate, pathArray, get(baseState, pathArray)); }, {}); } function hydrateStore(store, { storage, serializer, key, debug }) { try { const fromStorage = storage == null ? void 0 : storage.getItem(key); if (fromStorage) store.$patch(serializer == null ? void 0 : serializer.deserialize(fromStorage)); } catch (error) { if (debug) console.error(error); } } function persistState(state, { storage, serializer, key, paths, debug }) { try { const toStore = Array.isArray(paths) ? pick(state, paths) : state; storage.setItem(key, serializer.serialize(toStore)); } catch (error) { if (debug) console.error(error); } } function createPersistedState(factoryOptions = {}) { return (context) => { const { auto = false } = factoryOptions; const { options: { persist = auto }, store, pinia: pinia2 } = context; if (!persist) return; if (!(store.$id in pinia2.state.value)) { const original_store = pinia2._s.get(store.$id.replace("__hot:", "")); if (original_store) Promise.resolve().then(() => original_store.$persist()); return; } const persistences = (Array.isArray(persist) ? persist.map((p2) => normalizeOptions(p2, factoryOptions)) : [normalizeOptions(persist, factoryOptions)]).map( ({ storage = localStorage, beforeRestore = null, afterRestore = null, serializer = { serialize: JSON.stringify, deserialize: JSON.parse }, key = store.$id, paths = null, debug = false }) => { var _a; return { storage, beforeRestore, afterRestore, serializer, key: ((_a = factoryOptions.key) != null ? _a : (k) => k)(typeof key == "string" ? key : key(store.$id)), paths, debug }; } ); store.$persist = () => { persistences.forEach((persistence) => { persistState(store.$state, persistence); }); }; store.$hydrate = ({ runHooks = true } = {}) => { persistences.forEach((persistence) => { const { beforeRestore, afterRestore } = persistence; if (runHooks) beforeRestore == null ? void 0 : beforeRestore(context); hydrateStore(store, persistence); if (runHooks) afterRestore == null ? void 0 : afterRestore(context); }); }; persistences.forEach((persistence) => { const { beforeRestore, afterRestore } = persistence; beforeRestore == null ? void 0 : beforeRestore(context); hydrateStore(store, persistence); afterRestore == null ? void 0 : afterRestore(context); store.$subscribe( (_mutation, state) => { persistState(state, persistence); }, { detached: true } ); }); }; } var src_default = createPersistedState(); const useMemberStore = defineStore( "member", () => { const profile = vue.ref(); const setProfile = (val) => { profile.value = val; }; const clearProfile = () => { profile.value = void 0; }; return { profile, setProfile, clearProfile }; }, { // 网页端配置 // persist: true, // 小程序端配置 persist: { storage: { getItem(key) { return uni.getStorageSync(key); }, setItem(key, value) { uni.setStorageSync(key, value); } } } } ); const pinia = createPinia(); pinia.use(src_default); var define_import_meta_env_default = { VITE_AXIOS_BASE_URL: "http://dsg.tms.api.aibasil.cn", VITE_CJS_IGNORE_WARNING: "true", VITE_ROOT_DIR: "E:\\demo\\hmrabbit", VITE_USER_NODE_ENV: "development", BASE_URL: "/", MODE: "test", DEV: true, PROD: false, SSR: false }; const baseURL = "http://dsg.tms.api.aibasil.cn"; formatAppLog("log", "at utils/http.ts:17", "***", define_import_meta_env_default); formatAppLog("log", "at utils/http.ts:18", "**2*", baseURL); const httpInterceptor = { // 拦截前触发 invoke(options) { var _a; if (!options.url.startsWith("http")) { options.url = baseURL + options.url; } options.timeout = 1e4; options.header = { ...options.header, "source-client": "miniapp" }; const memberStore = useMemberStore(); const token = (_a = memberStore.profile) == null ? void 0 : _a.token; if (token) { options.header.batoken = token; } } }; uni.addInterceptor("request", httpInterceptor); uni.addInterceptor("uploadFile", httpInterceptor); const http = (options) => { return new Promise((resolve, reject) => { uni.request({ ...options, // 响应成功 success(res) { if (res.statusCode >= 200 && res.statusCode < 300) { const data = res.data; if (data.code === 302) { formatAppLog("log", "at utils/http.ts:77", "未登录 -> 清理用户信息,跳转到登录页---"); const memberStore = useMemberStore(); memberStore.clearProfile(); uni.navigateTo({ url: "/pages/login/login" }); reject(res); } else if (data.code === 409) { formatAppLog("log", "at utils/http.ts:84", "登录态过期,请重新登录!---"); const memberStore = useMemberStore(); memberStore.clearProfile(); uni.navigateTo({ url: "/pages/login/login" }); reject(res); } else { resolve(res.data); } } else if (res.statusCode === 401) { const memberStore = useMemberStore(); memberStore.clearProfile(); uni.navigateTo({ url: "/pages/login/login" }); reject(res); } else { uni.showToast({ icon: "none", title: res.data.msg || "请求错误" }); reject(res); } }, // 响应失败 fail(err) { uni.showToast({ icon: "none", title: "网络错误,换个网络试试" }); reject(err); } }); }); }; const getCategoryTopAPI = () => { return http({ method: "GET", url: "/category/top" }); }; const getHomeBannerAPI = (distributionSite = 1) => { return http({ method: "GET", url: "/home/banner", data: { distributionSite } }); }; const getHomeGoodsGuessLikeAPI = (data) => { return http({ method: "GET", url: "/home/goods/guessLike", data }); }; const _sfc_main$Z = {}; function _sfc_render$Y(_ctx, _cache) { return vue.openBlock(), vue.createElementBlock("view", { class: "sk-container" }, [ vue.createElementVNode("view", { class: "viewport" }, [ vue.createElementVNode("view", { class: "search" }, [ vue.createElementVNode("view", { class: "input" }, [ vue.createElementVNode("text", { class: "icon-search sk-transparent sk-text-14-2857-225 sk-text sk-pseudo sk-pseudo-circle" }, "女靴") ]) ]), vue.createElementVNode("view", { class: "categories" }, [ vue.createElementVNode("scroll-view", { "scroll-y": true, class: "primary" }, [ vue.createElementVNode("view", { class: "item active sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-218 sk-text" }, "居家") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-495 sk-text" }, "美食") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-628 sk-text" }, "服饰") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-163 sk-text" }, "母婴") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-690 sk-text" }, "个护") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-302 sk-text" }, "严选") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-730 sk-text" }, "数码") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-584 sk-text" }, "运动") ]), vue.createElementVNode("view", { class: "item sk-pseudo sk-pseudo-circle" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-14-2857-895 sk-text" }, "杂项") ]) ]), vue.createElementVNode("scroll-view", { "scroll-y": true, class: "secondary" }, [ vue.createElementVNode("view", { is: "components/XtxSwiper", class: "banner" }, [ vue.createElementVNode("view", { class: "carousel XtxSwiper--carousel" }, [ vue.createElementVNode("view", { class: "indicator XtxSwiper--indicator" }, [ vue.createElementVNode("text", { class: "dot XtxSwiper--dot active XtxSwiper--active" }), vue.createElementVNode("text", { class: "dot XtxSwiper--dot" }), vue.createElementVNode("text", { class: "dot XtxSwiper--dot" }), vue.createElementVNode("text", { class: "dot XtxSwiper--dot" }), vue.createElementVNode("text", { class: "dot XtxSwiper--dot" }) ]) ]) ]), vue.createElementVNode("view", { class: "panel" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-26-6667-885 sk-text" }, "居家生活用品"), vue.createElementVNode("navigator", { class: "more sk-transparent sk-text-30-0000-892 sk-text sk-pseudo sk-pseudo-circle", "hover-class": "none" }, "全部") ]), vue.createElementVNode("view", { class: "section" }, [ vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-648 sk-text" }, "极光限定 珠光蓝珐琅锅"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-708 sk-text" }, "199.00") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-832 sk-text" }, "钻石陶瓷涂层多用锅18cm 小奶锅"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-349 sk-text" }, "149.00") ]) ]) ]) ]), vue.createElementVNode("view", { class: "panel" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode("text", { class: "name sk-transparent sk-text-26-6667-486 sk-text" }, "收纳"), vue.createElementVNode("navigator", { class: "more sk-transparent sk-text-30-0000-520 sk-text sk-pseudo sk-pseudo-circle", "hover-class": "none" }, "全部") ]), vue.createElementVNode("view", { class: "section" }, [ vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-582 sk-text" }, "开发员自留款,带滚轮双层脏衣篓"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-938 sk-text" }, "125.00") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-108 sk-text" }, "换季好帮手,大容量防尘衣物收纳袋"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-564 sk-text" }, "69.00") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-507 sk-text" }, "可水洗的布艺收纳盒"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-503 sk-text" }, "29.90") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-75 sk-text" }, "爆款明星好物,抽屉式透明储物柜"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-965 sk-text" }, "129.00") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-71 sk-text" }, "给衣柜减减肥,真空防潮压缩袋"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-530 sk-text" }, "79.00") ]) ]), vue.createElementVNode("navigator", { class: "goods", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "image sk-image" }), vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-151 sk-text" }, "拉开抽屉不凌乱,磨砂抽屉整理盒套装"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "number sk-transparent sk-text-14-2857-641 sk-text" }, "49.00") ]) ]) ]) ]) ]) ]) ]) ]); } const PageSkeleton$1 = /* @__PURE__ */ _export_sfc(_sfc_main$Z, [["render", _sfc_render$Y], ["__scopeId", "data-v-177b00bb"], ["__file", "E:/demo/hmrabbit/src/pages/category/components/PageSkeleton.vue"]]); const _sfc_main$Y = /* @__PURE__ */ vue.defineComponent({ __name: "category", setup(__props, { expose: __expose }) { __expose(); const bannerList = vue.ref([]); const getBannerData = async () => { const res = await getHomeBannerAPI(2); bannerList.value = res.result; }; const categoryList = vue.ref([]); const activeIndex = vue.ref(0); const getCategoryTopData = async () => { const res = await getCategoryTopAPI(); categoryList.value = res.result; }; const isFinish = vue.ref(false); onLoad(async () => { await Promise.all([getBannerData(), getCategoryTopData()]); isFinish.value = true; }); const subCategoryList = vue.computed(() => { var _a; return ((_a = categoryList.value[activeIndex.value]) == null ? void 0 : _a.children) || []; }); const __returned__ = { bannerList, getBannerData, categoryList, activeIndex, getCategoryTopData, isFinish, subCategoryList, PageSkeleton: PageSkeleton$1 }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$X(_ctx, _cache, $props, $setup, $data, $options) { const _component_XtxSwiper = resolveEasycom(vue.resolveDynamicComponent("XtxSwiper"), __easycom_0$c); return $setup.isFinish ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "viewport" }, [ vue.createCommentVNode(" 搜索框 "), vue.createElementVNode("view", { class: "search" }, [ vue.createElementVNode("view", { class: "input" }, [ vue.createElementVNode("text", { class: "icon-search" }, "女靴") ]) ]), vue.createCommentVNode(" 分类 "), vue.createElementVNode("view", { class: "categories" }, [ vue.createCommentVNode(" 左侧:一级分类 "), vue.createElementVNode("scroll-view", { class: "primary", "scroll-y": "" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.categoryList, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { key: item.id, class: vue.normalizeClass(["item", { active: index === $setup.activeIndex }]), onClick: ($event) => $setup.activeIndex = index }, [ vue.createElementVNode( "text", { class: "name" }, vue.toDisplayString(item.name), 1 /* TEXT */ ) ], 10, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createCommentVNode(" 右侧:二级分类 "), vue.createElementVNode("scroll-view", { "enable-back-to-top": "", class: "secondary", "scroll-y": "" }, [ vue.createCommentVNode(" 焦点图 "), vue.createVNode(_component_XtxSwiper, { class: "banner", list: $setup.bannerList }, null, 8, ["list"]), vue.createCommentVNode(" 内容区域 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.subCategoryList, (item) => { return vue.openBlock(), vue.createElementBlock("view", { class: "panel", key: item.id }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode( "text", { class: "name" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode("navigator", { class: "more", "hover-class": "none" }, "全部") ]), vue.createElementVNode("view", { class: "section" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.goods, (goods2) => { return vue.openBlock(), vue.createElementBlock("navigator", { key: goods2.id, class: "goods", "hover-class": "none", url: `/pages/goods/goods?id=${goods2.id}` }, [ vue.createElementVNode("image", { class: "image", src: goods2.picture }, null, 8, ["src"]), vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(goods2.name), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createElementVNode( "text", { class: "number" }, vue.toDisplayString(goods2.price), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ]); }), 128 /* KEYED_FRAGMENT */ )) ]) ]) ])) : (vue.openBlock(), vue.createBlock($setup["PageSkeleton"], { key: 1 })); } const PagesCategoryCategory = /* @__PURE__ */ _export_sfc(_sfc_main$Y, [["render", _sfc_render$X], ["__file", "E:/demo/hmrabbit/src/pages/category/category.vue"]]); const _sfc_main$X = { name: "vk-data-input-number-box", emits: ["update:modelValue", "input", "change", "blur", "plus", "minus"], props: { // 预显示的数字 value: { type: Number, default: 1 }, modelValue: { type: Number, default: 1 }, // 背景颜色 bgColor: { type: String, default: "#F2F3F5" }, // 最小值 min: { type: Number, default: 0 }, // 最大值 max: { type: Number, default: 99999 }, // 步进值,每次加或减的值 step: { type: Number, default: 1 }, // 步进值,首次增加或最后减的值 stepFirst: { type: Number, default: 0 }, // 是否只能输入 step 的倍数 stepStrictly: { type: Boolean, default: false }, // 是否禁用加减操作 disabled: { type: Boolean, default: false }, // input的字体大小,单位rpx size: { type: [Number, String], default: 26 }, // 加减图标的颜色 color: { type: String, default: "#323233" }, // input宽度,单位rpx inputWidth: { type: [Number, String], default: 80 }, // input高度,单位rpx inputHeight: { type: [Number, String], default: 50 }, // index索引,用于列表中使用,让用户知道是哪个numberbox发生了变化,一般使用for循环出来的index值即可 index: { type: [Number, String], default: "" }, // 是否禁用输入框,与disabled作用于输入框时,为OR的关系,即想要禁用输入框,又可以加减的话 // 设置disabled为false,disabledInput为true即可 disabledInput: { type: Boolean, default: false }, // 输入框于键盘之间的距离 cursorSpacing: { type: [Number, String], default: 100 }, // 是否开启长按连续递增或递减 longPress: { type: Boolean, default: true }, // 开启长按触发后,每触发一次需要多久 pressTime: { type: [Number, String], default: 250 }, // 是否只能输入大于或等于0的整数(正整数) positiveInteger: { type: Boolean, default: true } }, watch: { valueCom(v1, v2) { if (!this.changeFromInner) { this.inputVal = v1; this.$nextTick(function() { this.changeFromInner = false; }); } }, inputVal(v1, v2) { if (v1 == "") return; let value = 0; let tmp = this.isNumber(v1); if (tmp && v1 >= this.min && v1 <= this.max) value = v1; else value = v2; if (this.positiveInteger) { if (v1 < 0 || String(v1).indexOf(".") !== -1) { value = v2; this.$nextTick(() => { this.inputVal = v2; }); } } this.handleChange(value, "change"); }, min(v1) { if (v1 !== void 0 && v1 != "" && this.valueCom < v1) { this.$emit("input", v1); this.$emit("update:modelValue", v1); } }, max(v1) { if (v1 !== void 0 && v1 != "" && this.valueCom > v1) { this.$emit("input", v1); this.$emit("update:modelValue", v1); } } }, data() { return { inputVal: 1, // 输入框中的值,不能直接使用props中的value,因为应该改变props的状态 timer: null, // 用作长按的定时器 changeFromInner: false, // 值发生变化,是来自内部还是外部 innerChangeTimer: null // 内部定时器 }; }, created() { this.inputVal = Number(this.valueCom); }, computed: { valueCom() { return this.modelValue; }, getCursorSpacing() { return Number(uni.upx2px(this.cursorSpacing)); } }, methods: { // 点击退格键 btnTouchStart(callback) { this[callback](); if (!this.longPress) return; clearInterval(this.timer); this.timer = null; this.timer = setInterval(() => { this[callback](); }, this.pressTime); }, clearTimer() { this.$nextTick(() => { clearInterval(this.timer); this.timer = null; }); }, minus() { this.computeVal("minus"); }, plus() { this.computeVal("plus"); }, // 为了保证小数相加减出现精度溢出的问题 calcPlus(num1, num2) { let baseNum, baseNum1, baseNum2; try { baseNum1 = num1.toString().split(".")[1].length; } catch (e2) { baseNum1 = 0; } try { baseNum2 = num2.toString().split(".")[1].length; } catch (e2) { baseNum2 = 0; } baseNum = Math.pow(10, Math.max(baseNum1, baseNum2)); let precision = baseNum1 >= baseNum2 ? baseNum1 : baseNum2; return ((num1 * baseNum + num2 * baseNum) / baseNum).toFixed(precision); }, // 为了保证小数相加减出现精度溢出的问题 calcMinus(num1, num2) { let baseNum, baseNum1, baseNum2; try { baseNum1 = num1.toString().split(".")[1].length; } catch (e2) { baseNum1 = 0; } try { baseNum2 = num2.toString().split(".")[1].length; } catch (e2) { baseNum2 = 0; } baseNum = Math.pow(10, Math.max(baseNum1, baseNum2)); let precision = baseNum1 >= baseNum2 ? baseNum1 : baseNum2; return ((num1 * baseNum - num2 * baseNum) / baseNum).toFixed(precision); }, computeVal(type) { uni.hideKeyboard(); if (this.disabled) return; let value = 0; if (type === "minus") { if (this.stepFirst > 0 && this.inputVal == this.stepFirst) { value = this.min; } else { value = this.calcMinus(this.inputVal, this.step); } } else if (type === "plus") { if (this.stepFirst > 0 && this.inputVal < this.stepFirst) { value = this.stepFirst; } else { value = this.calcPlus(this.inputVal, this.step); } } if (this.stepStrictly) { let strictly = value % this.step; if (strictly > 0) { value -= strictly; } } if (value > this.max) { value = this.max; } else if (value < this.min) { value = this.min; } this.inputVal = value; this.handleChange(value, type); }, // 处理用户手动输入的情况 onBlur(event) { let val = 0; let value = event.detail.value; if (!/(^\d+$)/.test(value) || value[0] == 0) val = this.min; val = +value; if (this.stepFirst > 0 && this.inputVal < this.stepFirst && this.inputVal > 0) { val = this.stepFirst; } if (this.stepStrictly) { let strictly = val % this.step; if (strictly > 0) { val -= strictly; } } if (val > this.max) { val = this.max; } else if (val < this.min) { val = this.min; } this.$nextTick(() => { this.inputVal = val; }); this.handleChange(val, "blur"); }, handleChange(value, type) { if (this.disabled) return; if (this.innerChangeTimer) { clearTimeout(this.innerChangeTimer); this.innerChangeTimer = null; } this.changeFromInner = true; this.innerChangeTimer = setTimeout(() => { this.changeFromInner = false; }, 150); this.$emit("input", Number(value)); this.$emit("update:modelValue", Number(value)); this.$emit(type, { // 转为Number类型 value: Number(value), index: this.index }); }, /** * 验证十进制数字 */ isNumber(value) { return /^(?:-?\d+|-?\d{1,3}(?:,\d{3})+)?(?:\.\d+)?$/.test(value); } } }; function _sfc_render$W(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "vk-data-input-number-box" }, [ vue.createElementVNode( "view", { class: vue.normalizeClass(["u-icon-minus", { "u-icon-disabled": $props.disabled || $data.inputVal <= $props.min }]), style: vue.normalizeStyle({ background: $props.bgColor, height: $props.inputHeight + "rpx", color: $props.color, fontSize: $props.size + "rpx", minHeight: "1.4em" }), onTouchstart: _cache[0] || (_cache[0] = vue.withModifiers(($event) => $options.btnTouchStart("minus"), ["prevent"])), onTouchend: _cache[1] || (_cache[1] = vue.withModifiers((...args) => $options.clearTimer && $options.clearTimer(...args), ["stop", "prevent"])) }, [ vue.createElementVNode( "view", { style: vue.normalizeStyle("font-size:" + (Number($props.size) + 10) + "rpx"), class: "num-btn" }, "-", 4 /* STYLE */ ) ], 38 /* CLASS, STYLE, NEED_HYDRATION */ ), vue.withDirectives(vue.createElementVNode("input", { "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $data.inputVal = $event), disabled: $props.disabledInput || $props.disabled, "cursor-spacing": $options.getCursorSpacing, class: vue.normalizeClass([{ "u-input-disabled": $props.disabled }, "u-number-input"]), type: "number", style: vue.normalizeStyle({ color: $props.color, fontSize: $props.size + "rpx", background: $props.bgColor, height: $props.inputHeight + "rpx", width: $props.inputWidth + "rpx" }), onBlur: _cache[3] || (_cache[3] = (...args) => $options.onBlur && $options.onBlur(...args)) }, null, 46, ["disabled", "cursor-spacing"]), [ [vue.vModelText, $data.inputVal] ]), vue.createElementVNode( "view", { class: vue.normalizeClass(["u-icon-plus", { "u-icon-disabled": $props.disabled || $data.inputVal >= $props.max }]), style: vue.normalizeStyle({ background: $props.bgColor, height: $props.inputHeight + "rpx", color: $props.color, fontSize: $props.size + "rpx", minHeight: "1.4em" }), onTouchstart: _cache[4] || (_cache[4] = vue.withModifiers(($event) => $options.btnTouchStart("plus"), ["prevent"])), onTouchend: _cache[5] || (_cache[5] = vue.withModifiers((...args) => $options.clearTimer && $options.clearTimer(...args), ["stop", "prevent"])) }, [ vue.createElementVNode( "view", { style: vue.normalizeStyle("font-size:" + (Number($props.size) + 10) + "rpx"), class: "num-btn" }, "+", 4 /* STYLE */ ) ], 38 /* CLASS, STYLE, NEED_HYDRATION */ ) ]); } const __easycom_0$b = /* @__PURE__ */ _export_sfc(_sfc_main$X, [["render", _sfc_render$W], ["__scopeId", "data-v-3517706a"], ["__file", "E:/demo/hmrabbit/src/components/vk-data-input-number-box/vk-data-input-number-box.vue"]]); let mpMixins = {}; mpMixins = { data() { return { is_show: "none" }; }, watch: { show(newVal) { this.is_show = this.show; } }, created() { this.swipeaction = this.getSwipeAction(); if (this.swipeaction.children !== void 0) { this.swipeaction.children.push(this); } }, mounted() { this.is_show = this.show; }, methods: { // wxs 中调用 closeSwipe(e2) { if (!this.autoClose) return; this.swipeaction.closeOther(this); }, change(e2) { this.$emit("change", e2.open); if (this.is_show !== e2.open) { this.is_show = e2.open; } }, appTouchStart(e2) { const { clientX } = e2.changedTouches[0]; this.clientX = clientX; this.timestamp = (/* @__PURE__ */ new Date()).getTime(); }, appTouchEnd(e2, index, item, position) { const { clientX } = e2.changedTouches[0]; let diff = Math.abs(this.clientX - clientX); let time = (/* @__PURE__ */ new Date()).getTime() - this.timestamp; if (diff < 40 && time < 300) { this.$emit("click", { content: item, index, position }); } }, onClickForPC(index, item, position) { return; } } }; const mpwxs = mpMixins; let bindIngXMixins = {}; let otherMixins = {}; const block0 = (Comp) => { (Comp.$wxs || (Comp.$wxs = [])).push("wxsswipe"); (Comp.$wxsModules || (Comp.$wxsModules = {}))["wxsswipe"] = "105aa6f4"; }; const block1 = (Comp) => { (Comp.$renderjs || (Comp.$renderjs = [])).push("renderswipe"); (Comp.$renderjsModules || (Comp.$renderjsModules = {}))["renderswipe"] = "0db65775"; }; const _sfc_main$W = { mixins: [mpwxs, bindIngXMixins, otherMixins], emits: ["click", "change"], props: { // 控制开关 show: { type: String, default: "none" }, // 禁用 disabled: { type: Boolean, default: false }, // 是否自动关闭 autoClose: { type: Boolean, default: true }, // 滑动缺省距离 threshold: { type: Number, default: 20 }, // 左侧按钮内容 leftOptions: { type: Array, default() { return []; } }, // 右侧按钮内容 rightOptions: { type: Array, default() { return []; } } }, // TODO vue3 unmounted() { this.__isUnmounted = true; this.uninstall(); }, methods: { uninstall() { if (this.swipeaction) { this.swipeaction.children.forEach((item, index) => { if (item === this) { this.swipeaction.children.splice(index, 1); } }); } }, /** * 获取父元素实例 */ getSwipeAction(name = "uniSwipeAction") { let parent = this.$parent; let parentName = parent.$options.name; while (parentName !== name) { parent = parent.$parent; if (!parent) return false; parentName = parent.$options.name; } return parent; } } }; function _sfc_render$V(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createCommentVNode(" 在微信小程序 app vue端 h5 使用wxs 实现"), vue.createElementVNode("view", { class: "uni-swipe" }, [ vue.createElementVNode("view", { class: "uni-swipe_box", "change:prop": _ctx.wxsswipe.showWatch, prop: vue.wp(_ctx.is_show), "data-threshold": $props.threshold, "data-disabled": $props.disabled, onTouchstart: _cache[2] || (_cache[2] = (...args) => _ctx.wxsswipe.touchstart && _ctx.wxsswipe.touchstart(...args)), onTouchmove: _cache[3] || (_cache[3] = (...args) => _ctx.wxsswipe.touchmove && _ctx.wxsswipe.touchmove(...args)), onTouchend: _cache[4] || (_cache[4] = (...args) => _ctx.wxsswipe.touchend && _ctx.wxsswipe.touchend(...args)) }, [ vue.createCommentVNode(" 在微信小程序 app vue端 h5 使用wxs 实现"), vue.createElementVNode("view", { class: "uni-swipe_button-group button-group--left" }, [ vue.renderSlot(_ctx.$slots, "left", {}, () => [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($props.leftOptions, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { key: index, style: vue.normalizeStyle({ backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : "#C7C6CD" }), class: "uni-swipe_button button-hock", onTouchstart: _cache[0] || (_cache[0] = (...args) => _ctx.appTouchStart && _ctx.appTouchStart(...args)), onTouchend: ($event) => _ctx.appTouchEnd($event, index, item, "left"), onClick: vue.withModifiers(($event) => _ctx.onClickForPC(index, item, "left"), ["stop"]) }, [ vue.createElementVNode( "text", { class: "uni-swipe_button-text", style: vue.normalizeStyle({ color: item.style && item.style.color ? item.style.color : "#FFFFFF", fontSize: item.style && item.style.fontSize ? item.style.fontSize : "16px" }) }, vue.toDisplayString(item.text), 5 /* TEXT, STYLE */ ) ], 44, ["onTouchend", "onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ], true) ]), vue.createElementVNode("view", { class: "uni-swipe_text--center" }, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ]), vue.createElementVNode("view", { class: "uni-swipe_button-group button-group--right" }, [ vue.renderSlot(_ctx.$slots, "right", {}, () => [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($props.rightOptions, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { key: index, style: vue.normalizeStyle({ backgroundColor: item.style && item.style.backgroundColor ? item.style.backgroundColor : "#C7C6CD" }), class: "uni-swipe_button button-hock", onTouchstart: _cache[1] || (_cache[1] = (...args) => _ctx.appTouchStart && _ctx.appTouchStart(...args)), onTouchend: ($event) => _ctx.appTouchEnd($event, index, item, "right"), onClick: vue.withModifiers(($event) => _ctx.onClickForPC(index, item, "right"), ["stop"]) }, [ vue.createElementVNode( "text", { class: "uni-swipe_button-text", style: vue.normalizeStyle({ color: item.style && item.style.color ? item.style.color : "#FFFFFF", fontSize: item.style && item.style.fontSize ? item.style.fontSize : "16px" }) }, vue.toDisplayString(item.text), 5 /* TEXT, STYLE */ ) ], 44, ["onTouchend", "onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ], true) ]) ], 40, ["change:prop", "prop", "data-threshold", "data-disabled"]) ]), vue.createCommentVNode(" app nvue端 使用 bindingx "), vue.createCommentVNode(" 其他平台使用 js ,长列表性能可能会有影响") ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } if (typeof block0 === "function") block0(_sfc_main$W); if (typeof block1 === "function") block1(_sfc_main$W); const __easycom_0$a = /* @__PURE__ */ _export_sfc(_sfc_main$W, [["render", _sfc_render$V], ["__scopeId", "data-v-82a5303b"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-swipe-action-item/uni-swipe-action-item.vue"]]); const _sfc_main$V = { name: "uniSwipeAction", data() { return {}; }, created() { this.children = []; }, methods: { // 公开给用户使用,重制组件样式 resize() { }, // 公开给用户使用,关闭全部 已经打开的组件 closeAll() { this.children.forEach((vm) => { vm.is_show = "none"; }); }, closeOther(vm) { if (this.openItem && this.openItem !== vm) { this.openItem.is_show = "none"; } this.openItem = vm; } } }; function _sfc_render$U(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", null, [ vue.renderSlot(_ctx.$slots, "default") ]); } const __easycom_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$V, [["render", _sfc_render$U], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-swipe-action/uni-swipe-action.vue"]]); const _sfc_main$U = /* @__PURE__ */ vue.defineComponent({ __name: "XtxGuess", setup(__props, { expose: __expose }) { const pageParams = { page: 1, pageSize: 10 }; const guessList = vue.ref([]); const finish = vue.ref(false); const getHomeGoodsGuessLikeData = async () => { if (finish.value === true) { return uni.showToast({ icon: "none", title: "没有更多数据~" }); } const res = await getHomeGoodsGuessLikeAPI(pageParams); guessList.value.push(...res.result.items); if (pageParams.page < res.result.pages) { pageParams.page++; } else { finish.value = true; } }; const resetData = () => { pageParams.page = 1; guessList.value = []; finish.value = false; }; vue.onMounted(() => { getHomeGoodsGuessLikeData(); }); __expose({ resetData, getMore: getHomeGoodsGuessLikeData }); const __returned__ = { pageParams, guessList, finish, getHomeGoodsGuessLikeData, resetData }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$T(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createCommentVNode(" 猜你喜欢 "), vue.createElementVNode("view", { class: "caption" }, [ vue.createElementVNode("text", { class: "text" }, "猜你喜欢") ]), vue.createElementVNode("view", { class: "guess" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.guessList, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { class: "guess-item", key: item.id, url: `/pages/goods/goods?id=${item.id}` }, [ vue.createElementVNode("image", { class: "image", mode: "aspectFill", src: item.picture }, null, 8, ["src"]), vue.createElementVNode( "view", { class: "name" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "small" }, "¥"), vue.createElementVNode( "text", null, vue.toDisplayString(item.price), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createElementVNode( "view", { class: "loading-text" }, vue.toDisplayString($setup.finish ? "没有更多数据~" : "正在加载..."), 1 /* TEXT */ ) ], 64 /* STABLE_FRAGMENT */ ); } const __easycom_0$9 = /* @__PURE__ */ _export_sfc(_sfc_main$U, [["render", _sfc_render$T], ["__scopeId", "data-v-e94a02da"], ["__file", "E:/demo/hmrabbit/src/components/XtxGuess.vue"]]); const useGuessList = () => { const guessRef = vue.ref(); const onScrolltolower = () => { var _a; (_a = guessRef.value) == null ? void 0 : _a.getMore(); }; return { guessRef, onScrolltolower }; }; const postMemberCartAPI = (data) => { return http({ method: "POST", url: "/member/cart", data }); }; const getMemberCartAPI = () => { return http({ method: "GET", url: "/member/cart" }); }; const deleteMemberCartAPI = (data) => { return http({ method: "DELETE", url: "/member/cart", data }); }; const putMemberCartBySkuIdAPI = (skuId, data) => { return http({ method: "PUT", url: `/member/cart/${skuId}`, data }); }; const putMemberCartSelectedAPI = (data) => { return http({ method: "PUT", url: "/member/cart/selected", data }); }; const _sfc_main$T = /* @__PURE__ */ vue.defineComponent({ __name: "CartMain", props: { safeAreaInsetBottom: { type: Boolean, required: false } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const memberStore = useMemberStore(); const cartList = vue.ref([]); const showCartList = vue.ref(true); const getMemberCartData = async () => { const res = await getMemberCartAPI(); cartList.value = res.result; showCartList.value = res.result.length > 0; }; onShow(() => { if (memberStore.profile) { getMemberCartData(); } }); const onDeleteCart = (skuId) => { uni.showModal({ content: "是否删除", confirmColor: "#27BA9B", success: async (res) => { if (res.confirm) { await deleteMemberCartAPI({ ids: [skuId] }); getMemberCartData(); } } }); }; const onChangeCount = (ev) => { putMemberCartBySkuIdAPI(ev.index, { count: ev.value }); }; const onChangeSelected = (item) => { item.selected = !item.selected; putMemberCartBySkuIdAPI(item.skuId, { selected: item.selected }); }; const isSelectedAll = vue.computed(() => { return cartList.value.length && cartList.value.every((v2) => v2.selected); }); const onChangeSelectedAll = () => { const _isSelectedAll = !isSelectedAll.value; cartList.value.forEach((item) => { item.selected = _isSelectedAll; }); putMemberCartSelectedAPI({ selected: _isSelectedAll }); }; const selectedCartList = vue.computed(() => { return cartList.value.filter((v2) => v2.selected); }); const selectedCartListCount = vue.computed(() => { return selectedCartList.value.reduce((sum, item) => sum + item.count, 0); }); const selectedCartListMoney = vue.computed(() => { return selectedCartList.value.reduce((sum, item) => sum + item.count * item.nowPrice, 0).toFixed(2); }); const gotoPayment = () => { if (selectedCartListCount.value === 0) { return uni.showToast({ icon: "none", title: "请选择商品" }); } uni.navigateTo({ url: "/pagesOrder/create/create" }); }; const { guessRef, onScrolltolower } = useGuessList(); const __returned__ = { safeAreaInsets, memberStore, cartList, showCartList, getMemberCartData, onDeleteCart, onChangeCount, onChangeSelected, isSelectedAll, onChangeSelectedAll, selectedCartList, selectedCartListCount, selectedCartListMoney, gotoPayment, guessRef, onScrolltolower }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); const _imports_0$1 = "/static/images/blank_cart.png"; function _sfc_render$S(_ctx, _cache, $props, $setup, $data, $options) { var _a; const _component_vk_data_input_number_box = resolveEasycom(vue.resolveDynamicComponent("vk-data-input-number-box"), __easycom_0$b); const _component_uni_swipe_action_item = resolveEasycom(vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_0$a); const _component_uni_swipe_action = resolveEasycom(vue.resolveDynamicComponent("uni-swipe-action"), __easycom_1$2); const _component_XtxGuess = resolveEasycom(vue.resolveDynamicComponent("XtxGuess"), __easycom_0$9); return vue.openBlock(), vue.createElementBlock( "scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "scroll-view", onScrolltolower: _cache[0] || (_cache[0] = (...args) => $setup.onScrolltolower && $setup.onScrolltolower(...args)) }, [ vue.createCommentVNode(" 已登录: 显示购物车 "), $setup.memberStore.profile ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 0 }, [ vue.createCommentVNode(" 购物车列表 "), $setup.showCartList ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "cart-list" }, [ vue.createCommentVNode(" 优惠提示 "), vue.createElementVNode("view", { class: "tips" }, [ vue.createElementVNode("text", { class: "label" }, "满减"), vue.createElementVNode("text", { class: "desc" }, "满1件, 即可享受9折优惠") ]), vue.createCommentVNode(" 滑动操作分区 "), vue.createVNode(_component_uni_swipe_action, null, { default: vue.withCtx(() => [ vue.createCommentVNode(" 滑动操作项 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.cartList, (item) => { return vue.openBlock(), vue.createBlock( _component_uni_swipe_action_item, { key: item.skuId, class: "cart-swipe" }, { right: vue.withCtx(() => [ vue.createElementVNode("view", { class: "cart-swipe-right" }, [ vue.createElementVNode("button", { onClick: ($event) => $setup.onDeleteCart(item.skuId), class: "button delete-button" }, "删除", 8, ["onClick"]) ]) ]), default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "goods" }, [ vue.createCommentVNode(" 选中状态 "), vue.createElementVNode("text", { onClick: ($event) => $setup.onChangeSelected(item), class: vue.normalizeClass(["checkbox", { checked: item.selected }]) }, null, 10, ["onClick"]), vue.createElementVNode("navigator", { url: `/pages/goods/goods?id=${item.id}`, "hover-class": "none", class: "navigator" }, [ vue.createElementVNode("image", { mode: "aspectFill", class: "picture", src: item.picture }, null, 8, ["src"]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "attrsText ellipsis" }, vue.toDisplayString(item.attrsText), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "price" }, vue.toDisplayString(item.nowPrice), 1 /* TEXT */ ) ]) ], 8, ["url"]), vue.createCommentVNode(" 商品数量 "), vue.createElementVNode("view", { class: "count" }, [ vue.createVNode(_component_vk_data_input_number_box, { modelValue: item.count, "onUpdate:modelValue": ($event) => item.count = $event, min: 1, max: item.stock, index: item.skuId, onChange: $setup.onChangeCount }, null, 8, ["modelValue", "onUpdate:modelValue", "max", "index"]) ]) ]) ]), _: 2 /* DYNAMIC */ }, 1024 /* DYNAMIC_SLOTS */ ); }), 128 /* KEYED_FRAGMENT */ )) ]), _: 1 /* STABLE */ }) ])) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 购物车空状态 "), vue.createElementVNode("view", { class: "cart-blank" }, [ vue.createElementVNode("image", { src: _imports_0$1, class: "image" }), vue.createElementVNode("text", { class: "text" }, "购物车还是空的,快来挑选好货吧"), vue.createElementVNode("navigator", { url: "/pages/index/index", "hover-class": "none" }, [ vue.createElementVNode("button", { class: "button" }, "去首页看看") ]) ]) ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ )), vue.createCommentVNode(" 吸底工具栏 "), $setup.showCartList ? (vue.openBlock(), vue.createElementBlock( "view", { key: 2, class: "toolbar", style: vue.normalizeStyle({ paddingBottom: $props.safeAreaInsetBottom ? ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.bottom) + "px" : 0 }) }, [ vue.createElementVNode( "text", { onClick: $setup.onChangeSelectedAll, class: vue.normalizeClass(["all", { checked: $setup.isSelectedAll }]) }, "全选", 2 /* CLASS */ ), vue.createElementVNode("text", { class: "text" }, "合计:"), vue.createElementVNode( "text", { class: "amount" }, vue.toDisplayString($setup.selectedCartListMoney), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "button-grounp" }, [ vue.createElementVNode( "view", { onClick: $setup.gotoPayment, class: vue.normalizeClass(["button payment-button", { disabled: $setup.selectedCartListCount === 0 }]) }, " 去结算(" + vue.toDisplayString($setup.selectedCartListCount) + ") ", 3 /* TEXT, CLASS */ ) ]) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ )) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 未登录: 提示登录 "), vue.createElementVNode("view", { class: "login-blank" }, [ vue.createElementVNode("text", { class: "text" }, "登录后可查看购物车中的商品"), vue.createElementVNode("navigator", { url: "/pages/login/login", "hover-class": "none" }, [ vue.createElementVNode("button", { class: "button" }, "去登录") ]) ]) ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ )), vue.createCommentVNode(" 猜你喜欢 "), vue.createVNode( _component_XtxGuess, { ref: "guessRef" }, null, 512 /* NEED_PATCH */ ), vue.createCommentVNode(" 底部占位空盒子 "), vue.createElementVNode("view", { class: "toolbar-height" }) ], 32 /* NEED_HYDRATION */ ); } const CartMain = /* @__PURE__ */ _export_sfc(_sfc_main$T, [["render", _sfc_render$S], ["__scopeId", "data-v-1830a74b"], ["__file", "E:/demo/hmrabbit/src/pages/cart/components/CartMain.vue"]]); const _sfc_main$S = /* @__PURE__ */ vue.defineComponent({ __name: "cart", setup(__props, { expose: __expose }) { __expose(); const __returned__ = { CartMain }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$R(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createBlock($setup["CartMain"]); } const PagesCartCart = /* @__PURE__ */ _export_sfc(_sfc_main$S, [["render", _sfc_render$R], ["__file", "E:/demo/hmrabbit/src/pages/cart/cart.vue"]]); const _sfc_main$R = /* @__PURE__ */ vue.defineComponent({ __name: "cart2", setup(__props, { expose: __expose }) { __expose(); const __returned__ = { CartMain }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$Q(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createCommentVNode(" 适配底部安全区 "), vue.createVNode($setup["CartMain"], { "safe-area-inset-bottom": "" }) ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ ); } const PagesCartCart2 = /* @__PURE__ */ _export_sfc(_sfc_main$R, [["render", _sfc_render$Q], ["__file", "E:/demo/hmrabbit/src/pages/cart/cart2.vue"]]); const _sfc_main$Q = /* @__PURE__ */ vue.defineComponent({ __name: "my", setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const orderTypes = [ { type: "1", text: "待付款", icon: "icon-currency" }, { type: "2", text: "待发货", icon: "icon-gift" }, { type: "3", text: "待收货", icon: "icon-check" }, { type: "4", text: "待评价", icon: "icon-comment" } ]; const memberStore = useMemberStore(); const { guessRef, onScrolltolower } = useGuessList(); const __returned__ = { safeAreaInsets, orderTypes, memberStore, guessRef, onScrolltolower }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$P(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( "scroll-view", { "enable-back-to-top": "", onScrolltolower: _cache[0] || (_cache[0] = (...args) => $setup.onScrolltolower && $setup.onScrolltolower(...args)), class: "viewport", "scroll-y": "" }, [ vue.createCommentVNode(" 个人资料 "), vue.createElementVNode( "view", { class: "profile", style: vue.normalizeStyle({ paddingTop: $setup.safeAreaInsets.top + "px" }) }, [ vue.createCommentVNode(" 情况1:已登录 "), $setup.memberStore.profile ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "overview" }, [ vue.createElementVNode("navigator", { url: "/pagesMember/profile/profile", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "avatar", src: $setup.memberStore.profile.avatar, mode: "aspectFill" }, null, 8, ["src"]) ]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode( "view", { class: "nickname" }, vue.toDisplayString($setup.memberStore.profile.nickname || $setup.memberStore.profile.username), 1 /* TEXT */ ), vue.createElementVNode("navigator", { class: "extra", url: "/pagesMember/profile/profile", "hover-class": "none" }, [ vue.createElementVNode("text", { class: "update" }, "更新头像昵称") ]) ]) ])) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 情况2:未登录 "), vue.createElementVNode("view", { class: "overview" }, [ vue.createElementVNode("navigator", { url: "/pages/login/login", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "avatar gray", mode: "aspectFill", src: "https://yjy-xiaotuxian-dev.oss-cn-beijing.aliyuncs.com/picture/2021-04-06/db628d42-88a7-46e7-abb8-659448c33081.png" }) ]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode("navigator", { url: "/pages/login/login", "hover-class": "none", class: "nickname" }, " 未登录 "), vue.createElementVNode("view", { class: "extra" }, [ vue.createElementVNode("text", { class: "tips" }, "点击登录账号") ]) ]) ]) ], 2112 /* STABLE_FRAGMENT, DEV_ROOT_FRAGMENT */ )), vue.createElementVNode("navigator", { class: "settings", url: "/pagesMember/settings/settings", "hover-class": "none" }, " 设置 ") ], 4 /* STYLE */ ), vue.createCommentVNode(" 我的订单 "), vue.createElementVNode("view", { class: "orders" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createTextVNode(" 我的订单 "), vue.createElementVNode("navigator", { class: "navigator", url: "/pagesOrder/list/list?type=0", "hover-class": "none" }, [ vue.createTextVNode(" 查看全部订单"), vue.createElementVNode("text", { class: "icon-right" }) ]) ]), vue.createElementVNode("view", { class: "section" }, [ vue.createCommentVNode(" 订单 "), (vue.openBlock(), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.orderTypes, (item) => { return vue.createElementVNode("navigator", { key: item.type, class: vue.normalizeClass([item.icon, "navigator"]), url: `/pagesOrder/list/list?type=${item.type}`, "hover-class": "none" }, vue.toDisplayString(item.text), 11, ["url"]); }), 64 /* STABLE_FRAGMENT */ )), vue.createCommentVNode(" 客服 ") ]) ]) ], 32 /* NEED_HYDRATION */ ); } const PagesMyMy = /* @__PURE__ */ _export_sfc(_sfc_main$Q, [["render", _sfc_render$P], ["__file", "E:/demo/hmrabbit/src/pages/my/my.vue"]]); const icons = { "id": "2852637", "name": "uniui图标库", "font_family": "uniicons", "css_prefix_text": "uniui-", "description": "", "glyphs": [ { "icon_id": "25027049", "name": "yanse", "font_class": "color", "unicode": "e6cf", "unicode_decimal": 59087 }, { "icon_id": "25027048", "name": "wallet", "font_class": "wallet", "unicode": "e6b1", "unicode_decimal": 59057 }, { "icon_id": "25015720", "name": "settings-filled", "font_class": "settings-filled", "unicode": "e6ce", "unicode_decimal": 59086 }, { "icon_id": "25015434", "name": "shimingrenzheng-filled", "font_class": "auth-filled", "unicode": "e6cc", "unicode_decimal": 59084 }, { "icon_id": "24934246", "name": "shop-filled", "font_class": "shop-filled", "unicode": "e6cd", "unicode_decimal": 59085 }, { "icon_id": "24934159", "name": "staff-filled-01", "font_class": "staff-filled", "unicode": "e6cb", "unicode_decimal": 59083 }, { "icon_id": "24932461", "name": "VIP-filled", "font_class": "vip-filled", "unicode": "e6c6", "unicode_decimal": 59078 }, { "icon_id": "24932462", "name": "plus_circle_fill", "font_class": "plus-filled", "unicode": "e6c7", "unicode_decimal": 59079 }, { "icon_id": "24932463", "name": "folder_add-filled", "font_class": "folder-add-filled", "unicode": "e6c8", "unicode_decimal": 59080 }, { "icon_id": "24932464", "name": "yanse-filled", "font_class": "color-filled", "unicode": "e6c9", "unicode_decimal": 59081 }, { "icon_id": "24932465", "name": "tune-filled", "font_class": "tune-filled", "unicode": "e6ca", "unicode_decimal": 59082 }, { "icon_id": "24932455", "name": "a-rilidaka-filled", "font_class": "calendar-filled", "unicode": "e6c0", "unicode_decimal": 59072 }, { "icon_id": "24932456", "name": "notification-filled", "font_class": "notification-filled", "unicode": "e6c1", "unicode_decimal": 59073 }, { "icon_id": "24932457", "name": "wallet-filled", "font_class": "wallet-filled", "unicode": "e6c2", "unicode_decimal": 59074 }, { "icon_id": "24932458", "name": "paihangbang-filled", "font_class": "medal-filled", "unicode": "e6c3", "unicode_decimal": 59075 }, { "icon_id": "24932459", "name": "gift-filled", "font_class": "gift-filled", "unicode": "e6c4", "unicode_decimal": 59076 }, { "icon_id": "24932460", "name": "fire-filled", "font_class": "fire-filled", "unicode": "e6c5", "unicode_decimal": 59077 }, { "icon_id": "24928001", "name": "refreshempty", "font_class": "refreshempty", "unicode": "e6bf", "unicode_decimal": 59071 }, { "icon_id": "24926853", "name": "location-ellipse", "font_class": "location-filled", "unicode": "e6af", "unicode_decimal": 59055 }, { "icon_id": "24926735", "name": "person-filled", "font_class": "person-filled", "unicode": "e69d", "unicode_decimal": 59037 }, { "icon_id": "24926703", "name": "personadd-filled", "font_class": "personadd-filled", "unicode": "e698", "unicode_decimal": 59032 }, { "icon_id": "24923351", "name": "back", "font_class": "back", "unicode": "e6b9", "unicode_decimal": 59065 }, { "icon_id": "24923352", "name": "forward", "font_class": "forward", "unicode": "e6ba", "unicode_decimal": 59066 }, { "icon_id": "24923353", "name": "arrowthinright", "font_class": "arrow-right", "unicode": "e6bb", "unicode_decimal": 59067 }, { "icon_id": "24923353", "name": "arrowthinright", "font_class": "arrowthinright", "unicode": "e6bb", "unicode_decimal": 59067 }, { "icon_id": "24923354", "name": "arrowthinleft", "font_class": "arrow-left", "unicode": "e6bc", "unicode_decimal": 59068 }, { "icon_id": "24923354", "name": "arrowthinleft", "font_class": "arrowthinleft", "unicode": "e6bc", "unicode_decimal": 59068 }, { "icon_id": "24923355", "name": "arrowthinup", "font_class": "arrow-up", "unicode": "e6bd", "unicode_decimal": 59069 }, { "icon_id": "24923355", "name": "arrowthinup", "font_class": "arrowthinup", "unicode": "e6bd", "unicode_decimal": 59069 }, { "icon_id": "24923356", "name": "arrowthindown", "font_class": "arrow-down", "unicode": "e6be", "unicode_decimal": 59070 }, { "icon_id": "24923356", "name": "arrowthindown", "font_class": "arrowthindown", "unicode": "e6be", "unicode_decimal": 59070 }, { "icon_id": "24923349", "name": "arrowdown", "font_class": "bottom", "unicode": "e6b8", "unicode_decimal": 59064 }, { "icon_id": "24923349", "name": "arrowdown", "font_class": "arrowdown", "unicode": "e6b8", "unicode_decimal": 59064 }, { "icon_id": "24923346", "name": "arrowright", "font_class": "right", "unicode": "e6b5", "unicode_decimal": 59061 }, { "icon_id": "24923346", "name": "arrowright", "font_class": "arrowright", "unicode": "e6b5", "unicode_decimal": 59061 }, { "icon_id": "24923347", "name": "arrowup", "font_class": "top", "unicode": "e6b6", "unicode_decimal": 59062 }, { "icon_id": "24923347", "name": "arrowup", "font_class": "arrowup", "unicode": "e6b6", "unicode_decimal": 59062 }, { "icon_id": "24923348", "name": "arrowleft", "font_class": "left", "unicode": "e6b7", "unicode_decimal": 59063 }, { "icon_id": "24923348", "name": "arrowleft", "font_class": "arrowleft", "unicode": "e6b7", "unicode_decimal": 59063 }, { "icon_id": "24923334", "name": "eye", "font_class": "eye", "unicode": "e651", "unicode_decimal": 58961 }, { "icon_id": "24923335", "name": "eye-filled", "font_class": "eye-filled", "unicode": "e66a", "unicode_decimal": 58986 }, { "icon_id": "24923336", "name": "eye-slash", "font_class": "eye-slash", "unicode": "e6b3", "unicode_decimal": 59059 }, { "icon_id": "24923337", "name": "eye-slash-filled", "font_class": "eye-slash-filled", "unicode": "e6b4", "unicode_decimal": 59060 }, { "icon_id": "24923305", "name": "info-filled", "font_class": "info-filled", "unicode": "e649", "unicode_decimal": 58953 }, { "icon_id": "24923299", "name": "reload-01", "font_class": "reload", "unicode": "e6b2", "unicode_decimal": 59058 }, { "icon_id": "24923195", "name": "mic_slash_fill", "font_class": "micoff-filled", "unicode": "e6b0", "unicode_decimal": 59056 }, { "icon_id": "24923165", "name": "map-pin-ellipse", "font_class": "map-pin-ellipse", "unicode": "e6ac", "unicode_decimal": 59052 }, { "icon_id": "24923166", "name": "map-pin", "font_class": "map-pin", "unicode": "e6ad", "unicode_decimal": 59053 }, { "icon_id": "24923167", "name": "location", "font_class": "location", "unicode": "e6ae", "unicode_decimal": 59054 }, { "icon_id": "24923064", "name": "starhalf", "font_class": "starhalf", "unicode": "e683", "unicode_decimal": 59011 }, { "icon_id": "24923065", "name": "star", "font_class": "star", "unicode": "e688", "unicode_decimal": 59016 }, { "icon_id": "24923066", "name": "star-filled", "font_class": "star-filled", "unicode": "e68f", "unicode_decimal": 59023 }, { "icon_id": "24899646", "name": "a-rilidaka", "font_class": "calendar", "unicode": "e6a0", "unicode_decimal": 59040 }, { "icon_id": "24899647", "name": "fire", "font_class": "fire", "unicode": "e6a1", "unicode_decimal": 59041 }, { "icon_id": "24899648", "name": "paihangbang", "font_class": "medal", "unicode": "e6a2", "unicode_decimal": 59042 }, { "icon_id": "24899649", "name": "font", "font_class": "font", "unicode": "e6a3", "unicode_decimal": 59043 }, { "icon_id": "24899650", "name": "gift", "font_class": "gift", "unicode": "e6a4", "unicode_decimal": 59044 }, { "icon_id": "24899651", "name": "link", "font_class": "link", "unicode": "e6a5", "unicode_decimal": 59045 }, { "icon_id": "24899652", "name": "notification", "font_class": "notification", "unicode": "e6a6", "unicode_decimal": 59046 }, { "icon_id": "24899653", "name": "staff", "font_class": "staff", "unicode": "e6a7", "unicode_decimal": 59047 }, { "icon_id": "24899654", "name": "VIP", "font_class": "vip", "unicode": "e6a8", "unicode_decimal": 59048 }, { "icon_id": "24899655", "name": "folder_add", "font_class": "folder-add", "unicode": "e6a9", "unicode_decimal": 59049 }, { "icon_id": "24899656", "name": "tune", "font_class": "tune", "unicode": "e6aa", "unicode_decimal": 59050 }, { "icon_id": "24899657", "name": "shimingrenzheng", "font_class": "auth", "unicode": "e6ab", "unicode_decimal": 59051 }, { "icon_id": "24899565", "name": "person", "font_class": "person", "unicode": "e699", "unicode_decimal": 59033 }, { "icon_id": "24899566", "name": "email-filled", "font_class": "email-filled", "unicode": "e69a", "unicode_decimal": 59034 }, { "icon_id": "24899567", "name": "phone-filled", "font_class": "phone-filled", "unicode": "e69b", "unicode_decimal": 59035 }, { "icon_id": "24899568", "name": "phone", "font_class": "phone", "unicode": "e69c", "unicode_decimal": 59036 }, { "icon_id": "24899570", "name": "email", "font_class": "email", "unicode": "e69e", "unicode_decimal": 59038 }, { "icon_id": "24899571", "name": "personadd", "font_class": "personadd", "unicode": "e69f", "unicode_decimal": 59039 }, { "icon_id": "24899558", "name": "chatboxes-filled", "font_class": "chatboxes-filled", "unicode": "e692", "unicode_decimal": 59026 }, { "icon_id": "24899559", "name": "contact", "font_class": "contact", "unicode": "e693", "unicode_decimal": 59027 }, { "icon_id": "24899560", "name": "chatbubble-filled", "font_class": "chatbubble-filled", "unicode": "e694", "unicode_decimal": 59028 }, { "icon_id": "24899561", "name": "contact-filled", "font_class": "contact-filled", "unicode": "e695", "unicode_decimal": 59029 }, { "icon_id": "24899562", "name": "chatboxes", "font_class": "chatboxes", "unicode": "e696", "unicode_decimal": 59030 }, { "icon_id": "24899563", "name": "chatbubble", "font_class": "chatbubble", "unicode": "e697", "unicode_decimal": 59031 }, { "icon_id": "24881290", "name": "upload-filled", "font_class": "upload-filled", "unicode": "e68e", "unicode_decimal": 59022 }, { "icon_id": "24881292", "name": "upload", "font_class": "upload", "unicode": "e690", "unicode_decimal": 59024 }, { "icon_id": "24881293", "name": "weixin", "font_class": "weixin", "unicode": "e691", "unicode_decimal": 59025 }, { "icon_id": "24881274", "name": "compose", "font_class": "compose", "unicode": "e67f", "unicode_decimal": 59007 }, { "icon_id": "24881275", "name": "qq", "font_class": "qq", "unicode": "e680", "unicode_decimal": 59008 }, { "icon_id": "24881276", "name": "download-filled", "font_class": "download-filled", "unicode": "e681", "unicode_decimal": 59009 }, { "icon_id": "24881277", "name": "pengyouquan", "font_class": "pyq", "unicode": "e682", "unicode_decimal": 59010 }, { "icon_id": "24881279", "name": "sound", "font_class": "sound", "unicode": "e684", "unicode_decimal": 59012 }, { "icon_id": "24881280", "name": "trash-filled", "font_class": "trash-filled", "unicode": "e685", "unicode_decimal": 59013 }, { "icon_id": "24881281", "name": "sound-filled", "font_class": "sound-filled", "unicode": "e686", "unicode_decimal": 59014 }, { "icon_id": "24881282", "name": "trash", "font_class": "trash", "unicode": "e687", "unicode_decimal": 59015 }, { "icon_id": "24881284", "name": "videocam-filled", "font_class": "videocam-filled", "unicode": "e689", "unicode_decimal": 59017 }, { "icon_id": "24881285", "name": "spinner-cycle", "font_class": "spinner-cycle", "unicode": "e68a", "unicode_decimal": 59018 }, { "icon_id": "24881286", "name": "weibo", "font_class": "weibo", "unicode": "e68b", "unicode_decimal": 59019 }, { "icon_id": "24881288", "name": "videocam", "font_class": "videocam", "unicode": "e68c", "unicode_decimal": 59020 }, { "icon_id": "24881289", "name": "download", "font_class": "download", "unicode": "e68d", "unicode_decimal": 59021 }, { "icon_id": "24879601", "name": "help", "font_class": "help", "unicode": "e679", "unicode_decimal": 59001 }, { "icon_id": "24879602", "name": "navigate-filled", "font_class": "navigate-filled", "unicode": "e67a", "unicode_decimal": 59002 }, { "icon_id": "24879603", "name": "plusempty", "font_class": "plusempty", "unicode": "e67b", "unicode_decimal": 59003 }, { "icon_id": "24879604", "name": "smallcircle", "font_class": "smallcircle", "unicode": "e67c", "unicode_decimal": 59004 }, { "icon_id": "24879605", "name": "minus-filled", "font_class": "minus-filled", "unicode": "e67d", "unicode_decimal": 59005 }, { "icon_id": "24879606", "name": "micoff", "font_class": "micoff", "unicode": "e67e", "unicode_decimal": 59006 }, { "icon_id": "24879588", "name": "closeempty", "font_class": "closeempty", "unicode": "e66c", "unicode_decimal": 58988 }, { "icon_id": "24879589", "name": "clear", "font_class": "clear", "unicode": "e66d", "unicode_decimal": 58989 }, { "icon_id": "24879590", "name": "navigate", "font_class": "navigate", "unicode": "e66e", "unicode_decimal": 58990 }, { "icon_id": "24879591", "name": "minus", "font_class": "minus", "unicode": "e66f", "unicode_decimal": 58991 }, { "icon_id": "24879592", "name": "image", "font_class": "image", "unicode": "e670", "unicode_decimal": 58992 }, { "icon_id": "24879593", "name": "mic", "font_class": "mic", "unicode": "e671", "unicode_decimal": 58993 }, { "icon_id": "24879594", "name": "paperplane", "font_class": "paperplane", "unicode": "e672", "unicode_decimal": 58994 }, { "icon_id": "24879595", "name": "close", "font_class": "close", "unicode": "e673", "unicode_decimal": 58995 }, { "icon_id": "24879596", "name": "help-filled", "font_class": "help-filled", "unicode": "e674", "unicode_decimal": 58996 }, { "icon_id": "24879597", "name": "plus-filled", "font_class": "paperplane-filled", "unicode": "e675", "unicode_decimal": 58997 }, { "icon_id": "24879598", "name": "plus", "font_class": "plus", "unicode": "e676", "unicode_decimal": 58998 }, { "icon_id": "24879599", "name": "mic-filled", "font_class": "mic-filled", "unicode": "e677", "unicode_decimal": 58999 }, { "icon_id": "24879600", "name": "image-filled", "font_class": "image-filled", "unicode": "e678", "unicode_decimal": 59e3 }, { "icon_id": "24855900", "name": "locked-filled", "font_class": "locked-filled", "unicode": "e668", "unicode_decimal": 58984 }, { "icon_id": "24855901", "name": "info", "font_class": "info", "unicode": "e669", "unicode_decimal": 58985 }, { "icon_id": "24855903", "name": "locked", "font_class": "locked", "unicode": "e66b", "unicode_decimal": 58987 }, { "icon_id": "24855884", "name": "camera-filled", "font_class": "camera-filled", "unicode": "e658", "unicode_decimal": 58968 }, { "icon_id": "24855885", "name": "chat-filled", "font_class": "chat-filled", "unicode": "e659", "unicode_decimal": 58969 }, { "icon_id": "24855886", "name": "camera", "font_class": "camera", "unicode": "e65a", "unicode_decimal": 58970 }, { "icon_id": "24855887", "name": "circle", "font_class": "circle", "unicode": "e65b", "unicode_decimal": 58971 }, { "icon_id": "24855888", "name": "checkmarkempty", "font_class": "checkmarkempty", "unicode": "e65c", "unicode_decimal": 58972 }, { "icon_id": "24855889", "name": "chat", "font_class": "chat", "unicode": "e65d", "unicode_decimal": 58973 }, { "icon_id": "24855890", "name": "circle-filled", "font_class": "circle-filled", "unicode": "e65e", "unicode_decimal": 58974 }, { "icon_id": "24855891", "name": "flag", "font_class": "flag", "unicode": "e65f", "unicode_decimal": 58975 }, { "icon_id": "24855892", "name": "flag-filled", "font_class": "flag-filled", "unicode": "e660", "unicode_decimal": 58976 }, { "icon_id": "24855893", "name": "gear-filled", "font_class": "gear-filled", "unicode": "e661", "unicode_decimal": 58977 }, { "icon_id": "24855894", "name": "home", "font_class": "home", "unicode": "e662", "unicode_decimal": 58978 }, { "icon_id": "24855895", "name": "home-filled", "font_class": "home-filled", "unicode": "e663", "unicode_decimal": 58979 }, { "icon_id": "24855896", "name": "gear", "font_class": "gear", "unicode": "e664", "unicode_decimal": 58980 }, { "icon_id": "24855897", "name": "smallcircle-filled", "font_class": "smallcircle-filled", "unicode": "e665", "unicode_decimal": 58981 }, { "icon_id": "24855898", "name": "map-filled", "font_class": "map-filled", "unicode": "e666", "unicode_decimal": 58982 }, { "icon_id": "24855899", "name": "map", "font_class": "map", "unicode": "e667", "unicode_decimal": 58983 }, { "icon_id": "24855825", "name": "refresh-filled", "font_class": "refresh-filled", "unicode": "e656", "unicode_decimal": 58966 }, { "icon_id": "24855826", "name": "refresh", "font_class": "refresh", "unicode": "e657", "unicode_decimal": 58967 }, { "icon_id": "24855808", "name": "cloud-upload", "font_class": "cloud-upload", "unicode": "e645", "unicode_decimal": 58949 }, { "icon_id": "24855809", "name": "cloud-download-filled", "font_class": "cloud-download-filled", "unicode": "e646", "unicode_decimal": 58950 }, { "icon_id": "24855810", "name": "cloud-download", "font_class": "cloud-download", "unicode": "e647", "unicode_decimal": 58951 }, { "icon_id": "24855811", "name": "cloud-upload-filled", "font_class": "cloud-upload-filled", "unicode": "e648", "unicode_decimal": 58952 }, { "icon_id": "24855813", "name": "redo", "font_class": "redo", "unicode": "e64a", "unicode_decimal": 58954 }, { "icon_id": "24855814", "name": "images-filled", "font_class": "images-filled", "unicode": "e64b", "unicode_decimal": 58955 }, { "icon_id": "24855815", "name": "undo-filled", "font_class": "undo-filled", "unicode": "e64c", "unicode_decimal": 58956 }, { "icon_id": "24855816", "name": "more", "font_class": "more", "unicode": "e64d", "unicode_decimal": 58957 }, { "icon_id": "24855817", "name": "more-filled", "font_class": "more-filled", "unicode": "e64e", "unicode_decimal": 58958 }, { "icon_id": "24855818", "name": "undo", "font_class": "undo", "unicode": "e64f", "unicode_decimal": 58959 }, { "icon_id": "24855819", "name": "images", "font_class": "images", "unicode": "e650", "unicode_decimal": 58960 }, { "icon_id": "24855821", "name": "paperclip", "font_class": "paperclip", "unicode": "e652", "unicode_decimal": 58962 }, { "icon_id": "24855822", "name": "settings", "font_class": "settings", "unicode": "e653", "unicode_decimal": 58963 }, { "icon_id": "24855823", "name": "search", "font_class": "search", "unicode": "e654", "unicode_decimal": 58964 }, { "icon_id": "24855824", "name": "redo-filled", "font_class": "redo-filled", "unicode": "e655", "unicode_decimal": 58965 }, { "icon_id": "24841702", "name": "list", "font_class": "list", "unicode": "e644", "unicode_decimal": 58948 }, { "icon_id": "24841489", "name": "mail-open-filled", "font_class": "mail-open-filled", "unicode": "e63a", "unicode_decimal": 58938 }, { "icon_id": "24841491", "name": "hand-thumbsdown-filled", "font_class": "hand-down-filled", "unicode": "e63c", "unicode_decimal": 58940 }, { "icon_id": "24841492", "name": "hand-thumbsdown", "font_class": "hand-down", "unicode": "e63d", "unicode_decimal": 58941 }, { "icon_id": "24841493", "name": "hand-thumbsup-filled", "font_class": "hand-up-filled", "unicode": "e63e", "unicode_decimal": 58942 }, { "icon_id": "24841494", "name": "hand-thumbsup", "font_class": "hand-up", "unicode": "e63f", "unicode_decimal": 58943 }, { "icon_id": "24841496", "name": "heart-filled", "font_class": "heart-filled", "unicode": "e641", "unicode_decimal": 58945 }, { "icon_id": "24841498", "name": "mail-open", "font_class": "mail-open", "unicode": "e643", "unicode_decimal": 58947 }, { "icon_id": "24841488", "name": "heart", "font_class": "heart", "unicode": "e639", "unicode_decimal": 58937 }, { "icon_id": "24839963", "name": "loop", "font_class": "loop", "unicode": "e633", "unicode_decimal": 58931 }, { "icon_id": "24839866", "name": "pulldown", "font_class": "pulldown", "unicode": "e632", "unicode_decimal": 58930 }, { "icon_id": "24813798", "name": "scan", "font_class": "scan", "unicode": "e62a", "unicode_decimal": 58922 }, { "icon_id": "24813786", "name": "bars", "font_class": "bars", "unicode": "e627", "unicode_decimal": 58919 }, { "icon_id": "24813788", "name": "cart-filled", "font_class": "cart-filled", "unicode": "e629", "unicode_decimal": 58921 }, { "icon_id": "24813790", "name": "checkbox", "font_class": "checkbox", "unicode": "e62b", "unicode_decimal": 58923 }, { "icon_id": "24813791", "name": "checkbox-filled", "font_class": "checkbox-filled", "unicode": "e62c", "unicode_decimal": 58924 }, { "icon_id": "24813794", "name": "shop", "font_class": "shop", "unicode": "e62f", "unicode_decimal": 58927 }, { "icon_id": "24813795", "name": "headphones", "font_class": "headphones", "unicode": "e630", "unicode_decimal": 58928 }, { "icon_id": "24813796", "name": "cart", "font_class": "cart", "unicode": "e631", "unicode_decimal": 58929 } ] }; const getVal = (val) => { const reg = /^[0-9]*$/g; return typeof val === "number" || reg.test(val) ? val + "px" : val; }; const _sfc_main$P = { name: "UniIcons", emits: ["click"], props: { type: { type: String, default: "" }, color: { type: String, default: "#333333" }, size: { type: [Number, String], default: 16 }, customPrefix: { type: String, default: "" } }, data() { return { icons: icons.glyphs }; }, computed: { unicode() { let code = this.icons.find((v2) => v2.font_class === this.type); if (code) { return unescape(`%u${code.unicode}`); } return ""; }, iconSize() { return getVal(this.size); } }, methods: { _onClick() { this.$emit("click"); } } }; function _sfc_render$O(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( "text", { style: vue.normalizeStyle({ color: $props.color, "font-size": $options.iconSize }), class: vue.normalizeClass(["uni-icons", ["uniui-" + $props.type, $props.customPrefix, $props.customPrefix ? $props.type : ""]]), onClick: _cache[0] || (_cache[0] = (...args) => $options._onClick && $options._onClick(...args)) }, null, 6 /* CLASS, STYLE */ ); } const __easycom_0$8 = /* @__PURE__ */ _export_sfc(_sfc_main$P, [["render", _sfc_render$O], ["__scopeId", "data-v-946bce22"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-icons/uni-icons.vue"]]); function obj2strClass(obj) { let classess = ""; for (let key in obj) { const val = obj[key]; if (val) { classess += `${key} `; } } return classess; } function obj2strStyle(obj) { let style = ""; for (let key in obj) { const val = obj[key]; style += `${key}:${val};`; } return style; } const _sfc_main$O = { name: "uni-easyinput", emits: [ "click", "iconClick", "update:modelValue", "input", "focus", "blur", "confirm", "clear", "eyes", "change" ], model: { prop: "modelValue", event: "update:modelValue" }, options: { virtualHost: true }, inject: { form: { from: "uniForm", default: null }, formItem: { from: "uniFormItem", default: null } }, props: { name: String, value: [Number, String], modelValue: [Number, String], type: { type: String, default: "text" }, clearable: { type: Boolean, default: true }, autoHeight: { type: Boolean, default: false }, placeholder: { type: String, default: " " }, placeholderStyle: String, focus: { type: Boolean, default: false }, disabled: { type: Boolean, default: false }, maxlength: { type: [Number, String], default: 140 }, confirmType: { type: String, default: "done" }, clearSize: { type: [Number, String], default: 24 }, inputBorder: { type: Boolean, default: true }, prefixIcon: { type: String, default: "" }, suffixIcon: { type: String, default: "" }, trim: { type: [Boolean, String], default: true }, passwordIcon: { type: Boolean, default: true }, primaryColor: { type: String, default: "#2979ff" }, styles: { type: Object, default() { return { color: "#333", disableColor: "#F7F6F6", borderColor: "#e5e5e5" }; } }, errorMessage: { type: [String, Boolean], default: "" } }, data() { return { focused: false, val: "", showMsg: "", border: false, isFirstBorder: false, showClearIcon: false, showPassword: false, focusShow: false, localMsg: "" }; }, computed: { // 输入框内是否有值 isVal() { const val = this.val; if (val || val === 0) { return true; } return false; }, msg() { return this.localMsg || this.errorMessage; }, // 因为uniapp的input组件的maxlength组件必须要数值,这里转为数值,用户可以传入字符串数值 inputMaxlength() { return Number(this.maxlength); }, // 处理外层样式的style boxStyle() { return `color:${this.inputBorder && this.msg ? "#e43d33" : this.styles.color};`; }, // input 内容的类和样式处理 inputContentClass() { return obj2strClass({ "is-input-border": this.inputBorder, "is-input-error-border": this.inputBorder && this.msg, "is-textarea": this.type === "textarea", "is-disabled": this.disabled }); }, inputContentStyle() { const focusColor = this.focusShow ? this.primaryColor : this.styles.borderColor; const borderColor = this.inputBorder && this.msg ? "#dd524d" : focusColor; return obj2strStyle({ "border-color": borderColor || "#e5e5e5", "background-color": this.disabled ? this.styles.disableColor : this.styles.backgroundColor }); }, // input右侧样式 inputStyle() { const paddingRight = this.type === "password" || this.clearable || this.prefixIcon ? "" : "10px"; return obj2strStyle({ "padding-right": paddingRight, "padding-left": this.prefixIcon ? "" : "10px" }); } }, watch: { value(newVal) { this.val = newVal; }, modelValue(newVal) { this.val = newVal; }, focus(newVal) { this.$nextTick(() => { this.focused = this.focus; this.focusShow = this.focus; }); } }, created() { this.init(); if (this.form && this.formItem) { this.$watch("formItem.errMsg", (newVal) => { this.localMsg = newVal; }); } }, mounted() { this.$nextTick(() => { this.focused = this.focus; this.focusShow = this.focus; }); }, methods: { /** * 初始化变量值 */ init() { if (this.value || this.value === 0) { this.val = this.value; } else if (this.modelValue || this.modelValue === 0) { this.val = this.modelValue; } else { this.val = null; } }, /** * 点击图标时触发 * @param {Object} type */ onClickIcon(type) { this.$emit("iconClick", type); }, /** * 显示隐藏内容,密码框时生效 */ onEyes() { this.showPassword = !this.showPassword; this.$emit("eyes", this.showPassword); }, /** * 输入时触发 * @param {Object} event */ onInput(event) { let value = event.detail.value; if (this.trim) { if (typeof this.trim === "boolean" && this.trim) { value = this.trimStr(value); } if (typeof this.trim === "string") { value = this.trimStr(value, this.trim); } } if (this.errMsg) this.errMsg = ""; this.val = value; this.$emit("input", value); this.$emit("update:modelValue", value); }, /** * 外部调用方法 * 获取焦点时触发 * @param {Object} event */ onFocus() { this.$nextTick(() => { this.focused = true; }); this.$emit("focus", null); }, _Focus(event) { this.focusShow = true; this.$emit("focus", event); }, /** * 外部调用方法 * 失去焦点时触发 * @param {Object} event */ onBlur() { this.focused = false; this.$emit("focus", null); }, _Blur(event) { event.detail.value; this.focusShow = false; this.$emit("blur", event); this.$emit("change", this.val); if (this.form && this.formItem) { const { validateTrigger } = this.form; if (validateTrigger === "blur") { this.formItem.onFieldChange(); } } }, /** * 按下键盘的发送键 * @param {Object} e */ onConfirm(e2) { this.$emit("confirm", this.val); this.$emit("change", this.val); }, /** * 清理内容 * @param {Object} event */ onClear(event) { this.val = ""; this.$emit("input", ""); this.$emit("update:modelValue", ""); this.$emit("clear"); }, /** * 去除空格 */ trimStr(str, pos = "both") { if (pos === "both") { return str.trim(); } else if (pos === "left") { return str.trimLeft(); } else if (pos === "right") { return str.trimRight(); } else if (pos === "start") { return str.trimStart(); } else if (pos === "end") { return str.trimEnd(); } else if (pos === "all") { return str.replace(/\s+/g, ""); } else if (pos === "none") { return str; } return str; } } }; function _sfc_render$N(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock( "view", { class: vue.normalizeClass(["uni-easyinput", { "uni-easyinput-error": $options.msg }]), style: vue.normalizeStyle($options.boxStyle) }, [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-easyinput__content", $options.inputContentClass]), style: vue.normalizeStyle($options.inputContentStyle) }, [ vue.renderSlot(_ctx.$slots, "prefixIcon", {}, () => [ $props.prefixIcon ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, class: "content-clear-icon", type: $props.prefixIcon, color: "#c0c4cc", onClick: _cache[0] || (_cache[0] = ($event) => $options.onClickIcon("prefix")), size: "22" }, null, 8, ["type"])) : vue.createCommentVNode("v-if", true) ], true), $props.type === "textarea" ? (vue.openBlock(), vue.createElementBlock("textarea", { key: 0, class: vue.normalizeClass(["uni-easyinput__content-textarea", { "input-padding": $props.inputBorder }]), name: $props.name, value: $data.val, placeholder: $props.placeholder, placeholderStyle: $props.placeholderStyle, disabled: $props.disabled, "placeholder-class": "uni-easyinput__placeholder-class", maxlength: $options.inputMaxlength, focus: $data.focused, autoHeight: $props.autoHeight, onInput: _cache[1] || (_cache[1] = (...args) => $options.onInput && $options.onInput(...args)), onBlur: _cache[2] || (_cache[2] = (...args) => $options._Blur && $options._Blur(...args)), onFocus: _cache[3] || (_cache[3] = (...args) => $options._Focus && $options._Focus(...args)), onConfirm: _cache[4] || (_cache[4] = (...args) => $options.onConfirm && $options.onConfirm(...args)) }, null, 42, ["name", "value", "placeholder", "placeholderStyle", "disabled", "maxlength", "focus", "autoHeight"])) : (vue.openBlock(), vue.createElementBlock("input", { key: 1, type: $props.type === "password" ? "text" : $props.type, class: "uni-easyinput__content-input", style: vue.normalizeStyle($options.inputStyle), name: $props.name, value: $data.val, password: !$data.showPassword && $props.type === "password", placeholder: $props.placeholder, placeholderStyle: $props.placeholderStyle, "placeholder-class": "uni-easyinput__placeholder-class", disabled: $props.disabled, maxlength: $options.inputMaxlength, focus: $data.focused, confirmType: $props.confirmType, onFocus: _cache[5] || (_cache[5] = (...args) => $options._Focus && $options._Focus(...args)), onBlur: _cache[6] || (_cache[6] = (...args) => $options._Blur && $options._Blur(...args)), onInput: _cache[7] || (_cache[7] = (...args) => $options.onInput && $options.onInput(...args)), onConfirm: _cache[8] || (_cache[8] = (...args) => $options.onConfirm && $options.onConfirm(...args)) }, null, 44, ["type", "name", "value", "password", "placeholder", "placeholderStyle", "disabled", "maxlength", "focus", "confirmType"])), $props.type === "password" && $props.passwordIcon ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 2 }, [ vue.createCommentVNode(" 开启密码时显示小眼睛 "), $options.isVal ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, class: vue.normalizeClass(["content-clear-icon", { "is-textarea-icon": $props.type === "textarea" }]), type: $data.showPassword ? "eye-slash-filled" : "eye-filled", size: 22, color: $data.focusShow ? $props.primaryColor : "#c0c4cc", onClick: $options.onEyes }, null, 8, ["class", "type", "color", "onClick"])) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ )) : $props.suffixIcon || _ctx.$slots.suffixIcon ? vue.renderSlot(_ctx.$slots, "suffixIcon", { key: 3 }, () => [ $props.suffixIcon ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, class: "content-clear-icon", type: $props.suffixIcon, color: "#c0c4cc", onClick: _cache[9] || (_cache[9] = ($event) => $options.onClickIcon("suffix")), size: "22" }, null, 8, ["type"])) : vue.createCommentVNode("v-if", true) ], true) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 4 }, [ $props.clearable && $options.isVal && !$props.disabled && $props.type !== "textarea" ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, class: vue.normalizeClass(["content-clear-icon", { "is-textarea-icon": $props.type === "textarea" }]), type: "clear", size: $props.clearSize, color: $options.msg ? "#dd524d" : $data.focusShow ? $props.primaryColor : "#c0c4cc", onClick: $options.onClear }, null, 8, ["class", "size", "color", "onClick"])) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ )), vue.renderSlot(_ctx.$slots, "right", {}, void 0, true) ], 6 /* CLASS, STYLE */ ) ], 6 /* CLASS, STYLE */ ); } const __easycom_0$7 = /* @__PURE__ */ _export_sfc(_sfc_main$O, [["render", _sfc_render$N], ["__scopeId", "data-v-f7a14e66"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-easyinput/uni-easyinput.vue"]]); var pattern = { email: /^\S+?@\S+?\.\S+?$/, idcard: /^[1-9]\d{5}(18|19|([23]\d))\d{2}((0[1-9])|(10|11|12))(([0-2][1-9])|10|20|30|31)\d{3}[0-9Xx]$/, url: new RegExp( "^(?!mailto:)(?:(?:http|https|ftp)://|//)(?:\\S+(?::\\S*)?@)?(?:(?:(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[0-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)(?:\\.(?:[a-z\\u00a1-\\uffff0-9]+-*)*[a-z\\u00a1-\\uffff0-9]+)*(?:\\.(?:[a-z\\u00a1-\\uffff]{2,})))|localhost)(?::\\d{2,5})?(?:(/|\\?|#)[^\\s]*)?$", "i" ) }; const FORMAT_MAPPING = { "int": "integer", "bool": "boolean", "double": "number", "long": "number", "password": "string" // "fileurls": 'array' }; function formatMessage(args, resources = "") { var defaultMessage = ["label"]; defaultMessage.forEach((item) => { if (args[item] === void 0) { args[item] = ""; } }); let str = resources; for (let key in args) { let reg = new RegExp("{" + key + "}"); str = str.replace(reg, args[key]); } return str; } function isEmptyValue(value, type) { if (value === void 0 || value === null) { return true; } if (typeof value === "string" && !value) { return true; } if (Array.isArray(value) && !value.length) { return true; } if (type === "object" && !Object.keys(value).length) { return true; } return false; } const types = { integer(value) { return types.number(value) && parseInt(value, 10) === value; }, string(value) { return typeof value === "string"; }, number(value) { if (isNaN(value)) { return false; } return typeof value === "number"; }, "boolean": function(value) { return typeof value === "boolean"; }, "float": function(value) { return types.number(value) && !types.integer(value); }, array(value) { return Array.isArray(value); }, object(value) { return typeof value === "object" && !types.array(value); }, date(value) { return value instanceof Date; }, timestamp(value) { if (!this.integer(value) || Math.abs(value).toString().length > 16) { return false; } return true; }, file(value) { return typeof value.url === "string"; }, email(value) { return typeof value === "string" && !!value.match(pattern.email) && value.length < 255; }, url(value) { return typeof value === "string" && !!value.match(pattern.url); }, pattern(reg, value) { try { return new RegExp(reg).test(value); } catch (e2) { return false; } }, method(value) { return typeof value === "function"; }, idcard(value) { return typeof value === "string" && !!value.match(pattern.idcard); }, "url-https"(value) { return this.url(value) && value.startsWith("https://"); }, "url-scheme"(value) { return value.startsWith("://"); }, "url-web"(value) { return false; } }; class RuleValidator { constructor(message) { this._message = message; } async validateRule(fieldKey, fieldValue, value, data, allData) { var result = null; let rules = fieldValue.rules; let hasRequired = rules.findIndex((item) => { return item.required; }); if (hasRequired < 0) { if (value === null || value === void 0) { return result; } if (typeof value === "string" && !value.length) { return result; } } var message = this._message; if (rules === void 0) { return message["default"]; } for (var i2 = 0; i2 < rules.length; i2++) { let rule = rules[i2]; let vt2 = this._getValidateType(rule); Object.assign(rule, { label: fieldValue.label || `["${fieldKey}"]` }); if (RuleValidatorHelper[vt2]) { result = RuleValidatorHelper[vt2](rule, value, message); if (result != null) { break; } } if (rule.validateExpr) { let now2 = Date.now(); let resultExpr = rule.validateExpr(value, allData, now2); if (resultExpr === false) { result = this._getMessage(rule, rule.errorMessage || this._message["default"]); break; } } if (rule.validateFunction) { result = await this.validateFunction(rule, value, data, allData, vt2); if (result !== null) { break; } } } if (result !== null) { result = message.TAG + result; } return result; } async validateFunction(rule, value, data, allData, vt2) { let result = null; try { let callbackMessage = null; const res = await rule.validateFunction(rule, value, allData || data, (message) => { callbackMessage = message; }); if (callbackMessage || typeof res === "string" && res || res === false) { result = this._getMessage(rule, callbackMessage || res, vt2); } } catch (e2) { result = this._getMessage(rule, e2.message, vt2); } return result; } _getMessage(rule, message, vt2) { return formatMessage(rule, message || rule.errorMessage || this._message[vt2] || message["default"]); } _getValidateType(rule) { var result = ""; if (rule.required) { result = "required"; } else if (rule.format) { result = "format"; } else if (rule.arrayType) { result = "arrayTypeFormat"; } else if (rule.range) { result = "range"; } else if (rule.maximum !== void 0 || rule.minimum !== void 0) { result = "rangeNumber"; } else if (rule.maxLength !== void 0 || rule.minLength !== void 0) { result = "rangeLength"; } else if (rule.pattern) { result = "pattern"; } else if (rule.validateFunction) { result = "validateFunction"; } return result; } } const RuleValidatorHelper = { required(rule, value, message) { if (rule.required && isEmptyValue(value, rule.format || typeof value)) { return formatMessage(rule, rule.errorMessage || message.required); } return null; }, range(rule, value, message) { const { range, errorMessage } = rule; let list = new Array(range.length); for (let i2 = 0; i2 < range.length; i2++) { const item = range[i2]; if (types.object(item) && item.value !== void 0) { list[i2] = item.value; } else { list[i2] = item; } } let result = false; if (Array.isArray(value)) { result = new Set(value.concat(list)).size === list.length; } else { if (list.indexOf(value) > -1) { result = true; } } if (!result) { return formatMessage(rule, errorMessage || message["enum"]); } return null; }, rangeNumber(rule, value, message) { if (!types.number(value)) { return formatMessage(rule, rule.errorMessage || message.pattern.mismatch); } let { minimum, maximum, exclusiveMinimum, exclusiveMaximum } = rule; let min = exclusiveMinimum ? value <= minimum : value < minimum; let max = exclusiveMaximum ? value >= maximum : value > maximum; if (minimum !== void 0 && min) { return formatMessage(rule, rule.errorMessage || message["number"][exclusiveMinimum ? "exclusiveMinimum" : "minimum"]); } else if (maximum !== void 0 && max) { return formatMessage(rule, rule.errorMessage || message["number"][exclusiveMaximum ? "exclusiveMaximum" : "maximum"]); } else if (minimum !== void 0 && maximum !== void 0 && (min || max)) { return formatMessage(rule, rule.errorMessage || message["number"].range); } return null; }, rangeLength(rule, value, message) { if (!types.string(value) && !types.array(value)) { return formatMessage(rule, rule.errorMessage || message.pattern.mismatch); } let min = rule.minLength; let max = rule.maxLength; let val = value.length; if (min !== void 0 && val < min) { return formatMessage(rule, rule.errorMessage || message["length"].minLength); } else if (max !== void 0 && val > max) { return formatMessage(rule, rule.errorMessage || message["length"].maxLength); } else if (min !== void 0 && max !== void 0 && (val < min || val > max)) { return formatMessage(rule, rule.errorMessage || message["length"].range); } return null; }, pattern(rule, value, message) { if (!types["pattern"](rule.pattern, value)) { return formatMessage(rule, rule.errorMessage || message.pattern.mismatch); } return null; }, format(rule, value, message) { var customTypes = Object.keys(types); var format = FORMAT_MAPPING[rule.format] ? FORMAT_MAPPING[rule.format] : rule.format || rule.arrayType; if (customTypes.indexOf(format) > -1) { if (!types[format](value)) { return formatMessage(rule, rule.errorMessage || message.typeError); } } return null; }, arrayTypeFormat(rule, value, message) { if (!Array.isArray(value)) { return formatMessage(rule, rule.errorMessage || message.typeError); } for (let i2 = 0; i2 < value.length; i2++) { const element = value[i2]; let formatResult = this.format(rule, element, message); if (formatResult !== null) { return formatResult; } } return null; } }; class SchemaValidator extends RuleValidator { constructor(schema, options) { super(SchemaValidator.message); this._schema = schema; this._options = options || null; } updateSchema(schema) { this._schema = schema; } async validate(data, allData) { let result = this._checkFieldInSchema(data); if (!result) { result = await this.invokeValidate(data, false, allData); } return result.length ? result[0] : null; } async validateAll(data, allData) { let result = this._checkFieldInSchema(data); if (!result) { result = await this.invokeValidate(data, true, allData); } return result; } async validateUpdate(data, allData) { let result = this._checkFieldInSchema(data); if (!result) { result = await this.invokeValidateUpdate(data, false, allData); } return result.length ? result[0] : null; } async invokeValidate(data, all, allData) { let result = []; let schema = this._schema; for (let key in schema) { let value = schema[key]; let errorMessage = await this.validateRule(key, value, data[key], data, allData); if (errorMessage != null) { result.push({ key, errorMessage }); if (!all) break; } } return result; } async invokeValidateUpdate(data, all, allData) { let result = []; for (let key in data) { let errorMessage = await this.validateRule(key, this._schema[key], data[key], data, allData); if (errorMessage != null) { result.push({ key, errorMessage }); if (!all) break; } } return result; } _checkFieldInSchema(data) { var keys = Object.keys(data); var keys2 = Object.keys(this._schema); if (new Set(keys.concat(keys2)).size === keys2.length) { return ""; } var noExistFields = keys.filter((key) => { return keys2.indexOf(key) < 0; }); var errorMessage = formatMessage({ field: JSON.stringify(noExistFields) }, SchemaValidator.message.TAG + SchemaValidator.message["defaultInvalid"]); return [{ key: "invalid", errorMessage }]; } } function Message() { return { TAG: "", default: "验证错误", defaultInvalid: "提交的字段{field}在数据库中并不存在", validateFunction: "验证无效", required: "{label}必填", "enum": "{label}超出范围", timestamp: "{label}格式无效", whitespace: "{label}不能为空", typeError: "{label}类型无效", date: { format: "{label}日期{value}格式无效", parse: "{label}日期无法解析,{value}无效", invalid: "{label}日期{value}无效" }, length: { minLength: "{label}长度不能少于{minLength}", maxLength: "{label}长度不能超过{maxLength}", range: "{label}必须介于{minLength}和{maxLength}之间" }, number: { minimum: "{label}不能小于{minimum}", maximum: "{label}不能大于{maximum}", exclusiveMinimum: "{label}不能小于等于{minimum}", exclusiveMaximum: "{label}不能大于等于{maximum}", range: "{label}必须介于{minimum}and{maximum}之间" }, pattern: { mismatch: "{label}格式不匹配" } }; } SchemaValidator.message = new Message(); const deepCopy = (val) => { return JSON.parse(JSON.stringify(val)); }; const typeFilter = (format) => { return format === "int" || format === "double" || format === "number" || format === "timestamp"; }; const getValue = (key, value, rules) => { const isRuleNumType = rules.find((val) => val.format && typeFilter(val.format)); const isRuleBoolType = rules.find((val) => val.format && val.format === "boolean" || val.format === "bool"); if (!!isRuleNumType) { if (!value && value !== 0) { value = null; } else { value = isNumber(Number(value)) ? Number(value) : value; } } if (!!isRuleBoolType) { value = isBoolean(value) ? value : false; } return value; }; const setDataValue = (field, formdata, value) => { formdata[field] = value; return value || ""; }; const getDataValue = (field, data) => { return objGet(data, field); }; const realName = (name, data = {}) => { const base_name = _basePath(name); if (typeof base_name === "object" && Array.isArray(base_name) && base_name.length > 1) { const realname = base_name.reduce((a2, b2) => a2 += `#${b2}`, "_formdata_"); return realname; } return base_name[0] || name; }; const isRealName = (name) => { const reg = /^_formdata_#*/; return reg.test(name); }; const rawData = (object = {}, name) => { let newData = JSON.parse(JSON.stringify(object)); let formData = {}; for (let i2 in newData) { let path = name2arr(i2); objSet(formData, path, newData[i2]); } return formData; }; const name2arr = (name) => { let field = name.replace("_formdata_#", ""); field = field.split("#").map((v2) => isNumber(v2) ? Number(v2) : v2); return field; }; const objSet = (object, path, value) => { if (typeof object !== "object") return object; _basePath(path).reduce((o2, k, i2, _2) => { if (i2 === _2.length - 1) { o2[k] = value; return null; } else if (k in o2) { return o2[k]; } else { o2[k] = /^[0-9]{1,}$/.test(_2[i2 + 1]) ? [] : {}; return o2[k]; } }, object); return object; }; function _basePath(path) { if (Array.isArray(path)) return path; return path.replace(/\[/g, ".").replace(/\]/g, "").split("."); } const objGet = (object, path, defaultVal = "undefined") => { let newPath = _basePath(path); let val = newPath.reduce((o2, k) => { return (o2 || {})[k]; }, object); return !val || val !== void 0 ? val : defaultVal; }; const isNumber = (num) => { return !isNaN(Number(num)); }; const isBoolean = (bool) => { return typeof bool === "boolean"; }; const isRequiredField = (rules) => { let isNoField = false; for (let i2 = 0; i2 < rules.length; i2++) { const ruleData = rules[i2]; if (ruleData.required) { isNoField = true; break; } } return isNoField; }; const isEqual = (a2, b2) => { if (a2 === b2) { return a2 !== 0 || 1 / a2 === 1 / b2; } if (a2 == null || b2 == null) { return a2 === b2; } var classNameA = toString.call(a2), classNameB = toString.call(b2); if (classNameA !== classNameB) { return false; } switch (classNameA) { case "[object RegExp]": case "[object String]": return "" + a2 === "" + b2; case "[object Number]": if (+a2 !== +a2) { return +b2 !== +b2; } return +a2 === 0 ? 1 / +a2 === 1 / b2 : +a2 === +b2; case "[object Date]": case "[object Boolean]": return +a2 === +b2; } if (classNameA == "[object Object]") { var propsA = Object.getOwnPropertyNames(a2), propsB = Object.getOwnPropertyNames(b2); if (propsA.length != propsB.length) { return false; } for (var i2 = 0; i2 < propsA.length; i2++) { var propName = propsA[i2]; if (a2[propName] !== b2[propName]) { return false; } } return true; } if (classNameA == "[object Array]") { if (a2.toString() == b2.toString()) { return true; } return false; } }; const _sfc_main$N = { name: "uniForms", emits: ["validate", "submit"], options: { virtualHost: true }, props: { // 即将弃用 value: { type: Object, default() { return null; } }, // vue3 替换 value 属性 modelValue: { type: Object, default() { return null; } }, // 1.4.0 开始将不支持 v-model ,且废弃 value 和 modelValue model: { type: Object, default() { return null; } }, // 表单校验规则 rules: { type: Object, default() { return {}; } }, //校验错误信息提示方式 默认 undertext 取值 [undertext|toast|modal] errShowType: { type: String, default: "undertext" }, // 校验触发器方式 默认 bind 取值 [bind|submit] validateTrigger: { type: String, default: "submit" }, // label 位置,默认 left 取值 top/left labelPosition: { type: String, default: "left" }, // label 宽度 labelWidth: { type: [String, Number], default: "" }, // label 居中方式,默认 left 取值 left/center/right labelAlign: { type: String, default: "left" }, border: { type: Boolean, default: false } }, provide() { return { uniForm: this }; }, data() { return { // 表单本地值的记录,不应该与传如的值进行关联 formData: {}, formRules: {} }; }, computed: { // 计算数据源变化的 localData() { const localVal = this.model || this.modelValue || this.value; if (localVal) { return deepCopy(localVal); } return {}; } }, watch: { // 监听数据变化 ,暂时不使用,需要单独赋值 // localData: {}, // 监听规则变化 rules: { handler: function(val, oldVal) { this.setRules(val); }, deep: true, immediate: true } }, created() { let getbinddata = getApp().$vm.$.appContext.config.globalProperties.binddata; if (!getbinddata) { getApp().$vm.$.appContext.config.globalProperties.binddata = function(name, value, formName) { if (formName) { this.$refs[formName].setValue(name, value); } else { let formVm; for (let i2 in this.$refs) { const vm = this.$refs[i2]; if (vm && vm.$options && vm.$options.name === "uniForms") { formVm = vm; break; } } if (!formVm) return console.error("当前 uni-froms 组件缺少 ref 属性"); formVm.setValue(name, value); } }; } this.childrens = []; this.inputChildrens = []; this.setRules(this.rules); }, methods: { /** * 外部调用方法 * 设置规则 ,主要用于小程序自定义检验规则 * @param {Array} rules 规则源数据 */ setRules(rules) { this.formRules = Object.assign({}, this.formRules, rules); this.validator = new SchemaValidator(rules); }, /** * 外部调用方法 * 设置数据,用于设置表单数据,公开给用户使用 , 不支持在动态表单中使用 * @param {Object} key * @param {Object} value */ setValue(key, value) { let example = this.childrens.find((child) => child.name === key); if (!example) return null; this.formData[key] = getValue(key, value, this.formRules[key] && this.formRules[key].rules || []); return example.onFieldChange(this.formData[key]); }, /** * 外部调用方法 * 手动提交校验表单 * 对整个表单进行校验的方法,参数为一个回调函数。 * @param {Array} keepitem 保留不参与校验的字段 * @param {type} callback 方法回调 */ validate(keepitem, callback) { return this.checkAll(this.formData, keepitem, callback); }, /** * 外部调用方法 * 部分表单校验 * @param {Array|String} props 需要校验的字段 * @param {Function} 回调函数 */ validateField(props = [], callback) { props = [].concat(props); let invalidFields = {}; this.childrens.forEach((item) => { const name = realName(item.name); if (props.indexOf(name) !== -1) { invalidFields = Object.assign({}, invalidFields, { [name]: this.formData[name] }); } }); return this.checkAll(invalidFields, [], callback); }, /** * 外部调用方法 * 移除表单项的校验结果。传入待移除的表单项的 prop 属性或者 prop 组成的数组,如不传则移除整个表单的校验结果 * @param {Array|String} props 需要移除校验的字段 ,不填为所有 */ clearValidate(props = []) { props = [].concat(props); this.childrens.forEach((item) => { if (props.length === 0) { item.errMsg = ""; } else { const name = realName(item.name); if (props.indexOf(name) !== -1) { item.errMsg = ""; } } }); }, /** * 外部调用方法 ,即将废弃 * 手动提交校验表单 * 对整个表单进行校验的方法,参数为一个回调函数。 * @param {Array} keepitem 保留不参与校验的字段 * @param {type} callback 方法回调 */ submit(keepitem, callback, type) { for (let i2 in this.dataValue) { const itemData = this.childrens.find((v2) => v2.name === i2); if (itemData) { if (this.formData[i2] === void 0) { this.formData[i2] = this._getValue(i2, this.dataValue[i2]); } } } if (!type) { console.warn("submit 方法即将废弃,请使用validate方法代替!"); } return this.checkAll(this.formData, keepitem, callback, "submit"); }, // 校验所有 async checkAll(invalidFields, keepitem, callback, type) { if (!this.validator) return; let childrens = []; for (let i2 in invalidFields) { const item = this.childrens.find((v2) => realName(v2.name) === i2); if (item) { childrens.push(item); } } if (!callback && typeof keepitem === "function") { callback = keepitem; } let promise; if (!callback && typeof callback !== "function" && Promise) { promise = new Promise((resolve, reject) => { callback = function(valid, invalidFields2) { !valid ? resolve(invalidFields2) : reject(valid); }; }); } let results = []; let tempFormData = JSON.parse(JSON.stringify(invalidFields)); for (let i2 in childrens) { const child = childrens[i2]; let name = realName(child.name); const result = await child.onFieldChange(tempFormData[name]); if (result) { results.push(result); if (this.errShowType === "toast" || this.errShowType === "modal") break; } } if (Array.isArray(results)) { if (results.length === 0) results = null; } if (Array.isArray(keepitem)) { keepitem.forEach((v2) => { let vName = realName(v2); let value = getDataValue(v2, this.localData); if (value !== void 0) { tempFormData[vName] = value; } }); } if (type === "submit") { this.$emit("submit", { detail: { value: tempFormData, errors: results } }); } else { this.$emit("validate", results); } let resetFormData = {}; resetFormData = rawData(tempFormData, this.name); callback && typeof callback === "function" && callback(results, resetFormData); if (promise && callback) { return promise; } else { return null; } }, /** * 返回validate事件 * @param {Object} result */ validateCheck(result) { this.$emit("validate", result); }, _getValue: getValue, _isRequiredField: isRequiredField, _setDataValue: setDataValue, _getDataValue: getDataValue, _realName: realName, _isRealName: isRealName, _isEqual: isEqual } }; function _sfc_render$M(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-forms" }, [ vue.createElementVNode("form", null, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ]) ]); } const __easycom_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$N, [["render", _sfc_render$M], ["__scopeId", "data-v-13523fe0"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-forms/uni-forms.vue"]]); const postLoginAPI = (data) => { return http({ method: "POST", url: "/admin/index/login", data }); }; const getVerifyCodeImg = (captcha_id) => { return http({ method: "GET", url: `/api/common/captcha?server=1&id=${captcha_id}&m=` + Math.random(), responseType: "arraybuffer" //设置响应类型 }); }; const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({ __name: "login", setup(__props, { expose: __expose }) { __expose(); const loading = vue.ref(false); const verifyCodeImg = vue.ref(""); const data = vue.reactive({ captcha_id: "f2dd39ce-0d3e-4c1e-916c-b50090a7590s" }); onLoad(() => { _getVerifyCodeImg(); }); const _getVerifyCodeImg = async () => { const res = await getVerifyCodeImg(data.captcha_id); const arrayBuffer = new Uint8Array(res); const base64 = "data:image/png;base64," + uni.arrayBufferToBase64(arrayBuffer); verifyCodeImg.value = base64; }; const loginSuccess = (profile) => { const memberStore = useMemberStore(); memberStore.setProfile(profile); uni.showToast({ icon: "success", title: "登录成功" }); formatAppLog("log", "at pages/login/login.vue:28", "登录成功", profile); setTimeout(() => { uni.navigateBack(); }, 500); }; const form = vue.ref({ account: "admin", password: "", captcha: "" }); const onSubmit = async () => { if (loading.value) { return false; } if (form.value.account == "") { uni.showToast({ icon: "none", position: "bottom", title: "用户名不能为空" }); return; } if (form.value.password == "") { uni.showToast({ icon: "none", position: "bottom", title: "密码不能为空" }); return; } if (form.value.password.length < 6) { uni.showToast({ icon: "none", position: "bottom", title: "密码长度不能小于6位" }); return; } loading.value = true; const param = { username: form.value.account, password: form.value.password, captcha: form.value.captcha, keep: true, loading: true, captcha_id: data.captcha_id }; const res = await postLoginAPI(param); loading.value = false; if (res.code === 1) { loginSuccess(res.data.userInfo); } else { uni.showToast({ title: res.msg, icon: "none" }); _getVerifyCodeImg(); } }; const __returned__ = { loading, verifyCodeImg, data, _getVerifyCodeImg, loginSuccess, form, onSubmit }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$L(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createElementVNode("view", { class: "logo" }, [ vue.createElementVNode("image", { src: _imports_0$2 }) ]), vue.createElementVNode("view", { class: "login" }, [ vue.createCommentVNode(" 网页端表单登录 "), vue.createElementVNode("view", { class: "input-box padding-lr" }, [ vue.createVNode(_component_uni_forms, { modelValue: $setup.form }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "cu-form-group margin-top" }, [ vue.createVNode(_component_uni_icons, { class: "uni-icon", type: "person", size: "30", color: "#999" }), vue.createVNode(_component_uni_easyinput, { placeholder: "账号", modelValue: $setup.form.account, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.form.account = $event) }, null, 8, ["modelValue"]) ]), vue.createElementVNode("view", { class: "cu-form-group" }, [ vue.createVNode(_component_uni_icons, { class: "uni-icon", type: "locked", size: "30", color: "#999" }), vue.createVNode(_component_uni_easyinput, { placeholder: "密码", type: "password", modelValue: $setup.form.password, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.form.password = $event) }, null, 8, ["modelValue"]) ]), vue.createElementVNode("view", { class: "cu-form-group solid-bottom" }, [ vue.createVNode(_component_uni_icons, { class: "uni-icon", type: "more-filled", size: "30", color: "#999" }), vue.createVNode(_component_uni_easyinput, { placeholder: "验证码", modelValue: $setup.form.captcha, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.form.captcha = $event) }, null, 8, ["modelValue"]), vue.createCommentVNode(" "), vue.createElementVNode("image", { class: "cu-btn captchaImg", src: $setup.verifyCodeImg, onClick: $setup._getVerifyCodeImg }, null, 8, ["src"]) ]) ]), _: 1 /* STABLE */ }, 8, ["modelValue"]) ]), vue.createCommentVNode(' '), vue.createCommentVNode(' '), vue.createElementVNode("button", { onClick: $setup.onSubmit, class: "button phone", loading: $setup.loading }, "登录", 8, ["loading"]), vue.createElementVNode("view", { class: "tips" }, "登录/注册即视为你同意《服务条款》和《英途仓库隐私协议》") ]) ]); } const PagesLoginLogin = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["render", _sfc_render$L], ["__file", "E:/demo/hmrabbit/src/pages/login/login.vue"]]); const getHotRecommendAPI = (url, data) => { return http({ method: "GET", url, data }); }; const _sfc_main$L = /* @__PURE__ */ vue.defineComponent({ __name: "hot", props: { type: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const urlMap = [ { type: "1", title: "特惠推荐", url: "/hot/preference" }, { type: "2", title: "爆款推荐", url: "/hot/inVogue" }, { type: "3", title: "一站买全", url: "/hot/oneStop" }, { type: "4", title: "新鲜好物", url: "/hot/new" } ]; const query = __props; const currUrlMap = urlMap.find((v2) => v2.type === query.type); uni.setNavigationBarTitle({ title: currUrlMap.title }); const bannerPicture = vue.ref(""); const subTypes = vue.ref([]); const activeIndex = vue.ref(0); const getHotRecommendData = async () => { const res = await getHotRecommendAPI(currUrlMap.url, { // 技巧:环境变量,开发环境,修改初始页面方便测试分页结束 page: 30, pageSize: 10 }); bannerPicture.value = res.result.bannerPicture; subTypes.value = res.result.subTypes; }; onLoad(() => { getHotRecommendData(); }); const onScrolltolower = async () => { const currsubTypes = subTypes.value[activeIndex.value]; if (currsubTypes.goodsItems.page < currsubTypes.goodsItems.pages) { currsubTypes.goodsItems.page++; } else { currsubTypes.finish = true; return uni.showToast({ icon: "none", title: "没有更多数据了~" }); } const res = await getHotRecommendAPI(currUrlMap.url, { subType: currsubTypes.id, page: currsubTypes.goodsItems.page, pageSize: currsubTypes.goodsItems.pageSize }); const newsubTypes = res.result.subTypes[activeIndex.value]; currsubTypes.goodsItems.items.push(...newsubTypes.goodsItems.items); }; const __returned__ = { urlMap, query, currUrlMap, bannerPicture, subTypes, activeIndex, getHotRecommendData, onScrolltolower }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$K(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 推荐封面图 "), vue.createElementVNode("view", { class: "cover" }, [ vue.createElementVNode("image", { class: "image", mode: "widthFix", src: $setup.bannerPicture }, null, 8, ["src"]) ]), vue.createCommentVNode(" 推荐选项 "), vue.createElementVNode("view", { class: "tabs" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.subTypes, (item, index) => { return vue.openBlock(), vue.createElementBlock("text", { key: item.id, class: vue.normalizeClass(["text", { active: index === $setup.activeIndex }]), onClick: ($event) => $setup.activeIndex = index }, vue.toDisplayString(item.title), 11, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createCommentVNode(" 推荐列表 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.subTypes, (item, index) => { return vue.withDirectives((vue.openBlock(), vue.createElementBlock( "scroll-view", { "enable-back-to-top": "", key: item.id, "scroll-y": "", class: "scroll-view", onScrolltolower: $setup.onScrolltolower }, [ vue.createElementVNode("view", { class: "goods" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.goodsItems.items, (goods2) => { return vue.openBlock(), vue.createElementBlock("navigator", { "hover-class": "none", class: "navigator", key: goods2.id, url: `/pages/goods/goods?id=${goods2.id}` }, [ vue.createElementVNode("image", { class: "thumb", src: goods2.picture }, null, 8, ["src"]), vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(goods2.name), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createElementVNode( "text", { class: "number" }, vue.toDisplayString(goods2.price), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createElementVNode( "view", { class: "loading-text" }, vue.toDisplayString(item.finish ? "没有更多数据了~" : "正在加载..."), 1 /* TEXT */ ) ], 32 /* NEED_HYDRATION */ )), [ [vue.vShow, $setup.activeIndex === index] ]); }), 128 /* KEYED_FRAGMENT */ )) ]); } const PagesHotHot = /* @__PURE__ */ _export_sfc(_sfc_main$L, [["render", _sfc_render$K], ["__file", "E:/demo/hmrabbit/src/pages/hot/hot.vue"]]); var vk; var goodsCache = {}; const _sfc_main$K = { name: "vk-data-goods-sku-popup", emits: [ "update:modelValue", "input", "update-goods", "open", "close", "add-cart", "buy-now", "cart", "buy", "num-change" ], props: { // true 组件显示 false 组件隐藏 value: { Type: Boolean, default: false }, modelValue: { Type: Boolean, default: false }, // vk云函数路由模式参数开始----------------------------------------------------------- // 商品id goodsId: { Type: String, default: "" }, // vk路由模式框架下的云函数地址 action: { Type: String, default: "" }, // vk云函数路由模式参数结束----------------------------------------------------------- // 该商品已抢完时的按钮文字 noStockText: { Type: String, default: "该商品已抢完" }, // 库存文字 stockText: { Type: String, default: "库存" }, // 商品表id的字段名 goodsIdName: { Type: String, default: "_id" }, // sku表id的字段名 skuIdName: { Type: String, default: "_id" }, // sku_list的字段名 skuListName: { Type: String, default: "sku_list" }, // spec_list的字段名 specListName: { Type: String, default: "spec_list" }, // 库存的字段名 默认 stock stockName: { Type: String, default: "stock" }, // sku组合路径的字段名 skuArrName: { Type: String, default: "sku_name_arr" }, // 默认单规格时的规格组名称 defaultSingleSkuName: { Type: String, default: "默认" }, // 模式 1:都显示 2:只显示购物车 3:只显示立即购买 4:显示缺货按钮 默认 1 mode: { Type: Number, default: 1 }, // 点击遮罩是否关闭组件 true 关闭 false 不关闭 默认true maskCloseAble: { Type: Boolean, default: true }, // 顶部圆角值 borderRadius: { Type: [String, Number], default: 0 }, // 商品缩略图字段名(未选择sku时) goodsThumbName: { Type: [String], default: "goods_thumb" }, // 商品缩略图背景颜色,如#999999 goodsThumbBackgroundColor: { Type: String, default: "transparent" }, // 最小购买数量 默认 1 minBuyNum: { Type: [Number, String], default: 1 }, // 最大购买数量 默认 100000 maxBuyNum: { Type: [Number, String], default: 1e5 }, // 步进器步长 默认 1 stepBuyNum: { Type: [Number, String], default: 1 }, // 是否只能输入 step 的倍数 stepStrictly: { Type: Boolean, default: false }, // 自定义获取商品信息的函数,支付宝小程序不支持该属性,请使用localdata属性 customAction: { Type: [Function], default: null }, // 本地数据源 localdata: { type: Object }, // 价格的字体颜色 priceColor: { Type: String }, // 立即购买按钮的文字 buyNowText: { Type: String, default: "立即购买" }, // 立即购买按钮的字体颜色 buyNowColor: { Type: String }, // 立即购买按钮的背景颜色 buyNowBackgroundColor: { Type: String }, // 加入购物车按钮的文字 addCartText: { Type: String, default: "加入购物车" }, // 加入购物车按钮的字体颜色 addCartColor: { Type: String }, // 加入购物车按钮的背景颜色 addCartBackgroundColor: { Type: String }, // 不可点击时,按钮的样式 disableStyle: { Type: Object, default: null }, // 按钮点击时的样式 activedStyle: { Type: Object, default: null }, // 按钮常态的样式 btnStyle: { Type: Object, default: null }, // 是否显示右上角关闭按钮 showClose: { Type: Boolean, default: true }, // 关闭按钮的图片地址 https://img.alicdn.com/imgextra/i1/121022687/O1CN01ImN0O11VigqwzpLiK_!!121022687.png closeImage: { Type: String, default: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAqCAYAAADFw8lbAAAEyUlEQVR42sSZeWwNURTGp4OqtBo7sSXELragdkpQsRRJ1Zr4hyJiJ9YgxNIg1qANiT+E1i5IY0kVVWtQEbuEKLFGUSH27/ANN5PXmTvzupzkl/tm8t6b7517lnvvC0lKSjJ8WmnQAUSDFqABqALKgl8gD7wE90E2SAeXwFf1SxISErQeVtKHwCgwFsSDSIf3hYFKoCkYDBaDdyAViHdueHmoF6FtwDLQ23b/E7gM7oIcejIERIDaoBFoC8qA8mA8SQNz6W1XC9GY+nCQCCYAk/c+gF0gBZwH312+IxR0BCPBUIaH2A+wHsxHCHxx+gLT5QGN6a2JfG8uvVCDws9oiDQYlxkMGfHyQvARlADTwcXk5OT6foV2kS8ATXidymlcyen1a/Jjl9IJh3hPkjELYqO8Cu0KjjNZvtETw5jFBWXPmGSTGQKSeOn5iQ0kVLL0CINfPNcPbDMKyRCbGzEMBJ+ZD8cChYFdqGTqfsWT8otPGoVsEHsMwxDFs3shNsxJ6BrQ0Po8OGUUkVHsNCVml+cntB1jUWwn2GEUsTEMrASbDK+2CCQ0kYX6nfLLisMmKqUr0S60M+jG10vAm+JSCa8+x7CKlzHwaktV6DiObzUzPJIxFO1BQ12wGtTReO9GetVgY/kjNJzZbcWmTjHfxw51AsRqvL8eOAtmsJuFu3g1l+1ZLB5eDTVZ3K0P7tL0TkWOpSg61kVkBtuuNRthGs+wtJST5aQI7cEbkkRXNYVKgX6kIdYuUhYzMQwxN8tiExCLFqHNeSF9/aem0BzGp5PYQCJ7c/Gsk1RfuSD6U1dNpcDf9ZigTmKbMRZ9iVTsHscGJluW2FMf1SSQWGnBmaB6kCJVTVVNJZE++Cx9drEllS1KMCINpURFmEbBWA63Fz9s95cGIdJgp/zXmT4pZcOvSUzuZttTbblmnc3PIjjmidDXvKgdhMh0JdbzuCjWrbNOVovjS5P7bkPJ/mBESkz2BO0166ybNeJ431S2q+01NntuIq3E0amzjiZtk9tssWyTDzO4525bACK9NAUn68TtkNhpEXpOSagRml+S6iLSSeweHv242Qhl13rRyvoDvDlKyTQny/ZQJ+1iH7vVbEx7OR5UiKVIO7VicgvHCtwrudloMIV7/0uadVYW57O4Wvvi8v4pymlKkrpwvsDeLLZAY2pkwbAB3PSQfC+4cH7l4k1ZH8zkZRq8ecO+Z5rN40JJqnXFuGfaxPCTLjcn0OZOpnArXw8HY4paIbw5CcMgXq6HN2/mt6+XGLrN15tBryIUGavMpCTrfKcDCKkAceA9S8nhAOehhSUyhXpkBxxnP4YM1InugP7cBkjBPcqVUWFYCEROxXiQz5JlXV+IfKh7mpfJac+lZ6V87QXVClBkTc7YWsWTPSDyitfzUTlJlj8TbvE6jluDOdwZ+jX57GLO3ADeuyZrDYi86vV81FD2UVGsmT+5Zl0BnkhoseOEaogL46pqO4v/IqUEyalIR4h85BgjHv6+aUWRMbb7EstX6O0cpT1Gco0ry8fWygLDMjmDnQeBt3Qe7uVfkeugDwVLcsVzGsuwLXbV+I63XNAkG5r/hvgRqgqWs6pJPKrsbvz/Q6yyun0w/h6lP+BnzrCpfPMT2L8FGAA7k1GZ/vnaqAAAAABJRU5ErkJggg==" }, // 是否隐藏库存显示 hideStock: { Type: Boolean, default: false }, // 颜色主题 theme: { Type: String, default: "default" }, // 请求中的提示 actionTips: { Type: String, default: "请求中..." }, // 默认选中的SKU defaultSelect: { Type: Object }, // 是否使用缓存 useCache: { Type: Boolean, default: true }, /** * 默认商品,设置该值可快速展示商品 * 逻辑: 先展示 defaultGoods 信息,再取数据库,再更新页面(通常为更新库存) */ defaultGoods: { Type: Object }, /** * 金额是否需要除以100 * 1:金额会除以100 * 0:金额不会除以100 */ amountType: { Type: Number, default: 1 }, // 每次选择完SKU后,购买数量归1,如果有最小购买数量,则设置为最小购买数量 selectedInit: { Type: Boolean, default: false }, // 是否开启底部安全区适配,默认true safeAreaInsetBottom: { Type: Boolean, default: true } }, data() { return { safeBottom: 0, // 留出底部安全距离 complete: false, // 组件是否加载完成 goodsInfo: {}, // 商品信息 isShow: false, // true 显示 false 隐藏 initKey: true, // 是否需要初始化 true 是 false 否 shopItemInfo: {}, // 存放要和选中的值进行匹配的数据(因百度小程序setData不支持中文字段,故不编译shopItemInfo变量) selectArr: [], // 存放被选中的值 subIndex: [], // 是否选中 因为不确定是多规格还是单规格,所以这里定义数组来判断 selectShop: {}, // 存放最后选中的商品 selectNum: this.minBuyNum || 1, // 选中数量 outFoStock: false, // 是否全部sku都缺货 openTime: 0, themeColor: { // 默认主题 default: { priceColor: "rgb(254, 86, 10)", buyNowColor: "#ffffff", buyNowBackgroundColor: "rgb(254, 86, 10)", addCartColor: "#ffffff", addCartBackgroundColor: "rgb(255, 148, 2)", btnStyle: { color: "#333333", borderColor: "#f4f4f4", backgroundColor: "#ffffff" }, activedStyle: { color: "rgb(254, 86, 10)", borderColor: "rgb(254, 86, 10)", backgroundColor: "rgba(254,86,10,0.1)" }, disableStyle: { color: "#c3c3c3", borderColor: "#f6f6f6", backgroundColor: "#f6f6f6" } }, // 红黑主题 "red-black": { priceColor: "rgb(255, 68, 68)", buyNowColor: "#ffffff", buyNowBackgroundColor: "rgb(255, 68, 68)", addCartColor: "#ffffff", addCartBackgroundColor: "rgb(85, 85, 85)", activedStyle: { color: "rgb(255, 68, 68)", borderColor: "rgb(255, 68, 68)", backgroundColor: "rgba(255,68,68,0.1)" } }, // 黑白主题 "black-white": { priceColor: "rgb(47, 47, 52)", buyNowColor: "#ffffff", buyNowBackgroundColor: "rgb(47, 47, 52)", addCartColor: "rgb(47, 47, 52)", addCartBackgroundColor: "rgb(235, 236, 242)", // btnStyle:{ // color:"rgb(47, 47, 52)", // borderColor:"rgba(235,236,242,0.5)", // backgroundColor:"rgba(235,236,242,0.5)", // }, activedStyle: { color: "rgb(47, 47, 52)", borderColor: "rgba(47,47,52,0.12)", backgroundColor: "rgba(47,47,52,0.12)" } }, // 咖啡色主题 coffee: { priceColor: "rgb(195, 167, 105)", buyNowColor: "#ffffff", buyNowBackgroundColor: "rgb(195, 167, 105)", addCartColor: "rgb(195, 167, 105)", addCartBackgroundColor: "rgb(243, 238, 225)", activedStyle: { color: "rgb(195, 167, 105)", borderColor: "rgb(195, 167, 105)", backgroundColor: "rgba(195, 167, 105,0.1)" } }, // 浅绿色主题 green: { priceColor: "rgb(99, 190, 114)", buyNowColor: "#ffffff", buyNowBackgroundColor: "rgb(99, 190, 114)", addCartColor: "rgb(99, 190, 114)", addCartBackgroundColor: "rgb(225, 244, 227)", activedStyle: { color: "rgb(99, 190, 114)", borderColor: "rgb(99, 190, 114)", backgroundColor: "rgba(99, 190, 114,0.1)" } } } }; }, created() { let that = this; vk = that.vk; if (that.valueCom) { that.open(); } const { safeAreaInsets } = uni.getSystemInfoSync(); that.safeBottom = safeAreaInsets.bottom; }, mounted() { }, methods: { // 初始化 init(notAutoClick) { let that = this; that.selectArr = []; that.subIndex = []; that.selectShop = {}; that.selectNum = that.minBuyNum || 1; that.outFoStock = false; that.shopItemInfo = {}; let specListName = that.specListName; that.goodsInfo[specListName].map((item) => { that.selectArr.push(""); that.subIndex.push(-1); }); that.checkItem(); that.checkInpath(-1); if (!notAutoClick) that.autoClickSku(); }, // 使用vk路由模式框架获取商品信息 findGoodsInfo(obj = {}) { let that = this; let { useCache } = obj; if (typeof vk == "undefined") { that.toast("custom-action必须是function", "none"); return false; } let { actionTips } = that; let actionTitle = ""; let actionAoading = false; if (actionTips !== "custom") { actionTitle = useCache ? "" : "请求中..."; } else { actionAoading = useCache ? false : true; } vk.callFunction({ url: that.action, title: actionTitle, loading: actionAoading, data: { goods_id: that.goodsId }, success(data) { that.updateGoodsInfo(data.goodsInfo); goodsCache[that.goodsId] = data.goodsInfo; that.$emit("update-goods", data.goodsInfo); }, fail() { that.updateValue(false); } }); }, updateValue(value) { let that = this; if (value) { that.$emit("open", true); that.$emit("input", true); that.$emit("update:modelValue", true); } else { that.$emit("input", false); that.$emit("close", "close"); that.$emit("update:modelValue", false); } }, // 更新商品信息(库存、名称、图片) updateGoodsInfo(goodsInfo) { let that = this; let { skuListName } = that; if (JSON.stringify(that.goodsInfo) === "{}" || that.goodsInfo[that.goodsIdName] !== goodsInfo[that.goodsIdName]) { that.goodsInfo = goodsInfo; that.initKey = true; } else { that.goodsInfo[skuListName] = goodsInfo[skuListName]; } if (that.initKey) { that.initKey = false; that.init(); } let select_sku_info = that.getListItem( that.goodsInfo[skuListName], that.skuIdName, that.selectShop[that.skuIdName] ); Object.assign(that.selectShop, select_sku_info); that.defaultSelectSku(); that.complete = true; }, async open() { let that = this; that.openTime = (/* @__PURE__ */ new Date()).getTime(); let findGoodsInfoRun = true; that.skuListName; let useCache = false; let goodsInfo = goodsCache[that.goodsId]; if (goodsInfo && that.useCache) { useCache = true; that.updateGoodsInfo(goodsInfo); } else { that.complete = false; } if (that.customAction && typeof that.customAction === "function") { try { goodsInfo = await that.customAction({ useCache, goodsId: that.goodsId, goodsInfo, close: function() { setTimeout(function() { that.close(); }, 500); } }).catch((err) => { setTimeout(function() { that.close(); }, 500); }); } catch (err) { let { message = "" } = err; if (message.indexOf(".catch is not a function") > -1) { that.toast("custom-action必须返回一个Promise", "none"); setTimeout(function() { that.close(); }, 500); return false; } } goodsCache[that.goodsId] = goodsInfo; if (goodsInfo && typeof goodsInfo == "object" && JSON.stringify(goodsInfo) != "{}") { findGoodsInfoRun = false; that.updateGoodsInfo(goodsInfo); that.updateValue(true); } else { that.toast("未获取到商品信息", "none"); that.$emit("input", false); return false; } } else if (typeof that.localdata !== "undefined" && that.localdata !== null) { goodsInfo = that.localdata; if (goodsInfo && typeof goodsInfo == "object" && JSON.stringify(goodsInfo) != "{}") { findGoodsInfoRun = false; that.updateGoodsInfo(goodsInfo); that.updateValue(true); } else { that.toast("未获取到商品信息", "none"); that.$emit("input", false); return false; } } else { if (findGoodsInfoRun) that.findGoodsInfo({ useCache }); } }, // 监听 - 弹出层收起 close(s2) { let that = this; if ((/* @__PURE__ */ new Date()).getTime() - that.openTime < 400) { return false; } if (s2 == "mask") { if (that.maskCloseAble !== false) { that.$emit("input", false); that.$emit("close", "mask"); that.$emit("update:modelValue", false); } } else { that.$emit("input", false); that.$emit("close", "close"); that.$emit("update:modelValue", false); } }, moveHandle() { }, // sku按钮的点击事件 skuClick(value, index1, index2) { let that = this; if (value.ishow) { if (that.selectArr[index1] != value.name) { that.$set(that.selectArr, index1, value.name); that.$set(that.subIndex, index1, index2); } else { that.$set(that.selectArr, index1, ""); that.$set(that.subIndex, index1, -1); } that.checkInpath(index1); that.checkSelectShop(); } }, // 检测是否已经选完sku checkSelectShop() { let that = this; if (that.selectArr.every((item) => item != "")) { that.selectShop = that.shopItemInfo[that.getArrayToSting(that.selectArr)]; let stock = that.selectShop[that.stockName]; if (typeof stock !== "undefined" && that.selectNum > stock) { that.selectNum = stock; } if (that.selectNum > that.maxBuyNum) { that.selectNum = that.maxBuyNum; } if (that.selectNum < that.minBuyNum) { that.selectNum = that.minBuyNum; } if (that.selectedInit) { that.selectNum = that.minBuyNum || 1; } } else { that.selectShop = {}; } }, // 检查路径 checkInpath(clickIndex) { let that = this; let specListName = that.specListName; let specList = that.goodsInfo[specListName]; for (let i2 = 0, len = specList.length; i2 < len; i2++) { if (i2 == clickIndex) { continue; } let len2 = specList[i2].list.length; for (let j2 = 0; j2 < len2; j2++) { if (that.subIndex[i2] != -1 && j2 == that.subIndex[i2]) { continue; } let choosed_copy = [...that.selectArr]; that.$set(choosed_copy, i2, specList[i2].list[j2].name); let choosed_copy2 = choosed_copy.filter( (item) => item !== "" && typeof item !== "undefined" ); if (that.shopItemInfo.hasOwnProperty(that.getArrayToSting(choosed_copy2))) { specList[i2].list[j2].ishow = true; } else { specList[i2].list[j2].ishow = false; } } } that.$set(that.goodsInfo, specListName, specList); }, // 计算sku里面规格形成路径 checkItem() { let that = this; let { stockName } = that; let skuListName = that.skuListName; let originalSkuList = that.goodsInfo[skuListName]; let skuList = []; let stockNum = 0; originalSkuList.map((skuItem, index) => { if (skuItem[stockName] > 0) { skuList.push(skuItem); stockNum += skuItem[stockName]; } }); if (stockNum <= 0) { that.outFoStock = true; } skuList.reduce( (arrs, items) => { return arrs.concat( items[that.skuArrName].reduce( (arr, item) => { return arr.concat( arr.map((item2) => { if (!that.shopItemInfo.hasOwnProperty(that.getArrayToSting([...item2, item]))) { that.shopItemInfo[that.getArrayToSting([...item2, item])] = items; } return [...item2, item]; }) ); }, [[]] ) ); }, [[]] ); }, getArrayToSting(arr) { let str = ""; arr.map((item, index) => { item = item.replace(/\./g, "。"); if (index == 0) { str += item; } else { str += "," + item; } }); return str; }, // 检测sku选项是否已全部选完,且有库存 checkSelectComplete(obj = {}) { let that = this; let clickTime = (/* @__PURE__ */ new Date()).getTime(); if (that.clickTime && clickTime - that.clickTime < 400) { return false; } that.clickTime = clickTime; let { selectShop, selectNum, stockText, stockName } = that; if (!selectShop || !selectShop[that.skuIdName]) { that.toast("请先选择对应规格", "none"); return false; } if (selectNum <= 0) { that.toast("购买数量必须>0", "none"); return false; } if (selectNum > selectShop[stockName]) { that.toast(stockText + "不足", "none"); return false; } if (typeof obj.success == "function") obj.success(selectShop); }, // 加入购物车 addCart() { let that = this; that.checkSelectComplete({ success: function(selectShop) { selectShop.buy_num = that.selectNum; that.$emit("add-cart", selectShop); that.$emit("cart", selectShop); } }); }, // 立即购买 buyNow() { let that = this; that.checkSelectComplete({ success: function(selectShop) { selectShop.buy_num = that.selectNum; that.$emit("buy-now", selectShop); that.$emit("buy", selectShop); } }); }, // 弹窗 toast(title, icon) { uni.showToast({ title, icon }); }, // 获取对象数组中的某一个item,根据指定的键值 getListItem(list, key, value) { let item; for (let i2 in list) { if (typeof value == "object") { if (JSON.stringify(list[i2][key]) === JSON.stringify(value)) { item = list[i2]; break; } } else { if (list[i2][key] === value) { item = list[i2]; break; } } } return item; }, getListIndex(list, key, value) { let index = -1; for (let i2 = 0; i2 < list.length; i2++) { if (list[i2][key] === value) { index = i2; break; } } return index; }, // 自动选择sku前提是只有一组sku,默认自动选择最前面的有库存的sku autoClickSku() { let that = this; let { stockName } = that; let skuList = that.goodsInfo[that.skuListName]; let specListArr = that.goodsInfo[that.specListName]; if (specListArr.length == 1) { let specList = specListArr[0].list; for (let i2 = 0; i2 < specList.length; i2++) { let sku = that.getListItem(skuList, that.skuArrName, [specList[i2].name]); if (sku && sku[stockName] > 0) { that.skuClick(specList[i2], 0, i2); break; } } } }, // 主题颜色 themeColorFn(name) { let that = this; let { theme, themeColor } = that; let color = that[name] ? that[name] : themeColor[theme][name]; return color; }, defaultSelectSku() { let that = this; let { defaultSelect } = that; if (defaultSelect && defaultSelect.sku && defaultSelect.sku.length > 0) { that.selectSku(defaultSelect); } }, /** * 主动方法 - 设置sku that.$refs.skuPopup.selectSku({ sku:["红色","256G","公开版"], num:5 }); */ selectSku(obj = {}) { let that = this; let { sku: skuArr, num: selectNum } = obj; let specListArr = that.goodsInfo[that.specListName]; if (skuArr && specListArr.length === skuArr.length) { let skuClickArr = []; let clickKey = true; for (let index = 0; index < skuArr.length; index++) { let skuName = skuArr[index]; let specList = specListArr[index].list; let index1 = index; let index2 = that.getListIndex(specList, "name", skuName); if (index2 == -1) { clickKey = false; break; } skuClickArr.push({ spec: specList[index2], index1, index2 }); } if (clickKey) { that.init(true); skuClickArr.map((item) => { that.skuClick(item.spec, item.index1, item.index2); }); } } if (selectNum > 0) that.selectNum = selectNum; }, priceFilter(n2 = 0) { let that = this; if (typeof n2 == "string") { n2 = parseFloat(n2); } if (that.amountType === 0) { return n2.toFixed(2); } else { return (n2 / 100).toFixed(2); } }, pushGoodsCache(goodsInfo) { let that = this; let { goodsIdName } = that; goodsCache[goodsInfo[goodsIdName]] = goodsInfo; }, // 用于阻止冒泡 stop() { }, // 图片预览 previewImage() { let that = this; let { selectShop, goodsInfo, goodsThumbName } = that; let src = selectShop.image ? selectShop.image : goodsInfo[goodsThumbName]; if (src) { uni.previewImage({ urls: [src] }); } }, getMaxStock() { let maxStock = 0; let that = this; let { selectShop = {}, goodsInfo = {}, skuListName, stockName } = that; if (selectShop[stockName]) { maxStock = selectShop[stockName]; } else { let skuList = goodsInfo[skuListName]; if (skuList && skuList.length > 0) { let valueArr = []; skuList.map((skuItem, index) => { valueArr.push(skuItem[stockName]); }); let max = Math.max(...valueArr); maxStock = max; } } return maxStock; }, numChange(e2) { this.$emit("num-change", e2.value); } }, // 计算属性 computed: { valueCom() { return this.modelValue; }, // 最大购买数量 maxBuyNumCom() { let that = this; let maxStock = that.getMaxStock(); let max = that.maxBuyNum || 1e5; if (max > maxStock) { max = maxStock; } return max; }, // 是否是多规格 isManyCom() { let that = this; let { goodsInfo, defaultSingleSkuName, specListName } = that; let isMany = true; if (goodsInfo[specListName] && goodsInfo[specListName].length === 1 && goodsInfo[specListName][0].list.length === 1 && goodsInfo[specListName][0].name === defaultSingleSkuName) { isMany = false; } return isMany; }, // 默认价格区间计算 priceCom() { let str = ""; let that = this; let { selectShop = {}, goodsInfo = {}, skuListName, skuIdName } = that; if (selectShop[skuIdName]) { str = that.priceFilter(selectShop.price); } else { let skuList = goodsInfo[skuListName]; if (skuList && skuList.length > 0) { let valueArr = []; skuList.map((skuItem, index) => { valueArr.push(skuItem.price); }); let min = that.priceFilter(Math.min(...valueArr)); let max = that.priceFilter(Math.max(...valueArr)); if (min === max) { str = min + ""; } else { str = `${min} - ${max}`; } } } return str; }, // 库存显示 stockCom() { let str = ""; let that = this; let { selectShop = {}, goodsInfo = {}, skuListName, stockName } = that; if (selectShop[stockName]) { str = selectShop[stockName]; } else { let skuList = goodsInfo[skuListName]; if (skuList && skuList.length > 0) { let valueArr = []; skuList.map((skuItem, index) => { valueArr.push(skuItem[stockName]); }); let min = Math.min(...valueArr); let max = Math.max(...valueArr); if (min === max) { str = min; } else { str = `${min} - ${max}`; } } } return str; } }, watch: { valueCom(newVal, oldValue) { let that = this; if (newVal) { that.open(); } }, defaultGoods: { immediate: true, handler: function(newVal, oldValue) { let that = this; let { goodsIdName } = that; if (typeof newVal === "object" && newVal && newVal[goodsIdName] && !goodsCache[newVal[goodsIdName]]) { that.pushGoodsCache(newVal); } } } } }; function _sfc_render$J(_ctx, _cache, $props, $setup, $data, $options) { const _component_vk_data_input_number_box = resolveEasycom(vue.resolveDynamicComponent("vk-data-input-number-box"), __easycom_0$b); return vue.openBlock(), vue.createElementBlock( "view", { class: vue.normalizeClass(["vk-data-goods-sku-popup", $options.valueCom && $data.complete ? "show" : "none"]), catchtouchmove: "true", onTouchmove: _cache[8] || (_cache[8] = vue.withModifiers((...args) => $options.moveHandle && $options.moveHandle(...args), ["stop", "prevent"])), onClick: _cache[9] || (_cache[9] = vue.withModifiers((...args) => $options.stop && $options.stop(...args), ["stop"])) }, [ vue.createCommentVNode(" 页面内容开始 "), vue.createElementVNode("view", { class: "mask", onClick: _cache[0] || (_cache[0] = ($event) => $options.close("mask")) }), vue.createElementVNode( "view", { class: vue.normalizeClass(["layer attr-content", { "safe-area-inset-bottom": $props.safeAreaInsetBottom }]), style: vue.normalizeStyle({ borderRadius: $props.borderRadius + "rpx " + $props.borderRadius + "rpx 0 0", paddingBottom: $data.safeBottom + "px" }) }, [ vue.createElementVNode("view", { class: "specification-wrapper" }, [ vue.createElementVNode("scroll-view", { class: "specification-wrapper-content", "scroll-y": "true" }, [ vue.createElementVNode("view", { class: "specification-header" }, [ vue.createElementVNode("view", { class: "specification-left" }, [ vue.createElementVNode("image", { class: "product-img", src: $data.selectShop.image ? $data.selectShop.image : $data.goodsInfo[$props.goodsThumbName], style: vue.normalizeStyle({ backgroundColor: $props.goodsThumbBackgroundColor }), mode: "aspectFill", onClick: _cache[1] || (_cache[1] = (...args) => $options.previewImage && $options.previewImage(...args)) }, null, 12, ["src"]) ]), vue.createElementVNode("view", { class: "specification-right" }, [ vue.createElementVNode( "view", { class: "price-content", style: vue.normalizeStyle({ color: $options.themeColorFn("priceColor") }) }, [ vue.createElementVNode("text", { class: "sign" }, "¥"), vue.createElementVNode( "text", { class: vue.normalizeClass(["price", $options.priceCom.length > 16 ? "price2" : ""]) }, vue.toDisplayString($options.priceCom), 3 /* TEXT, CLASS */ ) ], 4 /* STYLE */ ), !$props.hideStock ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "inventory" }, vue.toDisplayString($props.stockText) + ":" + vue.toDisplayString($options.stockCom), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "inventory" })), vue.withDirectives(vue.createElementVNode( "view", { class: "choose" }, "已选:" + vue.toDisplayString($data.selectArr.join(" ")), 513 /* TEXT, NEED_PATCH */ ), [ [vue.vShow, $options.isManyCom] ]) ]) ]), vue.createElementVNode("view", { class: "specification-content" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($data.goodsInfo[$props.specListName], (item, index1) => { return vue.withDirectives((vue.openBlock(), vue.createElementBlock("view", { class: "specification-item", key: index1 }, [ vue.createElementVNode( "view", { class: "item-title" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "item-wrapper" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.list, (item_value, index2) => { return vue.openBlock(), vue.createElementBlock("view", { class: vue.normalizeClass(["item-content", [ item_value.ishow ? "" : "noactived", $data.subIndex[index1] == index2 ? "actived" : "" ]]), key: index2, style: vue.normalizeStyle([ item_value.ishow ? "" : $options.themeColorFn("disableStyle"), item_value.ishow ? $options.themeColorFn("btnStyle") : "", $data.subIndex[index1] == index2 ? $options.themeColorFn("activedStyle") : "" ]), onClick: ($event) => $options.skuClick(item_value, index1, index2) }, vue.toDisplayString(item_value.name), 15, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ])), [ [vue.vShow, $options.isManyCom] ]); }), 128 /* KEYED_FRAGMENT */ )), vue.createElementVNode("view", { class: "number-box-view" }, [ vue.createElementVNode("view", { style: { "flex": "1" } }, "数量"), vue.createElementVNode("view", { style: { "flex": "4", "text-align": "right" } }, [ vue.createVNode(_component_vk_data_input_number_box, { modelValue: $data.selectNum, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $data.selectNum = $event), min: $props.minBuyNum || 1, max: $options.maxBuyNumCom, step: $props.stepBuyNum || 1, "step-strictly": $props.stepStrictly, "positive-integer": true, onChange: $options.numChange }, null, 8, ["modelValue", "min", "max", "step", "step-strictly", "onChange"]) ]) ]) ]) ]), $props.showClose != false ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "close", onClick: _cache[3] || (_cache[3] = ($event) => $options.close("close")) }, [ vue.createElementVNode("image", { class: "close-item", src: $props.closeImage }, null, 8, ["src"]) ])) : vue.createCommentVNode("v-if", true) ]), $data.outFoStock || $props.mode == 4 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "btn-wrapper" }, [ vue.createElementVNode( "view", { class: "sure", style: { "color": "#ffffff", "background-color": "#cccccc" } }, vue.toDisplayString($props.noStockText), 1 /* TEXT */ ) ])) : $props.mode == 1 ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "btn-wrapper" }, [ vue.createElementVNode( "view", { class: "sure add-cart", style: vue.normalizeStyle([{ "border-radius": "38rpx 0rpx 0rpx 38rpx" }, { color: $options.themeColorFn("addCartColor"), backgroundColor: $options.themeColorFn("addCartBackgroundColor") }]), onClick: _cache[4] || (_cache[4] = (...args) => $options.addCart && $options.addCart(...args)) }, vue.toDisplayString($props.addCartText), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "view", { class: "sure", style: vue.normalizeStyle([{ "border-radius": "0rpx 38rpx 38rpx 0rpx" }, { color: $options.themeColorFn("buyNowColor"), backgroundColor: $options.themeColorFn("buyNowBackgroundColor") }]), onClick: _cache[5] || (_cache[5] = (...args) => $options.buyNow && $options.buyNow(...args)) }, vue.toDisplayString($props.buyNowText), 5 /* TEXT, STYLE */ ) ])) : $props.mode == 2 ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "btn-wrapper" }, [ vue.createElementVNode( "view", { class: "sure add-cart", style: vue.normalizeStyle({ color: $options.themeColorFn("addCartColor"), backgroundColor: $options.themeColorFn("addCartBackgroundColor") }), onClick: _cache[6] || (_cache[6] = (...args) => $options.addCart && $options.addCart(...args)) }, vue.toDisplayString($props.addCartText), 5 /* TEXT, STYLE */ ) ])) : $props.mode == 3 ? (vue.openBlock(), vue.createElementBlock("view", { key: 3, class: "btn-wrapper" }, [ vue.createElementVNode( "view", { class: "sure", style: vue.normalizeStyle({ color: $options.themeColorFn("buyNowColor"), backgroundColor: $options.themeColorFn("buyNowBackgroundColor") }), onClick: _cache[7] || (_cache[7] = (...args) => $options.buyNow && $options.buyNow(...args)) }, vue.toDisplayString($props.buyNowText), 5 /* TEXT, STYLE */ ) ])) : vue.createCommentVNode("v-if", true) ], 6 /* CLASS, STYLE */ ), vue.createCommentVNode(" 页面内容结束 ") ], 34 /* CLASS, NEED_HYDRATION */ ); } const __easycom_0$6 = /* @__PURE__ */ _export_sfc(_sfc_main$K, [["render", _sfc_render$J], ["__scopeId", "data-v-d1e15e37"], ["__file", "E:/demo/hmrabbit/src/components/vk-data-goods-sku-popup/vk-data-goods-sku-popup.vue"]]); class MPAnimation { constructor(options, _this) { this.options = options; this.animation = uni.createAnimation(options); this.currentStepAnimates = {}; this.next = 0; this.$ = _this; } _nvuePushAnimates(type, args) { let aniObj = this.currentStepAnimates[this.next]; let styles = {}; if (!aniObj) { styles = { styles: {}, config: {} }; } else { styles = aniObj; } if (animateTypes1.includes(type)) { if (!styles.styles.transform) { styles.styles.transform = ""; } let unit = ""; if (type === "rotate") { unit = "deg"; } styles.styles.transform += `${type}(${args + unit}) `; } else { styles.styles[type] = `${args}`; } this.currentStepAnimates[this.next] = styles; } _animateRun(styles = {}, config = {}) { let ref = this.$.$refs["ani"].ref; if (!ref) return; return new Promise((resolve, reject) => { nvueAnimation.transition(ref, { styles, ...config }, (res) => { resolve(); }); }); } _nvueNextAnimate(animates, step = 0, fn) { let obj = animates[step]; if (obj) { let { styles, config } = obj; this._animateRun(styles, config).then(() => { step += 1; this._nvueNextAnimate(animates, step, fn); }); } else { this.currentStepAnimates = {}; typeof fn === "function" && fn(); this.isEnd = true; } } step(config = {}) { this.animation.step(config); return this; } run(fn) { this.$.animationData = this.animation.export(); this.$.timer = setTimeout(() => { typeof fn === "function" && fn(); }, this.$.durationTime); } } const animateTypes1 = [ "matrix", "matrix3d", "rotate", "rotate3d", "rotateX", "rotateY", "rotateZ", "scale", "scale3d", "scaleX", "scaleY", "scaleZ", "skew", "skewX", "skewY", "translate", "translate3d", "translateX", "translateY", "translateZ" ]; const animateTypes2 = ["opacity", "backgroundColor"]; const animateTypes3 = ["width", "height", "left", "right", "top", "bottom"]; animateTypes1.concat(animateTypes2, animateTypes3).forEach((type) => { MPAnimation.prototype[type] = function(...args) { this.animation[type](...args); return this; }; }); function createAnimation(option, _this) { if (!_this) return; clearTimeout(_this.timer); return new MPAnimation(option, _this); } const _sfc_main$J = { name: "uniTransition", emits: ["click", "change"], props: { show: { type: Boolean, default: false }, modeClass: { type: [Array, String], default() { return "fade"; } }, duration: { type: Number, default: 300 }, styles: { type: Object, default() { return {}; } }, customClass: { type: String, default: "" }, onceRender: { type: Boolean, default: false } }, data() { return { isShow: false, transform: "", opacity: 1, animationData: {}, durationTime: 300, config: {} }; }, watch: { show: { handler(newVal) { if (newVal) { this.open(); } else { if (this.isShow) { this.close(); } } }, immediate: true } }, computed: { // 生成样式数据 stylesObject() { let styles = { ...this.styles, "transition-duration": this.duration / 1e3 + "s" }; let transform = ""; for (let i2 in styles) { let line = this.toLine(i2); transform += line + ":" + styles[i2] + ";"; } return transform; }, // 初始化动画条件 transformStyles() { return "transform:" + this.transform + ";opacity:" + this.opacity + ";" + this.stylesObject; } }, created() { this.config = { duration: this.duration, timingFunction: "ease", transformOrigin: "50% 50%", delay: 0 }; this.durationTime = this.duration; }, methods: { /** * ref 触发 初始化动画 */ init(obj = {}) { if (obj.duration) { this.durationTime = obj.duration; } this.animation = createAnimation(Object.assign(this.config, obj), this); }, /** * 点击组件触发回调 */ onClick() { this.$emit("click", { detail: this.isShow }); }, /** * ref 触发 动画分组 * @param {Object} obj */ step(obj, config = {}) { if (!this.animation) return; for (let i2 in obj) { try { if (typeof obj[i2] === "object") { this.animation[i2](...obj[i2]); } else { this.animation[i2](obj[i2]); } } catch (e2) { console.error(`方法 ${i2} 不存在`); } } this.animation.step(config); return this; }, /** * ref 触发 执行动画 */ run(fn) { if (!this.animation) return; this.animation.run(fn); }, // 开始过度动画 open() { clearTimeout(this.timer); this.transform = ""; this.isShow = true; let { opacity, transform } = this.styleInit(false); if (typeof opacity !== "undefined") { this.opacity = opacity; } this.transform = transform; this.$nextTick(() => { this.timer = setTimeout(() => { this.animation = createAnimation(this.config, this); this.tranfromInit(false).step(); this.animation.run(); this.$emit("change", { detail: this.isShow }); }, 20); }); }, // 关闭过度动画 close(type) { if (!this.animation) return; this.tranfromInit(true).step().run(() => { this.isShow = false; this.animationData = null; this.animation = null; let { opacity, transform } = this.styleInit(false); this.opacity = opacity || 1; this.transform = transform; this.$emit("change", { detail: this.isShow }); }); }, // 处理动画开始前的默认样式 styleInit(type) { let styles = { transform: "" }; let buildStyle = (type2, mode) => { if (mode === "fade") { styles.opacity = this.animationType(type2)[mode]; } else { styles.transform += this.animationType(type2)[mode] + " "; } }; if (typeof this.modeClass === "string") { buildStyle(type, this.modeClass); } else { this.modeClass.forEach((mode) => { buildStyle(type, mode); }); } return styles; }, // 处理内置组合动画 tranfromInit(type) { let buildTranfrom = (type2, mode) => { let aniNum = null; if (mode === "fade") { aniNum = type2 ? 0 : 1; } else { aniNum = type2 ? "-100%" : "0"; if (mode === "zoom-in") { aniNum = type2 ? 0.8 : 1; } if (mode === "zoom-out") { aniNum = type2 ? 1.2 : 1; } if (mode === "slide-right") { aniNum = type2 ? "100%" : "0"; } if (mode === "slide-bottom") { aniNum = type2 ? "100%" : "0"; } } this.animation[this.animationMode()[mode]](aniNum); }; if (typeof this.modeClass === "string") { buildTranfrom(type, this.modeClass); } else { this.modeClass.forEach((mode) => { buildTranfrom(type, mode); }); } return this.animation; }, animationType(type) { return { fade: type ? 1 : 0, "slide-top": `translateY(${type ? "0" : "-100%"})`, "slide-right": `translateX(${type ? "0" : "100%"})`, "slide-bottom": `translateY(${type ? "0" : "100%"})`, "slide-left": `translateX(${type ? "0" : "-100%"})`, "zoom-in": `scaleX(${type ? 1 : 0.8}) scaleY(${type ? 1 : 0.8})`, "zoom-out": `scaleX(${type ? 1 : 1.2}) scaleY(${type ? 1 : 1.2})` }; }, // 内置动画类型与实际动画对应字典 animationMode() { return { fade: "opacity", "slide-top": "translateY", "slide-right": "translateX", "slide-bottom": "translateY", "slide-left": "translateX", "zoom-in": "scale", "zoom-out": "scale" }; }, // 驼峰转中横线 toLine(name) { return name.replace(/([A-Z])/g, "-$1").toLowerCase(); } } }; function _sfc_render$I(_ctx, _cache, $props, $setup, $data, $options) { return $data.isShow || $props.onceRender ? vue.withDirectives((vue.openBlock(), vue.createElementBlock("view", { key: 0, ref: "ani", animation: $data.animationData, class: vue.normalizeClass($props.customClass), style: vue.normalizeStyle($options.transformStyles), onClick: _cache[0] || (_cache[0] = (...args) => $options.onClick && $options.onClick(...args)) }, [ vue.renderSlot(_ctx.$slots, "default") ], 14, ["animation"])), [ [vue.vShow, $data.isShow] ]) : vue.createCommentVNode("v-if", true); } const __easycom_0$5 = /* @__PURE__ */ _export_sfc(_sfc_main$J, [["render", _sfc_render$I], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-transition/uni-transition.vue"]]); const _sfc_main$I = { name: "uniPopup", components: {}, emits: ["change", "maskClick"], props: { // 开启动画 animation: { type: Boolean, default: true }, // 弹出层类型,可选值,top: 顶部弹出层;bottom:底部弹出层;center:全屏弹出层 // message: 消息提示 ; dialog : 对话框 type: { type: String, default: "center" }, // maskClick isMaskClick: { type: Boolean, default: null }, // TODO 2 个版本后废弃属性 ,使用 isMaskClick maskClick: { type: Boolean, default: null }, backgroundColor: { type: String, default: "none" }, safeArea: { type: Boolean, default: true }, maskBackgroundColor: { type: String, default: "rgba(0, 0, 0, 0.4)" }, // 指定使用v-show指令,不重新渲染Pop组件 onceRender: { type: Boolean, default: false } }, watch: { /** * 监听type类型 */ type: { handler: function(type) { if (!this.config[type]) return; this[this.config[type]](true); }, immediate: true }, isDesktop: { handler: function(newVal) { if (!this.config[newVal]) return; this[this.config[this.type]](true); }, immediate: true }, /** * 监听遮罩是否可点击 * @param {Object} val */ maskClick: { handler: function(val) { this.mkclick = val; }, immediate: true }, isMaskClick: { handler: function(val) { this.mkclick = val; }, immediate: true }, // H5 下禁止底部滚动 showPopup(show) { } }, data() { return { duration: 300, ani: [], showPopup: false, showTrans: false, popupWidth: 0, popupHeight: 0, config: { top: "top", bottom: "bottom", center: "center", left: "left", right: "right", message: "top", dialog: "center", share: "bottom" }, maskClass: { position: "fixed", bottom: 0, top: 0, left: 0, right: 0, backgroundColor: "rgba(0, 0, 0, 0.4)" }, transClass: { position: "fixed", left: 0, right: 0 }, maskShow: true, mkclick: true, popupstyle: this.isDesktop ? "fixforpc-top" : "top" }; }, computed: { isDesktop() { return this.popupWidth >= 500 && this.popupHeight >= 500; }, bg() { if (this.backgroundColor === "" || this.backgroundColor === "none") { return "transparent"; } return this.backgroundColor; } }, mounted() { const fixSize = () => { const { windowWidth, windowHeight, windowTop, safeArea, screenHeight, safeAreaInsets } = uni.getSystemInfoSync(); this.popupWidth = windowWidth; this.popupHeight = windowHeight + (windowTop || 0); if (safeArea && this.safeArea) { this.safeAreaInsets = safeAreaInsets.bottom; } else { this.safeAreaInsets = 0; } }; fixSize(); }, // TODO vue3 unmounted() { this.setH5Visible(); }, created() { if (this.isMaskClick === null && this.maskClick === null) { this.mkclick = true; } else { this.mkclick = this.isMaskClick !== null ? this.isMaskClick : this.maskClick; } if (this.animation) { this.duration = 300; } else { this.duration = 0; } this.messageChild = null; this.clearPropagation = false; this.maskClass.backgroundColor = this.maskBackgroundColor; }, methods: { setH5Visible() { }, /** * 公用方法,不显示遮罩层 */ closeMask() { this.maskShow = false; }, /** * 公用方法,遮罩层禁止点击 */ disableMask() { this.mkclick = false; }, // TODO nvue 取消冒泡 clear(e2) { e2.stopPropagation(); this.clearPropagation = true; }, open(direction) { if (this.showPopup) { clearTimeout(this.timer); this.showPopup = false; } let innerType = ["top", "center", "bottom", "left", "right", "message", "dialog", "share"]; if (!(direction && innerType.indexOf(direction) !== -1)) { direction = this.type; } if (!this.config[direction]) { console.error("缺少类型:", direction); return; } this[this.config[direction]](); this.$emit("change", { show: true, type: direction }); }, close(type) { this.showTrans = false; this.$emit("change", { show: false, type: this.type }); clearTimeout(this.timer); this.timer = setTimeout(() => { this.showPopup = false; }, 300); }, // TODO 处理冒泡事件,头条的冒泡事件有问题 ,先这样兼容 touchstart() { this.clearPropagation = false; }, onTap() { if (this.clearPropagation) { this.clearPropagation = false; return; } this.$emit("maskClick"); if (!this.mkclick) return; this.close(); }, /** * 顶部弹出样式处理 */ top(type) { this.popupstyle = this.isDesktop ? "fixforpc-top" : "top"; this.ani = ["slide-top"]; this.transClass = { position: "fixed", left: 0, right: 0, backgroundColor: this.bg }; if (type) return; this.showPopup = true; this.showTrans = true; this.$nextTick(() => { if (this.messageChild && this.type === "message") { this.messageChild.timerClose(); } }); }, /** * 底部弹出样式处理 */ bottom(type) { this.popupstyle = "bottom"; this.ani = ["slide-bottom"]; this.transClass = { position: "fixed", left: 0, right: 0, bottom: 0, paddingBottom: this.safeAreaInsets + "px", backgroundColor: this.bg }; if (type) return; this.showPopup = true; this.showTrans = true; }, /** * 中间弹出样式处理 */ center(type) { this.popupstyle = "center"; this.ani = ["zoom-out", "fade"]; this.transClass = { position: "fixed", display: "flex", flexDirection: "column", bottom: 0, left: 0, right: 0, top: 0, justifyContent: "center", alignItems: "center" }; if (type) return; this.showPopup = true; this.showTrans = true; }, left(type) { this.popupstyle = "left"; this.ani = ["slide-left"]; this.transClass = { position: "fixed", left: 0, bottom: 0, top: 0, backgroundColor: this.bg, display: "flex", flexDirection: "column" }; if (type) return; this.showPopup = true; this.showTrans = true; }, right(type) { this.popupstyle = "right"; this.ani = ["slide-right"]; this.transClass = { position: "fixed", bottom: 0, right: 0, top: 0, backgroundColor: this.bg, display: "flex", flexDirection: "column" }; if (type) return; this.showPopup = true; this.showTrans = true; } } }; function _sfc_render$H(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_transition = resolveEasycom(vue.resolveDynamicComponent("uni-transition"), __easycom_0$5); return $data.showPopup || $props.onceRender ? vue.withDirectives((vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: vue.normalizeClass(["uni-popup", [$data.popupstyle, $options.isDesktop ? "fixforpc-z-index" : ""]]) }, [ vue.createElementVNode( "view", { onTouchstart: _cache[1] || (_cache[1] = (...args) => $options.touchstart && $options.touchstart(...args)) }, [ $data.maskShow ? (vue.openBlock(), vue.createBlock(_component_uni_transition, { key: "1", name: "mask", "mode-class": "fade", styles: $data.maskClass, duration: $data.duration, show: $data.showTrans, onClick: $options.onTap }, null, 8, ["styles", "duration", "show", "onClick"])) : vue.createCommentVNode("v-if", true), vue.createVNode(_component_uni_transition, { key: "2", "mode-class": $data.ani, name: "content", styles: $data.transClass, duration: $data.duration, show: $data.showTrans, onClick: $options.onTap, "once-render": $props.onceRender }, { default: vue.withCtx(() => [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-popup__wrapper", [$data.popupstyle]]), style: vue.normalizeStyle({ backgroundColor: $options.bg }), onClick: _cache[0] || (_cache[0] = (...args) => $options.clear && $options.clear(...args)) }, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ], 6 /* CLASS, STYLE */ ) ]), _: 3 /* FORWARDED */ }, 8, ["mode-class", "styles", "duration", "show", "onClick", "once-render"]) ], 32 /* NEED_HYDRATION */ ) ], 2 /* CLASS */ )), [ [vue.vShow, $data.showPopup] ]) : vue.createCommentVNode("v-if", true); } const __easycom_2 = /* @__PURE__ */ _export_sfc(_sfc_main$I, [["render", _sfc_render$H], ["__scopeId", "data-v-7db519c7"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-popup/uni-popup.vue"]]); const getGoodsByIdAPI = (id) => { return http({ method: "GET", url: "/goods", data: { id } }); }; const _sfc_main$H = /* @__PURE__ */ vue.defineComponent({ __name: "AddressPanel", setup(__props, { expose: __expose }) { __expose(); const __returned__ = {}; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$G(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "address-panel" }, [ vue.createCommentVNode(" 关闭按钮 "), vue.createElementVNode("text", { class: "close icon-close" }), vue.createCommentVNode(" 标题 "), vue.createElementVNode("view", { class: "title" }, "配送至"), vue.createCommentVNode(" 内容 "), vue.createElementVNode("view", { class: "content" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "user" }, "李明 13824686868"), vue.createElementVNode("view", { class: "address" }, "北京市顺义区后沙峪地区安平北街6号院"), vue.createElementVNode("text", { class: "icon icon-checked" }) ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "user" }, "王东 13824686868"), vue.createElementVNode("view", { class: "address" }, "北京市顺义区后沙峪地区安平北街6号院"), vue.createElementVNode("text", { class: "icon icon-ring" }) ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "user" }, "张三 13824686868"), vue.createElementVNode("view", { class: "address" }, "北京市朝阳区孙河安平北街6号院"), vue.createElementVNode("text", { class: "icon icon-ring" }) ]) ]), vue.createElementVNode("view", { class: "footer" }, [ vue.createElementVNode("view", { class: "button primary" }, " 新建地址 "), vue.createCommentVNode("v-if", true) ]) ]); } const AddressPanel = /* @__PURE__ */ _export_sfc(_sfc_main$H, [["render", _sfc_render$G], ["__scopeId", "data-v-4157c245"], ["__file", "E:/demo/hmrabbit/src/pages/goods/components/AddressPanel.vue"]]); const _sfc_main$G = /* @__PURE__ */ vue.defineComponent({ __name: "ServicePanel", emits: ["close"], setup(__props, { expose: __expose, emit: __emit }) { __expose(); const emit = __emit; const __returned__ = { emit }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$F(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "service-panel" }, [ vue.createCommentVNode(" 关闭按钮 "), vue.createElementVNode("text", { class: "close icon-close", onClick: _cache[0] || (_cache[0] = ($event) => $setup.emit("close")) }), vue.createCommentVNode(" 标题 "), vue.createElementVNode("view", { class: "title" }, "服务说明"), vue.createCommentVNode(" 内容 "), vue.createElementVNode("view", { class: "content" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "dt" }, "无忧退货"), vue.createElementVNode("view", { class: "dd" }, " 自收到商品之日起30天内,可在线申请无忧退货服务(食品等特殊商品除外) ") ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "dt" }, "快速退款"), vue.createElementVNode("view", { class: "dd" }, " 收到退货包裹并确认无误后,将在48小时内办理退款, 退款将原路返回,不同银行处理时间不同,预计1-5个工作日到账 ") ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("view", { class: "dt" }, "满88元免邮费"), vue.createElementVNode("view", { class: "dd" }, " 单笔订单金额(不含运费)满88元可免邮费,不满88元, 单笔订单收取10元邮费 ") ]) ]) ]); } const ServicePanel = /* @__PURE__ */ _export_sfc(_sfc_main$G, [["render", _sfc_render$F], ["__scopeId", "data-v-7a45ec41"], ["__file", "E:/demo/hmrabbit/src/pages/goods/components/ServicePanel.vue"]]); var SkuMode = /* @__PURE__ */ ((SkuMode2) => { SkuMode2[SkuMode2["Both"] = 1] = "Both"; SkuMode2[SkuMode2["Cart"] = 2] = "Cart"; SkuMode2[SkuMode2["Buy"] = 3] = "Buy"; return SkuMode2; })(SkuMode || {}); const _sfc_main$F = /* @__PURE__ */ vue.defineComponent({ __name: "goods", props: { id: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const query = __props; const goods2 = vue.ref(); const getGoodsByIdData = async () => { const res = await getGoodsByIdAPI(query.id); goods2.value = res.result; localdata.value = { _id: res.result.id, name: res.result.name, goods_thumb: res.result.mainPictures[0], spec_list: res.result.specs.map((v2) => { return { name: v2.name, list: v2.values }; }), sku_list: res.result.skus.map((v2) => { return { _id: v2.id, goods_id: res.result.id, goods_name: res.result.name, image: v2.picture, price: v2.price * 100, // 注意:需要乘以 100 stock: v2.inventory, sku_name_arr: v2.specs.map((vv) => vv.valueName) }; }) }; }; onLoad(() => { getGoodsByIdData(); }); const currentIndex = vue.ref(0); const onChange = (ev) => { currentIndex.value = ev.detail.current; }; const onTapImage = (url) => { uni.previewImage({ current: url, urls: goods2.value.mainPictures }); }; const popup2 = vue.ref(); const popupName = vue.ref(); const openPopup = (name) => { var _a; popupName.value = name; (_a = popup2.value) == null ? void 0 : _a.open(); }; const isShowSku = vue.ref(false); const localdata = vue.ref({}); const mode = vue.ref( 2 /* Cart */ ); const openSkuPopup = (val) => { isShowSku.value = true; mode.value = val; }; const skuPopupRef = vue.ref(); const selectArrText = vue.computed(() => { var _a, _b; return ((_b = (_a = skuPopupRef.value) == null ? void 0 : _a.selectArr) == null ? void 0 : _b.join(" ").trim()) || "请选择商品规格"; }); const onAddCart = async (ev) => { await postMemberCartAPI({ skuId: ev._id, count: ev.buy_num }); uni.showToast({ title: "添加成功" }); isShowSku.value = false; }; const onBuyNow = (ev) => { uni.navigateTo({ url: `/pagesOrder/create/create?skuId=${ev._id}&count=${ev.buy_num}` }); }; const __returned__ = { safeAreaInsets, query, goods: goods2, getGoodsByIdData, currentIndex, onChange, onTapImage, popup: popup2, popupName, openPopup, isShowSku, localdata, SkuMode, mode, openSkuPopup, skuPopupRef, selectArrText, onAddCart, onBuyNow, AddressPanel, ServicePanel }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$E(_ctx, _cache, $props, $setup, $data, $options) { var _a, _b, _c, _d, _e2, _f, _g, _h, _i; const _component_vk_data_goods_sku_popup = resolveEasycom(vue.resolveDynamicComponent("vk-data-goods-sku-popup"), __easycom_0$6); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createCommentVNode(" SKU弹窗组件 "), vue.createVNode(_component_vk_data_goods_sku_popup, { modelValue: $setup.isShowSku, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.isShowSku = $event), localdata: $setup.localdata, mode: $setup.mode, "add-cart-background-color": "#FFA868", "buy-now-background-color": "#27BA9B", ref: "skuPopupRef", "actived-style": { color: "#27BA9B", borderColor: "#27BA9B", backgroundColor: "#E9F8F5" }, onAddCart: $setup.onAddCart, onBuyNow: $setup.onBuyNow }, null, 8, ["modelValue", "localdata", "mode"]), vue.createElementVNode("scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "viewport" }, [ vue.createCommentVNode(" 基本信息 "), vue.createElementVNode("view", { class: "goods" }, [ vue.createCommentVNode(" 商品主图 "), vue.createElementVNode("view", { class: "preview" }, [ vue.createElementVNode( "swiper", { onChange: $setup.onChange, circular: "" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList((_a = $setup.goods) == null ? void 0 : _a.mainPictures, (item) => { return vue.openBlock(), vue.createElementBlock("swiper-item", { key: item }, [ vue.createElementVNode("image", { class: "image", onClick: ($event) => $setup.onTapImage(item), mode: "aspectFill", src: item }, null, 8, ["onClick", "src"]) ]); }), 128 /* KEYED_FRAGMENT */ )) ], 32 /* NEED_HYDRATION */ ), vue.createElementVNode("view", { class: "indicator" }, [ vue.createElementVNode( "text", { class: "current" }, vue.toDisplayString($setup.currentIndex + 1), 1 /* TEXT */ ), vue.createElementVNode("text", { class: "split" }, "/"), vue.createElementVNode( "text", { class: "total" }, vue.toDisplayString((_b = $setup.goods) == null ? void 0 : _b.mainPictures.length), 1 /* TEXT */ ) ]) ]), vue.createCommentVNode(" 商品简介 "), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createElementVNode( "text", { class: "number" }, vue.toDisplayString((_c = $setup.goods) == null ? void 0 : _c.price), 1 /* TEXT */ ) ]), vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString((_d = $setup.goods) == null ? void 0 : _d.name), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "desc" }, vue.toDisplayString((_e2 = $setup.goods) == null ? void 0 : _e2.desc), 1 /* TEXT */ ) ]), vue.createCommentVNode(" 操作面板 "), vue.createElementVNode("view", { class: "action" }, [ vue.createElementVNode("view", { onClick: _cache[1] || (_cache[1] = ($event) => $setup.openSkuPopup($setup.SkuMode.Both)), class: "item arrow" }, [ vue.createElementVNode("text", { class: "label" }, "选择"), vue.createElementVNode( "text", { class: "text ellipsis" }, vue.toDisplayString($setup.selectArrText), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { onClick: _cache[2] || (_cache[2] = ($event) => $setup.openPopup("address")), class: "item arrow" }, [ vue.createElementVNode("text", { class: "label" }, "送至"), vue.createElementVNode("text", { class: "text ellipsis" }, " 请选择收获地址 ") ]), vue.createElementVNode("view", { onClick: _cache[3] || (_cache[3] = ($event) => $setup.openPopup("service")), class: "item arrow" }, [ vue.createElementVNode("text", { class: "label" }, "服务"), vue.createElementVNode("text", { class: "text ellipsis" }, " 无忧退 快速退款 免费包邮 ") ]) ]) ]), vue.createCommentVNode(" 商品详情 "), vue.createElementVNode("view", { class: "detail panel" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode("text", null, "详情") ]), vue.createElementVNode("view", { class: "content" }, [ vue.createElementVNode("view", { class: "properties" }, [ vue.createCommentVNode(" 属性详情 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList((_f = $setup.goods) == null ? void 0 : _f.details.properties, (item) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: item.name }, [ vue.createElementVNode( "text", { class: "label" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "value" }, vue.toDisplayString(item.value), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createCommentVNode(" 图片详情 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList((_g = $setup.goods) == null ? void 0 : _g.details.pictures, (item) => { return vue.openBlock(), vue.createElementBlock("image", { class: "image", key: item, mode: "widthFix", src: item }, null, 8, ["src"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ]), vue.createCommentVNode(" 同类推荐 "), vue.createElementVNode("view", { class: "similar panel" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode("text", null, "同类推荐") ]), vue.createElementVNode("view", { class: "content" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList((_h = $setup.goods) == null ? void 0 : _h.similarProducts, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { key: item.id, class: "goods", "hover-class": "none", url: `/pages/goods/goods?id=${item.id}` }, [ vue.createElementVNode("image", { class: "image", mode: "aspectFill", src: item.picture }, null, 8, ["src"]), vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createElementVNode( "text", { class: "number" }, vue.toDisplayString(item.price), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ]) ]), vue.createCommentVNode(" 用户操作 "), $setup.goods ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "toolbar", style: vue.normalizeStyle({ paddingBottom: ((_i = $setup.safeAreaInsets) == null ? void 0 : _i.bottom) + "px" }) }, [ vue.createElementVNode("view", { class: "icons" }, [ vue.createElementVNode("button", { class: "icons-button" }, [ vue.createElementVNode("text", { class: "icon-heart" }), vue.createTextVNode("收藏") ]), vue.createElementVNode("navigator", { class: "icons-button", url: "/pages/cart/cart2", "open-type": "navigate" }, [ vue.createElementVNode("text", { class: "icon-cart" }), vue.createTextVNode("购物车 ") ]) ]), vue.createElementVNode("view", { class: "buttons" }, [ vue.createElementVNode("view", { onClick: _cache[4] || (_cache[4] = ($event) => $setup.openSkuPopup($setup.SkuMode.Cart)), class: "addcart" }, " 加入购物车 "), vue.createElementVNode("view", { onClick: _cache[5] || (_cache[5] = ($event) => $setup.openSkuPopup($setup.SkuMode.Buy)), class: "payment" }, " 立即购买 ") ]) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" uni-ui 弹出层 "), vue.createVNode( _component_uni_popup, { ref: "popup", type: "bottom", "background-color": "#fff" }, { default: vue.withCtx(() => [ $setup.popupName === "address" ? (vue.openBlock(), vue.createBlock($setup["AddressPanel"], { key: 0, onClose: _cache[6] || (_cache[6] = ($event) => { var _a2; return (_a2 = $setup.popup) == null ? void 0 : _a2.close(); }) })) : vue.createCommentVNode("v-if", true), $setup.popupName === "service" ? (vue.openBlock(), vue.createBlock($setup["ServicePanel"], { key: 1, onClose: _cache[7] || (_cache[7] = ($event) => { var _a2; return (_a2 = $setup.popup) == null ? void 0 : _a2.close(); }) })) : vue.createCommentVNode("v-if", true) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ], 64 /* STABLE_FRAGMENT */ ); } const PagesGoodsGoods = /* @__PURE__ */ _export_sfc(_sfc_main$F, [["render", _sfc_render$E], ["__file", "E:/demo/hmrabbit/src/pages/goods/goods.vue"]]); const _sfc_main$E = { name: "uniFormsItem", options: { virtualHost: true }, provide() { return { uniFormItem: this }; }, inject: { form: { from: "uniForm", default: null } }, props: { // 表单校验规则 rules: { type: Array, default() { return null; } }, // 表单域的属性名,在使用校验规则时必填 name: { type: [String, Array], default: "" }, required: { type: Boolean, default: false }, label: { type: String, default: "" }, // label的宽度 ,默认 80 labelWidth: { type: [String, Number], default: "" }, // label 居中方式,默认 left 取值 left/center/right labelAlign: { type: String, default: "" }, // 强制显示错误信息 errorMessage: { type: [String, Boolean], default: "" }, // 1.4.0 弃用,统一使用 form 的校验时机 // validateTrigger: { // type: String, // default: '' // }, // 1.4.0 弃用,统一使用 form 的label 位置 // labelPosition: { // type: String, // default: '' // }, // 1.4.0 以下属性已经废弃,请使用 #label 插槽代替 leftIcon: String, iconColor: { type: String, default: "#606266" } }, data() { return { errMsg: "", isRequired: false, userRules: null, localLabelAlign: "left", localLabelWidth: "65px", localLabelPos: "left", border: false, isFirstBorder: false }; }, computed: { // 处理错误信息 msg() { return this.errorMessage || this.errMsg; } }, watch: { // 规则发生变化通知子组件更新 "form.formRules"(val) { this.init(); }, "form.labelWidth"(val) { this.localLabelWidth = this._labelWidthUnit(val); }, "form.labelPosition"(val) { this.localLabelPos = this._labelPosition(); }, "form.labelAlign"(val) { } }, created() { this.init(true); if (this.name && this.form) { this.$watch( () => { const val = this.form._getDataValue(this.name, this.form.localData); return val; }, (value, oldVal) => { const isEqual2 = this.form._isEqual(value, oldVal); if (!isEqual2) { const val = this.itemSetValue(value); this.onFieldChange(val, false); } }, { immediate: false } ); } }, unmounted() { this.__isUnmounted = true; this.unInit(); }, methods: { /** * 外部调用方法 * 设置规则 ,主要用于小程序自定义检验规则 * @param {Array} rules 规则源数据 */ setRules(rules = null) { this.userRules = rules; this.init(false); }, // 兼容老版本表单组件 setValue() { }, /** * 外部调用方法 * 校验数据 * @param {any} value 需要校验的数据 * @param {boolean} 是否立即校验 * @return {Array|null} 校验内容 */ async onFieldChange(value, formtrigger = true) { const { formData, localData, errShowType, validateCheck, validateTrigger, _isRequiredField, _realName } = this.form; const name = _realName(this.name); if (!value) { value = this.form.formData[name]; } const ruleLen = this.itemRules.rules && this.itemRules.rules.length; if (!this.validator || !ruleLen || ruleLen === 0) return; const isRequiredField2 = _isRequiredField(this.itemRules.rules || []); let result = null; if (validateTrigger === "bind" || formtrigger) { result = await this.validator.validateUpdate( { [name]: value }, formData ); if (!isRequiredField2 && (value === void 0 || value === "")) { result = null; } if (result && result.errorMessage) { if (errShowType === "undertext") { this.errMsg = !result ? "" : result.errorMessage; } if (errShowType === "toast") { uni.showToast({ title: result.errorMessage || "校验错误", icon: "none" }); } if (errShowType === "modal") { uni.showModal({ title: "提示", content: result.errorMessage || "校验错误" }); } } else { this.errMsg = ""; } validateCheck(result ? result : null); } else { this.errMsg = ""; } return result ? result : null; }, /** * 初始组件数据 */ init(type = false) { const { validator, formRules, childrens, formData, localData, _realName, labelWidth, _getDataValue, _setDataValue } = this.form || {}; this.localLabelAlign = this._justifyContent(); this.localLabelWidth = this._labelWidthUnit(labelWidth); this.localLabelPos = this._labelPosition(); this.isRequired = this.required; this.form && type && childrens.push(this); if (!validator || !formRules) return; if (!this.form.isFirstBorder) { this.form.isFirstBorder = true; this.isFirstBorder = true; } if (this.group) { if (!this.group.isFirstBorder) { this.group.isFirstBorder = true; this.isFirstBorder = true; } } this.border = this.form.border; const name = _realName(this.name); const itemRule = this.userRules || this.rules; if (typeof formRules === "object" && itemRule) { formRules[name] = { rules: itemRule }; validator.updateSchema(formRules); } const itemRules = formRules[name] || {}; this.itemRules = itemRules; this.validator = validator; this.itemSetValue(_getDataValue(this.name, localData)); this.isRequired = this._isRequired(); }, unInit() { if (this.form) { const { childrens, formData, _realName } = this.form; childrens.forEach((item, index) => { if (item === this) { this.form.childrens.splice(index, 1); delete formData[_realName(item.name)]; } }); } }, // 设置item 的值 itemSetValue(value) { const name = this.form._realName(this.name); const rules = this.itemRules.rules || []; const val = this.form._getValue(name, value, rules); this.form._setDataValue(name, this.form.formData, val); return val; }, /** * 移除该表单项的校验结果 */ clearValidate() { this.errMsg = ""; }, // 是否显示星号 _isRequired() { return this.required; }, // 处理对齐方式 _justifyContent() { if (this.form) { const { labelAlign } = this.form; let labelAli = this.labelAlign ? this.labelAlign : labelAlign; if (labelAli === "left") return "flex-start"; if (labelAli === "center") return "center"; if (labelAli === "right") return "flex-end"; } return "flex-start"; }, // 处理 label宽度单位 ,继承父元素的值 _labelWidthUnit(labelWidth) { return this.num2px(this.labelWidth ? this.labelWidth : labelWidth || (this.label ? 65 : "auto")); }, // 处理 label 位置 _labelPosition() { if (this.form) return this.form.labelPosition || "left"; return "left"; }, /** * 触发时机 * @param {Object} rule 当前规则内时机 * @param {Object} itemRlue 当前组件时机 * @param {Object} parentRule 父组件时机 */ isTrigger(rule, itemRlue, parentRule) { if (rule === "submit" || !rule) { if (rule === void 0) { if (itemRlue !== "bind") { if (!itemRlue) { return parentRule === "" ? "bind" : "submit"; } return "submit"; } return "bind"; } return "submit"; } return "bind"; }, num2px(num) { if (typeof num === "number") { return `${num}px`; } return num; } } }; function _sfc_render$D(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock( "view", { class: vue.normalizeClass(["uni-forms-item", ["is-direction-" + $data.localLabelPos, $data.border ? "uni-forms-item--border" : "", $data.border && $data.isFirstBorder ? "is-first-border" : ""]]) }, [ vue.renderSlot(_ctx.$slots, "label", {}, () => [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-forms-item__label", { "no-label": !$props.label && !$data.isRequired }]), style: vue.normalizeStyle({ width: $data.localLabelWidth, justifyContent: $data.localLabelAlign }) }, [ $data.isRequired ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "is-required" }, "*")) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "text", null, vue.toDisplayString($props.label), 1 /* TEXT */ ) ], 6 /* CLASS, STYLE */ ) ], true), vue.createElementVNode("view", { class: "uni-forms-item__content" }, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true), vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-forms-item__error", { "msg--active": $options.msg }]) }, [ vue.createElementVNode( "text", null, vue.toDisplayString($options.msg), 1 /* TEXT */ ) ], 2 /* CLASS */ ) ]) ], 2 /* CLASS */ ); } const __easycom_0$4 = /* @__PURE__ */ _export_sfc(_sfc_main$E, [["render", _sfc_render$D], ["__scopeId", "data-v-3515f8e1"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-forms-item/uni-forms-item.vue"]]); const easycom = { autoscan: true, custom: { "^uni-(.*)": "@dcloudio/uni-ui/lib/uni-$1/uni-$1.vue", "^Xtx(.*)": "@/components/Xtx$1.vue" } }; const pages = [ { path: "pages/index/index", style: { navigationStyle: "custom", navigationBarTextStyle: "white", navigationBarTitleText: "首页" } }, { path: "pages/category/category", style: { navigationBarTitleText: "商品分类" } }, { path: "pages/cart/cart", style: { navigationBarTitleText: "购物车" } }, { path: "pages/cart/cart2", style: { navigationBarTitleText: "购物车" } }, { path: "pages/my/my", style: { navigationStyle: "custom", navigationBarTextStyle: "white", navigationBarTitleText: "我的" } }, { path: "pages/login/login", style: { navigationBarTitleText: "登录" } }, { path: "pages/hot/hot", style: { navigationBarTitleText: "热门推荐" } }, { path: "pages/goods/goods", style: { navigationBarTitleText: "商品详情" } }, { path: "pages/inbound/inbound", style: { navigationBarTitleText: "入库", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/inbound/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/weigh/weigh", style: { navigationBarTitleText: "称重", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/weigh/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/outbound/outbound", style: { navigationBarTitleText: "出库", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/outbound/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/warehouseScan/warehouseScan", style: { navigationBarTitleText: "仓库扫描", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/warehouseScan/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/printer/printer", style: { navigationBarTitleText: "打印", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/printer/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/scanLotno/scanLotno", style: { navigationBarTitleText: "托盘/批次", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/scanLotno/logList", style: { navigationBarTitleText: "录入历史" } }, { path: "pages/scanLotno/waybillsList", style: { navigationBarTitleText: "运单列表" } }, { path: "pages/waybillNo/waybillNo", style: { navigationBarTitleText: "库位绑定", "app-plus": { bounce: "none", titleNView: { buttons: [ { fontSize: "16px", text: "历史" } ] } } } }, { path: "pages/waybillNo/logList", style: { navigationBarTitleText: "库位历史" } }, { path: "pages/pickup/waybillPickUpOrder", style: { navigationBarTitleText: "取件单", "app-plus": { bounce: "none", titleNView: { buttons: [ { color: "#007AFF", fontSize: "22px", text: "", fontSrc: "/static/iconfont/iconfont.ttf", float: "right" } ] } } } }, { path: "pages/pickup/waybillPickUpDetails", style: { navigationBarTitleText: "取件详情" } }, { path: "pages/pickup/waybillPickUpDetail", style: { navigationBarTitleText: "运单信息" } }, { path: "pages/waybillDeliveryOrder/waybillDeliveryOrder", style: { navigationBarTitleText: "派送单" } } ]; const globalStyle = { navigationBarTextStyle: "black", navigationBarTitleText: "", navigationBarBackgroundColor: "#F8F8F8", backgroundColor: "#F8F8F8" }; const tabBar = { color: "#333", selectedColor: "#27ba9b", backgroundColor: "#fff", borderStyle: "white", list: [ { text: "首页", pagePath: "pages/index/index", iconPath: "static/tabs/home_default.png", selectedIconPath: "static/tabs/home_selected.png" }, { text: "我的", pagePath: "pages/my/my", iconPath: "static/tabs/user_default.png", selectedIconPath: "static/tabs/user_selected.png" } ] }; const subPackages = [ { root: "pagesMember", pages: [ { path: "settings/settings", style: { navigationBarTitleText: "设置" } }, { path: "profile/profile", style: { navigationStyle: "custom", navigationBarTextStyle: "white", navigationBarTitleText: "个人信息" } }, { path: "address/address", style: { navigationBarTitleText: "地址管理" } }, { path: "address-form/address-form", style: { navigationBarTitleText: "" } } ] }, { root: "pagesOrder", pages: [ { path: "create/create", style: { navigationBarTitleText: "填写订单" } }, { path: "detail/detail", style: { navigationBarTitleText: "订单详情", navigationStyle: "custom" } }, { path: "payment/payment", style: { navigationBarTitleText: "支付结果" } }, { path: "list/list", style: { navigationBarTitleText: "订单列表" } } ] } ]; const preloadRule = { "pages/my/my": { network: "all", packages: [ "pagesMember" ] } }; const e = { easycom, pages, globalStyle, tabBar, subPackages, preloadRule }; var define_process_env_UNI_SECURE_NETWORK_CONFIG_default = []; function t$3(e2) { return e2 && e2.__esModule && Object.prototype.hasOwnProperty.call(e2, "default") ? e2.default : e2; } function n(e2, t2, n2) { return e2(n2 = { path: t2, exports: {}, require: function(e3, t3) { return function() { throw new Error("Dynamic requires are not currently supported by @rollup/plugin-commonjs"); }(null == t3 && n2.path); } }, n2.exports), n2.exports; } var s = n(function(e2, t2) { var n2; e2.exports = (n2 = n2 || function(e3, t3) { var n3 = Object.create || /* @__PURE__ */ function() { function e4() { } return function(t4) { var n4; return e4.prototype = t4, n4 = new e4(), e4.prototype = null, n4; }; }(), s2 = {}, r2 = s2.lib = {}, i2 = r2.Base = { extend: function(e4) { var t4 = n3(this); return e4 && t4.mixIn(e4), t4.hasOwnProperty("init") && this.init !== t4.init || (t4.init = function() { t4.$super.init.apply(this, arguments); }), t4.init.prototype = t4, t4.$super = this, t4; }, create: function() { var e4 = this.extend(); return e4.init.apply(e4, arguments), e4; }, init: function() { }, mixIn: function(e4) { for (var t4 in e4) e4.hasOwnProperty(t4) && (this[t4] = e4[t4]); e4.hasOwnProperty("toString") && (this.toString = e4.toString); }, clone: function() { return this.init.prototype.extend(this); } }, o2 = r2.WordArray = i2.extend({ init: function(e4, n4) { e4 = this.words = e4 || [], this.sigBytes = n4 != t3 ? n4 : 4 * e4.length; }, toString: function(e4) { return (e4 || c2).stringify(this); }, concat: function(e4) { var t4 = this.words, n4 = e4.words, s3 = this.sigBytes, r3 = e4.sigBytes; if (this.clamp(), s3 % 4) for (var i3 = 0; i3 < r3; i3++) { var o3 = n4[i3 >>> 2] >>> 24 - i3 % 4 * 8 & 255; t4[s3 + i3 >>> 2] |= o3 << 24 - (s3 + i3) % 4 * 8; } else for (i3 = 0; i3 < r3; i3 += 4) t4[s3 + i3 >>> 2] = n4[i3 >>> 2]; return this.sigBytes += r3, this; }, clamp: function() { var t4 = this.words, n4 = this.sigBytes; t4[n4 >>> 2] &= 4294967295 << 32 - n4 % 4 * 8, t4.length = e3.ceil(n4 / 4); }, clone: function() { var e4 = i2.clone.call(this); return e4.words = this.words.slice(0), e4; }, random: function(t4) { for (var n4, s3 = [], r3 = function(t5) { t5 = t5; var n5 = 987654321, s4 = 4294967295; return function() { var r4 = ((n5 = 36969 * (65535 & n5) + (n5 >> 16) & s4) << 16) + (t5 = 18e3 * (65535 & t5) + (t5 >> 16) & s4) & s4; return r4 /= 4294967296, (r4 += 0.5) * (e3.random() > 0.5 ? 1 : -1); }; }, i3 = 0; i3 < t4; i3 += 4) { var a3 = r3(4294967296 * (n4 || e3.random())); n4 = 987654071 * a3(), s3.push(4294967296 * a3() | 0); } return new o2.init(s3, t4); } }), a2 = s2.enc = {}, c2 = a2.Hex = { stringify: function(e4) { for (var t4 = e4.words, n4 = e4.sigBytes, s3 = [], r3 = 0; r3 < n4; r3++) { var i3 = t4[r3 >>> 2] >>> 24 - r3 % 4 * 8 & 255; s3.push((i3 >>> 4).toString(16)), s3.push((15 & i3).toString(16)); } return s3.join(""); }, parse: function(e4) { for (var t4 = e4.length, n4 = [], s3 = 0; s3 < t4; s3 += 2) n4[s3 >>> 3] |= parseInt(e4.substr(s3, 2), 16) << 24 - s3 % 8 * 4; return new o2.init(n4, t4 / 2); } }, u2 = a2.Latin1 = { stringify: function(e4) { for (var t4 = e4.words, n4 = e4.sigBytes, s3 = [], r3 = 0; r3 < n4; r3++) { var i3 = t4[r3 >>> 2] >>> 24 - r3 % 4 * 8 & 255; s3.push(String.fromCharCode(i3)); } return s3.join(""); }, parse: function(e4) { for (var t4 = e4.length, n4 = [], s3 = 0; s3 < t4; s3++) n4[s3 >>> 2] |= (255 & e4.charCodeAt(s3)) << 24 - s3 % 4 * 8; return new o2.init(n4, t4); } }, h2 = a2.Utf8 = { stringify: function(e4) { try { return decodeURIComponent(escape(u2.stringify(e4))); } catch (e5) { throw new Error("Malformed UTF-8 data"); } }, parse: function(e4) { return u2.parse(unescape(encodeURIComponent(e4))); } }, l2 = r2.BufferedBlockAlgorithm = i2.extend({ reset: function() { this._data = new o2.init(), this._nDataBytes = 0; }, _append: function(e4) { "string" == typeof e4 && (e4 = h2.parse(e4)), this._data.concat(e4), this._nDataBytes += e4.sigBytes; }, _process: function(t4) { var n4 = this._data, s3 = n4.words, r3 = n4.sigBytes, i3 = this.blockSize, a3 = r3 / (4 * i3), c3 = (a3 = t4 ? e3.ceil(a3) : e3.max((0 | a3) - this._minBufferSize, 0)) * i3, u3 = e3.min(4 * c3, r3); if (c3) { for (var h3 = 0; h3 < c3; h3 += i3) this._doProcessBlock(s3, h3); var l3 = s3.splice(0, c3); n4.sigBytes -= u3; } return new o2.init(l3, u3); }, clone: function() { var e4 = i2.clone.call(this); return e4._data = this._data.clone(), e4; }, _minBufferSize: 0 }); r2.Hasher = l2.extend({ cfg: i2.extend(), init: function(e4) { this.cfg = this.cfg.extend(e4), this.reset(); }, reset: function() { l2.reset.call(this), this._doReset(); }, update: function(e4) { return this._append(e4), this._process(), this; }, finalize: function(e4) { return e4 && this._append(e4), this._doFinalize(); }, blockSize: 16, _createHelper: function(e4) { return function(t4, n4) { return new e4.init(n4).finalize(t4); }; }, _createHmacHelper: function(e4) { return function(t4, n4) { return new d2.HMAC.init(e4, n4).finalize(t4); }; } }); var d2 = s2.algo = {}; return s2; }(Math), n2); }), r = s, i = (n(function(e2, t2) { var n2; e2.exports = (n2 = r, function(e3) { var t3 = n2, s2 = t3.lib, r2 = s2.WordArray, i2 = s2.Hasher, o2 = t3.algo, a2 = []; !function() { for (var t4 = 0; t4 < 64; t4++) a2[t4] = 4294967296 * e3.abs(e3.sin(t4 + 1)) | 0; }(); var c2 = o2.MD5 = i2.extend({ _doReset: function() { this._hash = new r2.init([1732584193, 4023233417, 2562383102, 271733878]); }, _doProcessBlock: function(e4, t4) { for (var n3 = 0; n3 < 16; n3++) { var s3 = t4 + n3, r3 = e4[s3]; e4[s3] = 16711935 & (r3 << 8 | r3 >>> 24) | 4278255360 & (r3 << 24 | r3 >>> 8); } var i3 = this._hash.words, o3 = e4[t4 + 0], c3 = e4[t4 + 1], p2 = e4[t4 + 2], f2 = e4[t4 + 3], g2 = e4[t4 + 4], m2 = e4[t4 + 5], y2 = e4[t4 + 6], _2 = e4[t4 + 7], w2 = e4[t4 + 8], v2 = e4[t4 + 9], I2 = e4[t4 + 10], S2 = e4[t4 + 11], b2 = e4[t4 + 12], k2 = e4[t4 + 13], A2 = e4[t4 + 14], C2 = e4[t4 + 15], P2 = i3[0], T2 = i3[1], x2 = i3[2], O2 = i3[3]; P2 = u2(P2, T2, x2, O2, o3, 7, a2[0]), O2 = u2(O2, P2, T2, x2, c3, 12, a2[1]), x2 = u2(x2, O2, P2, T2, p2, 17, a2[2]), T2 = u2(T2, x2, O2, P2, f2, 22, a2[3]), P2 = u2(P2, T2, x2, O2, g2, 7, a2[4]), O2 = u2(O2, P2, T2, x2, m2, 12, a2[5]), x2 = u2(x2, O2, P2, T2, y2, 17, a2[6]), T2 = u2(T2, x2, O2, P2, _2, 22, a2[7]), P2 = u2(P2, T2, x2, O2, w2, 7, a2[8]), O2 = u2(O2, P2, T2, x2, v2, 12, a2[9]), x2 = u2(x2, O2, P2, T2, I2, 17, a2[10]), T2 = u2(T2, x2, O2, P2, S2, 22, a2[11]), P2 = u2(P2, T2, x2, O2, b2, 7, a2[12]), O2 = u2(O2, P2, T2, x2, k2, 12, a2[13]), x2 = u2(x2, O2, P2, T2, A2, 17, a2[14]), P2 = h2(P2, T2 = u2(T2, x2, O2, P2, C2, 22, a2[15]), x2, O2, c3, 5, a2[16]), O2 = h2(O2, P2, T2, x2, y2, 9, a2[17]), x2 = h2(x2, O2, P2, T2, S2, 14, a2[18]), T2 = h2(T2, x2, O2, P2, o3, 20, a2[19]), P2 = h2(P2, T2, x2, O2, m2, 5, a2[20]), O2 = h2(O2, P2, T2, x2, I2, 9, a2[21]), x2 = h2(x2, O2, P2, T2, C2, 14, a2[22]), T2 = h2(T2, x2, O2, P2, g2, 20, a2[23]), P2 = h2(P2, T2, x2, O2, v2, 5, a2[24]), O2 = h2(O2, P2, T2, x2, A2, 9, a2[25]), x2 = h2(x2, O2, P2, T2, f2, 14, a2[26]), T2 = h2(T2, x2, O2, P2, w2, 20, a2[27]), P2 = h2(P2, T2, x2, O2, k2, 5, a2[28]), O2 = h2(O2, P2, T2, x2, p2, 9, a2[29]), x2 = h2(x2, O2, P2, T2, _2, 14, a2[30]), P2 = l2(P2, T2 = h2(T2, x2, O2, P2, b2, 20, a2[31]), x2, O2, m2, 4, a2[32]), O2 = l2(O2, P2, T2, x2, w2, 11, a2[33]), x2 = l2(x2, O2, P2, T2, S2, 16, a2[34]), T2 = l2(T2, x2, O2, P2, A2, 23, a2[35]), P2 = l2(P2, T2, x2, O2, c3, 4, a2[36]), O2 = l2(O2, P2, T2, x2, g2, 11, a2[37]), x2 = l2(x2, O2, P2, T2, _2, 16, a2[38]), T2 = l2(T2, x2, O2, P2, I2, 23, a2[39]), P2 = l2(P2, T2, x2, O2, k2, 4, a2[40]), O2 = l2(O2, P2, T2, x2, o3, 11, a2[41]), x2 = l2(x2, O2, P2, T2, f2, 16, a2[42]), T2 = l2(T2, x2, O2, P2, y2, 23, a2[43]), P2 = l2(P2, T2, x2, O2, v2, 4, a2[44]), O2 = l2(O2, P2, T2, x2, b2, 11, a2[45]), x2 = l2(x2, O2, P2, T2, C2, 16, a2[46]), P2 = d2(P2, T2 = l2(T2, x2, O2, P2, p2, 23, a2[47]), x2, O2, o3, 6, a2[48]), O2 = d2(O2, P2, T2, x2, _2, 10, a2[49]), x2 = d2(x2, O2, P2, T2, A2, 15, a2[50]), T2 = d2(T2, x2, O2, P2, m2, 21, a2[51]), P2 = d2(P2, T2, x2, O2, b2, 6, a2[52]), O2 = d2(O2, P2, T2, x2, f2, 10, a2[53]), x2 = d2(x2, O2, P2, T2, I2, 15, a2[54]), T2 = d2(T2, x2, O2, P2, c3, 21, a2[55]), P2 = d2(P2, T2, x2, O2, w2, 6, a2[56]), O2 = d2(O2, P2, T2, x2, C2, 10, a2[57]), x2 = d2(x2, O2, P2, T2, y2, 15, a2[58]), T2 = d2(T2, x2, O2, P2, k2, 21, a2[59]), P2 = d2(P2, T2, x2, O2, g2, 6, a2[60]), O2 = d2(O2, P2, T2, x2, S2, 10, a2[61]), x2 = d2(x2, O2, P2, T2, p2, 15, a2[62]), T2 = d2(T2, x2, O2, P2, v2, 21, a2[63]), i3[0] = i3[0] + P2 | 0, i3[1] = i3[1] + T2 | 0, i3[2] = i3[2] + x2 | 0, i3[3] = i3[3] + O2 | 0; }, _doFinalize: function() { var t4 = this._data, n3 = t4.words, s3 = 8 * this._nDataBytes, r3 = 8 * t4.sigBytes; n3[r3 >>> 5] |= 128 << 24 - r3 % 32; var i3 = e3.floor(s3 / 4294967296), o3 = s3; n3[15 + (r3 + 64 >>> 9 << 4)] = 16711935 & (i3 << 8 | i3 >>> 24) | 4278255360 & (i3 << 24 | i3 >>> 8), n3[14 + (r3 + 64 >>> 9 << 4)] = 16711935 & (o3 << 8 | o3 >>> 24) | 4278255360 & (o3 << 24 | o3 >>> 8), t4.sigBytes = 4 * (n3.length + 1), this._process(); for (var a3 = this._hash, c3 = a3.words, u3 = 0; u3 < 4; u3++) { var h3 = c3[u3]; c3[u3] = 16711935 & (h3 << 8 | h3 >>> 24) | 4278255360 & (h3 << 24 | h3 >>> 8); } return a3; }, clone: function() { var e4 = i2.clone.call(this); return e4._hash = this._hash.clone(), e4; } }); function u2(e4, t4, n3, s3, r3, i3, o3) { var a3 = e4 + (t4 & n3 | ~t4 & s3) + r3 + o3; return (a3 << i3 | a3 >>> 32 - i3) + t4; } function h2(e4, t4, n3, s3, r3, i3, o3) { var a3 = e4 + (t4 & s3 | n3 & ~s3) + r3 + o3; return (a3 << i3 | a3 >>> 32 - i3) + t4; } function l2(e4, t4, n3, s3, r3, i3, o3) { var a3 = e4 + (t4 ^ n3 ^ s3) + r3 + o3; return (a3 << i3 | a3 >>> 32 - i3) + t4; } function d2(e4, t4, n3, s3, r3, i3, o3) { var a3 = e4 + (n3 ^ (t4 | ~s3)) + r3 + o3; return (a3 << i3 | a3 >>> 32 - i3) + t4; } t3.MD5 = i2._createHelper(c2), t3.HmacMD5 = i2._createHmacHelper(c2); }(Math), n2.MD5); }), n(function(e2, t2) { var n2; e2.exports = (n2 = r, void function() { var e3 = n2, t3 = e3.lib.Base, s2 = e3.enc.Utf8; e3.algo.HMAC = t3.extend({ init: function(e4, t4) { e4 = this._hasher = new e4.init(), "string" == typeof t4 && (t4 = s2.parse(t4)); var n3 = e4.blockSize, r2 = 4 * n3; t4.sigBytes > r2 && (t4 = e4.finalize(t4)), t4.clamp(); for (var i2 = this._oKey = t4.clone(), o2 = this._iKey = t4.clone(), a2 = i2.words, c2 = o2.words, u2 = 0; u2 < n3; u2++) a2[u2] ^= 1549556828, c2[u2] ^= 909522486; i2.sigBytes = o2.sigBytes = r2, this.reset(); }, reset: function() { var e4 = this._hasher; e4.reset(), e4.update(this._iKey); }, update: function(e4) { return this._hasher.update(e4), this; }, finalize: function(e4) { var t4 = this._hasher, n3 = t4.finalize(e4); return t4.reset(), t4.finalize(this._oKey.clone().concat(n3)); } }); }()); }), n(function(e2, t2) { e2.exports = r.HmacMD5; })), o = n(function(e2, t2) { e2.exports = r.enc.Utf8; }), a = n(function(e2, t2) { var n2; e2.exports = (n2 = r, function() { var e3 = n2, t3 = e3.lib.WordArray; function s2(e4, n3, s3) { for (var r2 = [], i2 = 0, o2 = 0; o2 < n3; o2++) if (o2 % 4) { var a2 = s3[e4.charCodeAt(o2 - 1)] << o2 % 4 * 2, c2 = s3[e4.charCodeAt(o2)] >>> 6 - o2 % 4 * 2; r2[i2 >>> 2] |= (a2 | c2) << 24 - i2 % 4 * 8, i2++; } return t3.create(r2, i2); } e3.enc.Base64 = { stringify: function(e4) { var t4 = e4.words, n3 = e4.sigBytes, s3 = this._map; e4.clamp(); for (var r2 = [], i2 = 0; i2 < n3; i2 += 3) for (var o2 = (t4[i2 >>> 2] >>> 24 - i2 % 4 * 8 & 255) << 16 | (t4[i2 + 1 >>> 2] >>> 24 - (i2 + 1) % 4 * 8 & 255) << 8 | t4[i2 + 2 >>> 2] >>> 24 - (i2 + 2) % 4 * 8 & 255, a2 = 0; a2 < 4 && i2 + 0.75 * a2 < n3; a2++) r2.push(s3.charAt(o2 >>> 6 * (3 - a2) & 63)); var c2 = s3.charAt(64); if (c2) for (; r2.length % 4; ) r2.push(c2); return r2.join(""); }, parse: function(e4) { var t4 = e4.length, n3 = this._map, r2 = this._reverseMap; if (!r2) { r2 = this._reverseMap = []; for (var i2 = 0; i2 < n3.length; i2++) r2[n3.charCodeAt(i2)] = i2; } var o2 = n3.charAt(64); if (o2) { var a2 = e4.indexOf(o2); -1 !== a2 && (t4 = a2); } return s2(e4, t4, r2); }, _map: "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=" }; }(), n2.enc.Base64); }); const c = "FUNCTION", u = "OBJECT", h = "CLIENT_DB", l = "pending", d = "fulfilled", p = "rejected"; function f(e2) { return Object.prototype.toString.call(e2).slice(8, -1).toLowerCase(); } function g(e2) { return "object" === f(e2); } function m(e2) { return "function" == typeof e2; } function y(e2) { return function() { try { return e2.apply(e2, arguments); } catch (e3) { console.error(e3); } }; } const _ = "REJECTED", w = "NOT_PENDING"; class v { constructor({ createPromise: e2, retryRule: t2 = _ } = {}) { this.createPromise = e2, this.status = null, this.promise = null, this.retryRule = t2; } get needRetry() { if (!this.status) return true; switch (this.retryRule) { case _: return this.status === p; case w: return this.status !== l; } } exec() { return this.needRetry ? (this.status = l, this.promise = this.createPromise().then((e2) => (this.status = d, Promise.resolve(e2)), (e2) => (this.status = p, Promise.reject(e2))), this.promise) : this.promise; } } function I(e2) { return e2 && "string" == typeof e2 ? JSON.parse(e2) : e2; } const S = true, b = "app", A = I(define_process_env_UNI_SECURE_NETWORK_CONFIG_default), C = b, P = I(""), T = I("[]") || []; let O = ""; try { O = "__UNI__1619D0F"; } catch (e2) { } let E = {}; function L(e2, t2 = {}) { var n2, s2; return n2 = E, s2 = e2, Object.prototype.hasOwnProperty.call(n2, s2) || (E[e2] = t2), E[e2]; } E = uni._globalUniCloudObj ? uni._globalUniCloudObj : uni._globalUniCloudObj = {}; const R = ["invoke", "success", "fail", "complete"], U = L("_globalUniCloudInterceptor"); function N(e2, t2) { U[e2] || (U[e2] = {}), g(t2) && Object.keys(t2).forEach((n2) => { R.indexOf(n2) > -1 && function(e3, t3, n3) { let s2 = U[e3][t3]; s2 || (s2 = U[e3][t3] = []), -1 === s2.indexOf(n3) && m(n3) && s2.push(n3); }(e2, n2, t2[n2]); }); } function D(e2, t2) { U[e2] || (U[e2] = {}), g(t2) ? Object.keys(t2).forEach((n2) => { R.indexOf(n2) > -1 && function(e3, t3, n3) { const s2 = U[e3][t3]; if (!s2) return; const r2 = s2.indexOf(n3); r2 > -1 && s2.splice(r2, 1); }(e2, n2, t2[n2]); }) : delete U[e2]; } function M(e2, t2) { return e2 && 0 !== e2.length ? e2.reduce((e3, n2) => e3.then(() => n2(t2)), Promise.resolve()) : Promise.resolve(); } function q(e2, t2) { return U[e2] && U[e2][t2] || []; } function F(e2) { N("callObject", e2); } const K = L("_globalUniCloudListener"), j = "response", $ = "needLogin", B = "refreshToken", W = "clientdb", H = "cloudfunction", z = "cloudobject"; function J(e2) { return K[e2] || (K[e2] = []), K[e2]; } function V(e2, t2) { const n2 = J(e2); n2.includes(t2) || n2.push(t2); } function G(e2, t2) { const n2 = J(e2), s2 = n2.indexOf(t2); -1 !== s2 && n2.splice(s2, 1); } function Y(e2, t2) { const n2 = J(e2); for (let e3 = 0; e3 < n2.length; e3++) { (0, n2[e3])(t2); } } let Q, X = false; function Z() { return Q || (Q = new Promise((e2) => { X && e2(), function t2() { if ("function" == typeof getCurrentPages) { const t3 = getCurrentPages(); t3 && t3[0] && (X = true, e2()); } X || setTimeout(() => { t2(); }, 30); }(); }), Q); } function ee(e2) { const t2 = {}; for (const n2 in e2) { const s2 = e2[n2]; m(s2) && (t2[n2] = y(s2)); } return t2; } class te extends Error { constructor(e2) { super(e2.message), this.errMsg = e2.message || e2.errMsg || "unknown system error", this.code = this.errCode = e2.code || e2.errCode || "SYSTEM_ERROR", this.errSubject = this.subject = e2.subject || e2.errSubject, this.cause = e2.cause, this.requestId = e2.requestId; } toJson(e2 = 0) { if (!(e2 >= 10)) return e2++, { errCode: this.errCode, errMsg: this.errMsg, errSubject: this.errSubject, cause: this.cause && this.cause.toJson ? this.cause.toJson(e2) : this.cause }; } } var ne = { request: (e2) => uni.request(e2), uploadFile: (e2) => uni.uploadFile(e2), setStorageSync: (e2, t2) => uni.setStorageSync(e2, t2), getStorageSync: (e2) => uni.getStorageSync(e2), removeStorageSync: (e2) => uni.removeStorageSync(e2), clearStorageSync: () => uni.clearStorageSync(), connectSocket: (e2) => uni.connectSocket(e2) }; function se(e2) { return e2 && se(e2.__v_raw) || e2; } function re() { return { token: ne.getStorageSync("uni_id_token") || ne.getStorageSync("uniIdToken"), tokenExpired: ne.getStorageSync("uni_id_token_expired") }; } function ie({ token: e2, tokenExpired: t2 } = {}) { e2 && ne.setStorageSync("uni_id_token", e2), t2 && ne.setStorageSync("uni_id_token_expired", t2); } let oe, ae; function ce() { return oe || (oe = uni.getSystemInfoSync()), oe; } function ue() { let e2, t2; try { if (uni.getLaunchOptionsSync) { if (uni.getLaunchOptionsSync.toString().indexOf("not yet implemented") > -1) return; const { scene: n2, channel: s2 } = uni.getLaunchOptionsSync(); e2 = s2, t2 = n2; } } catch (e3) { } return { channel: e2, scene: t2 }; } let he = {}; function le() { const e2 = uni.getLocale && uni.getLocale() || "en"; if (ae) return { ...he, ...ae, locale: e2, LOCALE: e2 }; const t2 = ce(), { deviceId: n2, osName: s2, uniPlatform: r2, appId: i2 } = t2, o2 = ["appId", "appLanguage", "appName", "appVersion", "appVersionCode", "appWgtVersion", "browserName", "browserVersion", "deviceBrand", "deviceId", "deviceModel", "deviceType", "osName", "osVersion", "romName", "romVersion", "ua", "hostName", "hostVersion", "uniPlatform", "uniRuntimeVersion", "uniRuntimeVersionCode", "uniCompilerVersion", "uniCompilerVersionCode"]; for (const e3 in t2) Object.hasOwnProperty.call(t2, e3) && -1 === o2.indexOf(e3) && delete t2[e3]; return ae = { PLATFORM: r2, OS: s2, APPID: i2, DEVICEID: n2, ...ue(), ...t2 }, { ...he, ...ae, locale: e2, LOCALE: e2 }; } var de = { sign: function(e2, t2) { let n2 = ""; return Object.keys(e2).sort().forEach(function(t3) { e2[t3] && (n2 = n2 + "&" + t3 + "=" + e2[t3]); }), n2 = n2.slice(1), i(n2, t2).toString(); }, wrappedRequest: function(e2, t2) { return new Promise((n2, s2) => { t2(Object.assign(e2, { complete(e3) { e3 || (e3 = {}); const t3 = e3.data && e3.data.header && e3.data.header["x-serverless-request-id"] || e3.header && e3.header["request-id"]; if (!e3.statusCode || e3.statusCode >= 400) { const n3 = e3.data && e3.data.error && e3.data.error.code || "SYS_ERR", r3 = e3.data && e3.data.error && e3.data.error.message || e3.errMsg || "request:fail"; return s2(new te({ code: n3, message: r3, requestId: t3 })); } const r2 = e3.data; if (r2.error) return s2(new te({ code: r2.error.code, message: r2.error.message, requestId: t3 })); r2.result = r2.data, r2.requestId = t3, delete r2.data, n2(r2); } })); }); }, toBase64: function(e2) { return a.stringify(o.parse(e2)); } }; var pe = class { constructor(e2) { ["spaceId", "clientSecret"].forEach((t2) => { if (!Object.prototype.hasOwnProperty.call(e2, t2)) throw new Error(`${t2} required`); }), this.config = Object.assign({}, { endpoint: 0 === e2.spaceId.indexOf("mp-") ? "https://api.next.bspapp.com" : "https://api.bspapp.com" }, e2), this.config.provider = "aliyun", this.config.requestUrl = this.config.endpoint + "/client", this.config.envType = this.config.envType || "public", this.config.accessTokenKey = "access_token_" + this.config.spaceId, this.adapter = ne, this._getAccessTokenPromiseHub = new v({ createPromise: () => this.requestAuth(this.setupRequest({ method: "serverless.auth.user.anonymousAuthorize", params: "{}" }, "auth")).then((e3) => { if (!e3.result || !e3.result.accessToken) throw new te({ code: "AUTH_FAILED", message: "获取accessToken失败" }); this.setAccessToken(e3.result.accessToken); }), retryRule: w }); } get hasAccessToken() { return !!this.accessToken; } setAccessToken(e2) { this.accessToken = e2; } requestWrapped(e2) { return de.wrappedRequest(e2, this.adapter.request); } requestAuth(e2) { return this.requestWrapped(e2); } request(e2, t2) { return Promise.resolve().then(() => this.hasAccessToken ? t2 ? this.requestWrapped(e2) : this.requestWrapped(e2).catch((t3) => new Promise((e3, n2) => { !t3 || "GATEWAY_INVALID_TOKEN" !== t3.code && "InvalidParameter.InvalidToken" !== t3.code ? n2(t3) : e3(); }).then(() => this.getAccessToken()).then(() => { const t4 = this.rebuildRequest(e2); return this.request(t4, true); })) : this.getAccessToken().then(() => { const t3 = this.rebuildRequest(e2); return this.request(t3, true); })); } rebuildRequest(e2) { const t2 = Object.assign({}, e2); return t2.data.token = this.accessToken, t2.header["x-basement-token"] = this.accessToken, t2.header["x-serverless-sign"] = de.sign(t2.data, this.config.clientSecret), t2; } setupRequest(e2, t2) { const n2 = Object.assign({}, e2, { spaceId: this.config.spaceId, timestamp: Date.now() }), s2 = { "Content-Type": "application/json" }; return "auth" !== t2 && (n2.token = this.accessToken, s2["x-basement-token"] = this.accessToken), s2["x-serverless-sign"] = de.sign(n2, this.config.clientSecret), { url: this.config.requestUrl, method: "POST", data: n2, dataType: "json", header: s2 }; } getAccessToken() { return this._getAccessTokenPromiseHub.exec(); } async authorize() { await this.getAccessToken(); } callFunction(e2) { const t2 = { method: "serverless.function.runtime.invoke", params: JSON.stringify({ functionTarget: e2.name, functionArgs: e2.data || {} }) }; return this.request(this.setupRequest(t2)); } getOSSUploadOptionsFromPath(e2) { const t2 = { method: "serverless.file.resource.generateProximalSign", params: JSON.stringify(e2) }; return this.request(this.setupRequest(t2)); } uploadFileToOSS({ url: e2, formData: t2, name: n2, filePath: s2, fileType: r2, onUploadProgress: i2 }) { return new Promise((o2, a2) => { const c2 = this.adapter.uploadFile({ url: e2, formData: t2, name: n2, filePath: s2, fileType: r2, header: { "X-OSS-server-side-encrpytion": "AES256" }, success(e3) { e3 && e3.statusCode < 400 ? o2(e3) : a2(new te({ code: "UPLOAD_FAILED", message: "文件上传失败" })); }, fail(e3) { a2(new te({ code: e3.code || "UPLOAD_FAILED", message: e3.message || e3.errMsg || "文件上传失败" })); } }); "function" == typeof i2 && c2 && "function" == typeof c2.onProgressUpdate && c2.onProgressUpdate((e3) => { i2({ loaded: e3.totalBytesSent, total: e3.totalBytesExpectedToSend }); }); }); } reportOSSUpload(e2) { const t2 = { method: "serverless.file.resource.report", params: JSON.stringify(e2) }; return this.request(this.setupRequest(t2)); } async uploadFile({ filePath: e2, cloudPath: t2, fileType: n2 = "image", cloudPathAsRealPath: s2 = false, onUploadProgress: r2, config: i2 }) { if ("string" !== f(t2)) throw new te({ code: "INVALID_PARAM", message: "cloudPath必须为字符串类型" }); if (!(t2 = t2.trim())) throw new te({ code: "INVALID_PARAM", message: "cloudPath不可为空" }); if (/:\/\//.test(t2)) throw new te({ code: "INVALID_PARAM", message: "cloudPath不合法" }); const o2 = i2 && i2.envType || this.config.envType; if (s2 && ("/" !== t2[0] && (t2 = "/" + t2), t2.indexOf("\\") > -1)) throw new te({ code: "INVALID_PARAM", message: "使用cloudPath作为路径时,cloudPath不可包含“\\”" }); const a2 = (await this.getOSSUploadOptionsFromPath({ env: o2, filename: s2 ? t2.split("/").pop() : t2, fileId: s2 ? t2 : void 0 })).result, c2 = "https://" + a2.cdnDomain + "/" + a2.ossPath, { securityToken: u2, accessKeyId: h2, signature: l2, host: d2, ossPath: p2, id: g2, policy: m2, ossCallbackUrl: y2 } = a2, _2 = { "Cache-Control": "max-age=2592000", "Content-Disposition": "attachment", OSSAccessKeyId: h2, Signature: l2, host: d2, id: g2, key: p2, policy: m2, success_action_status: 200 }; if (u2 && (_2["x-oss-security-token"] = u2), y2) { const e3 = JSON.stringify({ callbackUrl: y2, callbackBody: JSON.stringify({ fileId: g2, spaceId: this.config.spaceId }), callbackBodyType: "application/json" }); _2.callback = de.toBase64(e3); } const w2 = { url: "https://" + a2.host, formData: _2, fileName: "file", name: "file", filePath: e2, fileType: n2 }; if (await this.uploadFileToOSS(Object.assign({}, w2, { onUploadProgress: r2 })), y2) return { success: true, filePath: e2, fileID: c2 }; if ((await this.reportOSSUpload({ id: g2 })).success) return { success: true, filePath: e2, fileID: c2 }; throw new te({ code: "UPLOAD_FAILED", message: "文件上传失败" }); } getTempFileURL({ fileList: e2 } = {}) { return new Promise((t2, n2) => { Array.isArray(e2) && 0 !== e2.length || n2(new te({ code: "INVALID_PARAM", message: "fileList的元素必须是非空的字符串" })), t2({ fileList: e2.map((e3) => ({ fileID: e3, tempFileURL: e3 })) }); }); } async getFileInfo({ fileList: e2 } = {}) { if (!Array.isArray(e2) || 0 === e2.length) throw new te({ code: "INVALID_PARAM", message: "fileList的元素必须是非空的字符串" }); const t2 = { method: "serverless.file.resource.info", params: JSON.stringify({ id: e2.map((e3) => e3.split("?")[0]).join(",") }) }; return { fileList: (await this.request(this.setupRequest(t2))).result }; } }; var fe = { init(e2) { const t2 = new pe(e2), n2 = { signInAnonymously: function() { return t2.authorize(); }, getLoginState: function() { return Promise.resolve(false); } }; return t2.auth = function() { return n2; }, t2.customAuth = t2.auth, t2; } }; const ge = "undefined" != typeof location && "http:" === location.protocol ? "http:" : "https:"; var me; !function(e2) { e2.local = "local", e2.none = "none", e2.session = "session"; }(me || (me = {})); var ye = function() { }, _e = n(function(e2, t2) { var n2; e2.exports = (n2 = r, function(e3) { var t3 = n2, s2 = t3.lib, r2 = s2.WordArray, i2 = s2.Hasher, o2 = t3.algo, a2 = [], c2 = []; !function() { function t4(t5) { for (var n4 = e3.sqrt(t5), s4 = 2; s4 <= n4; s4++) if (!(t5 % s4)) return false; return true; } function n3(e4) { return 4294967296 * (e4 - (0 | e4)) | 0; } for (var s3 = 2, r3 = 0; r3 < 64; ) t4(s3) && (r3 < 8 && (a2[r3] = n3(e3.pow(s3, 0.5))), c2[r3] = n3(e3.pow(s3, 1 / 3)), r3++), s3++; }(); var u2 = [], h2 = o2.SHA256 = i2.extend({ _doReset: function() { this._hash = new r2.init(a2.slice(0)); }, _doProcessBlock: function(e4, t4) { for (var n3 = this._hash.words, s3 = n3[0], r3 = n3[1], i3 = n3[2], o3 = n3[3], a3 = n3[4], h3 = n3[5], l2 = n3[6], d2 = n3[7], p2 = 0; p2 < 64; p2++) { if (p2 < 16) u2[p2] = 0 | e4[t4 + p2]; else { var f2 = u2[p2 - 15], g2 = (f2 << 25 | f2 >>> 7) ^ (f2 << 14 | f2 >>> 18) ^ f2 >>> 3, m2 = u2[p2 - 2], y2 = (m2 << 15 | m2 >>> 17) ^ (m2 << 13 | m2 >>> 19) ^ m2 >>> 10; u2[p2] = g2 + u2[p2 - 7] + y2 + u2[p2 - 16]; } var _2 = s3 & r3 ^ s3 & i3 ^ r3 & i3, w2 = (s3 << 30 | s3 >>> 2) ^ (s3 << 19 | s3 >>> 13) ^ (s3 << 10 | s3 >>> 22), v2 = d2 + ((a3 << 26 | a3 >>> 6) ^ (a3 << 21 | a3 >>> 11) ^ (a3 << 7 | a3 >>> 25)) + (a3 & h3 ^ ~a3 & l2) + c2[p2] + u2[p2]; d2 = l2, l2 = h3, h3 = a3, a3 = o3 + v2 | 0, o3 = i3, i3 = r3, r3 = s3, s3 = v2 + (w2 + _2) | 0; } n3[0] = n3[0] + s3 | 0, n3[1] = n3[1] + r3 | 0, n3[2] = n3[2] + i3 | 0, n3[3] = n3[3] + o3 | 0, n3[4] = n3[4] + a3 | 0, n3[5] = n3[5] + h3 | 0, n3[6] = n3[6] + l2 | 0, n3[7] = n3[7] + d2 | 0; }, _doFinalize: function() { var t4 = this._data, n3 = t4.words, s3 = 8 * this._nDataBytes, r3 = 8 * t4.sigBytes; return n3[r3 >>> 5] |= 128 << 24 - r3 % 32, n3[14 + (r3 + 64 >>> 9 << 4)] = e3.floor(s3 / 4294967296), n3[15 + (r3 + 64 >>> 9 << 4)] = s3, t4.sigBytes = 4 * n3.length, this._process(), this._hash; }, clone: function() { var e4 = i2.clone.call(this); return e4._hash = this._hash.clone(), e4; } }); t3.SHA256 = i2._createHelper(h2), t3.HmacSHA256 = i2._createHmacHelper(h2); }(Math), n2.SHA256); }), we = _e, ve = n(function(e2, t2) { e2.exports = r.HmacSHA256; }); const Ie = () => { let e2; if (!Promise) { e2 = () => { }, e2.promise = {}; const t3 = () => { throw new te({ message: 'Your Node runtime does support ES6 Promises. Set "global.Promise" to your preferred implementation of promises.' }); }; return Object.defineProperty(e2.promise, "then", { get: t3 }), Object.defineProperty(e2.promise, "catch", { get: t3 }), e2; } const t2 = new Promise((t3, n2) => { e2 = (e3, s2) => e3 ? n2(e3) : t3(s2); }); return e2.promise = t2, e2; }; function Se(e2) { return void 0 === e2; } function be(e2) { return "[object Null]" === Object.prototype.toString.call(e2); } var ke; function Ae(e2) { const t2 = (n2 = e2, "[object Array]" === Object.prototype.toString.call(n2) ? e2 : [e2]); var n2; for (const e3 of t2) { const { isMatch: t3, genAdapter: n3, runtime: s2 } = e3; if (t3()) return { adapter: n3(), runtime: s2 }; } } !function(e2) { e2.WEB = "web", e2.WX_MP = "wx_mp"; }(ke || (ke = {})); const Ce = { adapter: null, runtime: void 0 }, Pe = ["anonymousUuidKey"]; class Te extends ye { constructor() { super(), Ce.adapter.root.tcbObject || (Ce.adapter.root.tcbObject = {}); } setItem(e2, t2) { Ce.adapter.root.tcbObject[e2] = t2; } getItem(e2) { return Ce.adapter.root.tcbObject[e2]; } removeItem(e2) { delete Ce.adapter.root.tcbObject[e2]; } clear() { delete Ce.adapter.root.tcbObject; } } function xe(e2, t2) { switch (e2) { case "local": return t2.localStorage || new Te(); case "none": return new Te(); default: return t2.sessionStorage || new Te(); } } class Oe { constructor(e2) { if (!this._storage) { this._persistence = Ce.adapter.primaryStorage || e2.persistence, this._storage = xe(this._persistence, Ce.adapter); const t2 = `access_token_${e2.env}`, n2 = `access_token_expire_${e2.env}`, s2 = `refresh_token_${e2.env}`, r2 = `anonymous_uuid_${e2.env}`, i2 = `login_type_${e2.env}`, o2 = `user_info_${e2.env}`; this.keys = { accessTokenKey: t2, accessTokenExpireKey: n2, refreshTokenKey: s2, anonymousUuidKey: r2, loginTypeKey: i2, userInfoKey: o2 }; } } updatePersistence(e2) { if (e2 === this._persistence) return; const t2 = "local" === this._persistence; this._persistence = e2; const n2 = xe(e2, Ce.adapter); for (const e3 in this.keys) { const s2 = this.keys[e3]; if (t2 && Pe.includes(e3)) continue; const r2 = this._storage.getItem(s2); Se(r2) || be(r2) || (n2.setItem(s2, r2), this._storage.removeItem(s2)); } this._storage = n2; } setStore(e2, t2, n2) { if (!this._storage) return; const s2 = { version: n2 || "localCachev1", content: t2 }, r2 = JSON.stringify(s2); try { this._storage.setItem(e2, r2); } catch (e3) { throw e3; } } getStore(e2, t2) { try { if (!this._storage) return; } catch (e3) { return ""; } t2 = t2 || "localCachev1"; const n2 = this._storage.getItem(e2); if (!n2) return ""; if (n2.indexOf(t2) >= 0) { return JSON.parse(n2).content; } return ""; } removeStore(e2) { this._storage.removeItem(e2); } } const Ee = {}, Le = {}; function Re(e2) { return Ee[e2]; } class Ue { constructor(e2, t2) { this.data = t2 || null, this.name = e2; } } class Ne extends Ue { constructor(e2, t2) { super("error", { error: e2, data: t2 }), this.error = e2; } } const De = new class { constructor() { this._listeners = {}; } on(e2, t2) { return function(e3, t3, n2) { n2[e3] = n2[e3] || [], n2[e3].push(t3); }(e2, t2, this._listeners), this; } off(e2, t2) { return function(e3, t3, n2) { if (n2 && n2[e3]) { const s2 = n2[e3].indexOf(t3); -1 !== s2 && n2[e3].splice(s2, 1); } }(e2, t2, this._listeners), this; } fire(e2, t2) { if (e2 instanceof Ne) return console.error(e2.error), this; const n2 = "string" == typeof e2 ? new Ue(e2, t2 || {}) : e2; const s2 = n2.name; if (this._listens(s2)) { n2.target = this; const e3 = this._listeners[s2] ? [...this._listeners[s2]] : []; for (const t3 of e3) t3.call(this, n2); } return this; } _listens(e2) { return this._listeners[e2] && this._listeners[e2].length > 0; } }(); function Me(e2, t2) { De.on(e2, t2); } function qe(e2, t2 = {}) { De.fire(e2, t2); } function Fe(e2, t2) { De.off(e2, t2); } const Ke = "loginStateChanged", je = "loginStateExpire", $e = "loginTypeChanged", Be = "anonymousConverted", We = "refreshAccessToken"; var He; !function(e2) { e2.ANONYMOUS = "ANONYMOUS", e2.WECHAT = "WECHAT", e2.WECHAT_PUBLIC = "WECHAT-PUBLIC", e2.WECHAT_OPEN = "WECHAT-OPEN", e2.CUSTOM = "CUSTOM", e2.EMAIL = "EMAIL", e2.USERNAME = "USERNAME", e2.NULL = "NULL"; }(He || (He = {})); const ze = ["auth.getJwt", "auth.logout", "auth.signInWithTicket", "auth.signInAnonymously", "auth.signIn", "auth.fetchAccessTokenWithRefreshToken", "auth.signUpWithEmailAndPassword", "auth.activateEndUserMail", "auth.sendPasswordResetEmail", "auth.resetPasswordWithToken", "auth.isUsernameRegistered"], Je = { "X-SDK-Version": "1.3.5" }; function Ve(e2, t2, n2) { const s2 = e2[t2]; e2[t2] = function(t3) { const r2 = {}, i2 = {}; n2.forEach((n3) => { const { data: s3, headers: o3 } = n3.call(e2, t3); Object.assign(r2, s3), Object.assign(i2, o3); }); const o2 = t3.data; return o2 && (() => { var e3; if (e3 = o2, "[object FormData]" !== Object.prototype.toString.call(e3)) t3.data = { ...o2, ...r2 }; else for (const e4 in r2) o2.append(e4, r2[e4]); })(), t3.headers = { ...t3.headers || {}, ...i2 }, s2.call(e2, t3); }; } function Ge() { const e2 = Math.random().toString(16).slice(2); return { data: { seqId: e2 }, headers: { ...Je, "x-seqid": e2 } }; } class Ye { constructor(e2 = {}) { var t2; this.config = e2, this._reqClass = new Ce.adapter.reqClass({ timeout: this.config.timeout, timeoutMsg: `请求在${this.config.timeout / 1e3}s内未完成,已中断`, restrictedMethods: ["post"] }), this._cache = Re(this.config.env), this._localCache = (t2 = this.config.env, Le[t2]), Ve(this._reqClass, "post", [Ge]), Ve(this._reqClass, "upload", [Ge]), Ve(this._reqClass, "download", [Ge]); } async post(e2) { return await this._reqClass.post(e2); } async upload(e2) { return await this._reqClass.upload(e2); } async download(e2) { return await this._reqClass.download(e2); } async refreshAccessToken() { let e2, t2; this._refreshAccessTokenPromise || (this._refreshAccessTokenPromise = this._refreshAccessToken()); try { e2 = await this._refreshAccessTokenPromise; } catch (e3) { t2 = e3; } if (this._refreshAccessTokenPromise = null, this._shouldRefreshAccessTokenHook = null, t2) throw t2; return e2; } async _refreshAccessToken() { const { accessTokenKey: e2, accessTokenExpireKey: t2, refreshTokenKey: n2, loginTypeKey: s2, anonymousUuidKey: r2 } = this._cache.keys; this._cache.removeStore(e2), this._cache.removeStore(t2); let i2 = this._cache.getStore(n2); if (!i2) throw new te({ message: "未登录CloudBase" }); const o2 = { refresh_token: i2 }, a2 = await this.request("auth.fetchAccessTokenWithRefreshToken", o2); if (a2.data.code) { const { code: e3 } = a2.data; if ("SIGN_PARAM_INVALID" === e3 || "REFRESH_TOKEN_EXPIRED" === e3 || "INVALID_REFRESH_TOKEN" === e3) { if (this._cache.getStore(s2) === He.ANONYMOUS && "INVALID_REFRESH_TOKEN" === e3) { const e4 = this._cache.getStore(r2), t3 = this._cache.getStore(n2), s3 = await this.send("auth.signInAnonymously", { anonymous_uuid: e4, refresh_token: t3 }); return this.setRefreshToken(s3.refresh_token), this._refreshAccessToken(); } qe(je), this._cache.removeStore(n2); } throw new te({ code: a2.data.code, message: `刷新access token失败:${a2.data.code}` }); } if (a2.data.access_token) return qe(We), this._cache.setStore(e2, a2.data.access_token), this._cache.setStore(t2, a2.data.access_token_expire + Date.now()), { accessToken: a2.data.access_token, accessTokenExpire: a2.data.access_token_expire }; a2.data.refresh_token && (this._cache.removeStore(n2), this._cache.setStore(n2, a2.data.refresh_token), this._refreshAccessToken()); } async getAccessToken() { const { accessTokenKey: e2, accessTokenExpireKey: t2, refreshTokenKey: n2 } = this._cache.keys; if (!this._cache.getStore(n2)) throw new te({ message: "refresh token不存在,登录状态异常" }); let s2 = this._cache.getStore(e2), r2 = this._cache.getStore(t2), i2 = true; return this._shouldRefreshAccessTokenHook && !await this._shouldRefreshAccessTokenHook(s2, r2) && (i2 = false), (!s2 || !r2 || r2 < Date.now()) && i2 ? this.refreshAccessToken() : { accessToken: s2, accessTokenExpire: r2 }; } async request(e2, t2, n2) { const s2 = `x-tcb-trace_${this.config.env}`; let r2 = "application/x-www-form-urlencoded"; const i2 = { action: e2, env: this.config.env, dataVersion: "2019-08-16", ...t2 }; if (-1 === ze.indexOf(e2)) { const { refreshTokenKey: e3 } = this._cache.keys; this._cache.getStore(e3) && (i2.access_token = (await this.getAccessToken()).accessToken); } let o2; if ("storage.uploadFile" === e2) { o2 = new FormData(); for (let e3 in o2) o2.hasOwnProperty(e3) && void 0 !== o2[e3] && o2.append(e3, i2[e3]); r2 = "multipart/form-data"; } else { r2 = "application/json", o2 = {}; for (let e3 in i2) void 0 !== i2[e3] && (o2[e3] = i2[e3]); } let a2 = { headers: { "content-type": r2 } }; n2 && n2.onUploadProgress && (a2.onUploadProgress = n2.onUploadProgress); const c2 = this._localCache.getStore(s2); c2 && (a2.headers["X-TCB-Trace"] = c2); const { parse: u2, inQuery: h2, search: l2 } = t2; let d2 = { env: this.config.env }; u2 && (d2.parse = true), h2 && (d2 = { ...h2, ...d2 }); let p2 = function(e3, t3, n3 = {}) { const s3 = /\?/.test(t3); let r3 = ""; for (let e4 in n3) "" === r3 ? !s3 && (t3 += "?") : r3 += "&", r3 += `${e4}=${encodeURIComponent(n3[e4])}`; return /^http(s)?\:\/\//.test(t3 += r3) ? t3 : `${e3}${t3}`; }(ge, "//tcb-api.tencentcloudapi.com/web", d2); l2 && (p2 += l2); const f2 = await this.post({ url: p2, data: o2, ...a2 }), g2 = f2.header && f2.header["x-tcb-trace"]; if (g2 && this._localCache.setStore(s2, g2), 200 !== Number(f2.status) && 200 !== Number(f2.statusCode) || !f2.data) throw new te({ code: "NETWORK_ERROR", message: "network request error" }); return f2; } async send(e2, t2 = {}) { const n2 = await this.request(e2, t2, { onUploadProgress: t2.onUploadProgress }); if ("ACCESS_TOKEN_EXPIRED" === n2.data.code && -1 === ze.indexOf(e2)) { await this.refreshAccessToken(); const n3 = await this.request(e2, t2, { onUploadProgress: t2.onUploadProgress }); if (n3.data.code) throw new te({ code: n3.data.code, message: n3.data.message }); return n3.data; } if (n2.data.code) throw new te({ code: n2.data.code, message: n2.data.message }); return n2.data; } setRefreshToken(e2) { const { accessTokenKey: t2, accessTokenExpireKey: n2, refreshTokenKey: s2 } = this._cache.keys; this._cache.removeStore(t2), this._cache.removeStore(n2), this._cache.setStore(s2, e2); } } const Qe = {}; function Xe(e2) { return Qe[e2]; } class Ze { constructor(e2) { this.config = e2, this._cache = Re(e2.env), this._request = Xe(e2.env); } setRefreshToken(e2) { const { accessTokenKey: t2, accessTokenExpireKey: n2, refreshTokenKey: s2 } = this._cache.keys; this._cache.removeStore(t2), this._cache.removeStore(n2), this._cache.setStore(s2, e2); } setAccessToken(e2, t2) { const { accessTokenKey: n2, accessTokenExpireKey: s2 } = this._cache.keys; this._cache.setStore(n2, e2), this._cache.setStore(s2, t2); } async refreshUserInfo() { const { data: e2 } = await this._request.send("auth.getUserInfo", {}); return this.setLocalUserInfo(e2), e2; } setLocalUserInfo(e2) { const { userInfoKey: t2 } = this._cache.keys; this._cache.setStore(t2, e2); } } class et { constructor(e2) { if (!e2) throw new te({ code: "PARAM_ERROR", message: "envId is not defined" }); this._envId = e2, this._cache = Re(this._envId), this._request = Xe(this._envId), this.setUserInfo(); } linkWithTicket(e2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "ticket must be string" }); return this._request.send("auth.linkWithTicket", { ticket: e2 }); } linkWithRedirect(e2) { e2.signInWithRedirect(); } updatePassword(e2, t2) { return this._request.send("auth.updatePassword", { oldPassword: t2, newPassword: e2 }); } updateEmail(e2) { return this._request.send("auth.updateEmail", { newEmail: e2 }); } updateUsername(e2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "username must be a string" }); return this._request.send("auth.updateUsername", { username: e2 }); } async getLinkedUidList() { const { data: e2 } = await this._request.send("auth.getLinkedUidList", {}); let t2 = false; const { users: n2 } = e2; return n2.forEach((e3) => { e3.wxOpenId && e3.wxPublicId && (t2 = true); }), { users: n2, hasPrimaryUid: t2 }; } setPrimaryUid(e2) { return this._request.send("auth.setPrimaryUid", { uid: e2 }); } unlink(e2) { return this._request.send("auth.unlink", { platform: e2 }); } async update(e2) { const { nickName: t2, gender: n2, avatarUrl: s2, province: r2, country: i2, city: o2 } = e2, { data: a2 } = await this._request.send("auth.updateUserInfo", { nickName: t2, gender: n2, avatarUrl: s2, province: r2, country: i2, city: o2 }); this.setLocalUserInfo(a2); } async refresh() { const { data: e2 } = await this._request.send("auth.getUserInfo", {}); return this.setLocalUserInfo(e2), e2; } setUserInfo() { const { userInfoKey: e2 } = this._cache.keys, t2 = this._cache.getStore(e2); ["uid", "loginType", "openid", "wxOpenId", "wxPublicId", "unionId", "qqMiniOpenId", "email", "hasPassword", "customUserId", "nickName", "gender", "avatarUrl"].forEach((e3) => { this[e3] = t2[e3]; }), this.location = { country: t2.country, province: t2.province, city: t2.city }; } setLocalUserInfo(e2) { const { userInfoKey: t2 } = this._cache.keys; this._cache.setStore(t2, e2), this.setUserInfo(); } } class tt { constructor(e2) { if (!e2) throw new te({ code: "PARAM_ERROR", message: "envId is not defined" }); this._cache = Re(e2); const { refreshTokenKey: t2, accessTokenKey: n2, accessTokenExpireKey: s2 } = this._cache.keys, r2 = this._cache.getStore(t2), i2 = this._cache.getStore(n2), o2 = this._cache.getStore(s2); this.credential = { refreshToken: r2, accessToken: i2, accessTokenExpire: o2 }, this.user = new et(e2); } get isAnonymousAuth() { return this.loginType === He.ANONYMOUS; } get isCustomAuth() { return this.loginType === He.CUSTOM; } get isWeixinAuth() { return this.loginType === He.WECHAT || this.loginType === He.WECHAT_OPEN || this.loginType === He.WECHAT_PUBLIC; } get loginType() { return this._cache.getStore(this._cache.keys.loginTypeKey); } } class nt extends Ze { async signIn() { this._cache.updatePersistence("local"); const { anonymousUuidKey: e2, refreshTokenKey: t2 } = this._cache.keys, n2 = this._cache.getStore(e2) || void 0, s2 = this._cache.getStore(t2) || void 0, r2 = await this._request.send("auth.signInAnonymously", { anonymous_uuid: n2, refresh_token: s2 }); if (r2.uuid && r2.refresh_token) { this._setAnonymousUUID(r2.uuid), this.setRefreshToken(r2.refresh_token), await this._request.refreshAccessToken(), qe(Ke), qe($e, { env: this.config.env, loginType: He.ANONYMOUS, persistence: "local" }); const e3 = new tt(this.config.env); return await e3.user.refresh(), e3; } throw new te({ message: "匿名登录失败" }); } async linkAndRetrieveDataWithTicket(e2) { const { anonymousUuidKey: t2, refreshTokenKey: n2 } = this._cache.keys, s2 = this._cache.getStore(t2), r2 = this._cache.getStore(n2), i2 = await this._request.send("auth.linkAndRetrieveDataWithTicket", { anonymous_uuid: s2, refresh_token: r2, ticket: e2 }); if (i2.refresh_token) return this._clearAnonymousUUID(), this.setRefreshToken(i2.refresh_token), await this._request.refreshAccessToken(), qe(Be, { env: this.config.env }), qe($e, { loginType: He.CUSTOM, persistence: "local" }), { credential: { refreshToken: i2.refresh_token } }; throw new te({ message: "匿名转化失败" }); } _setAnonymousUUID(e2) { const { anonymousUuidKey: t2, loginTypeKey: n2 } = this._cache.keys; this._cache.removeStore(t2), this._cache.setStore(t2, e2), this._cache.setStore(n2, He.ANONYMOUS); } _clearAnonymousUUID() { this._cache.removeStore(this._cache.keys.anonymousUuidKey); } } class st extends Ze { async signIn(e2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "ticket must be a string" }); const { refreshTokenKey: t2 } = this._cache.keys, n2 = await this._request.send("auth.signInWithTicket", { ticket: e2, refresh_token: this._cache.getStore(t2) || "" }); if (n2.refresh_token) return this.setRefreshToken(n2.refresh_token), await this._request.refreshAccessToken(), qe(Ke), qe($e, { env: this.config.env, loginType: He.CUSTOM, persistence: this.config.persistence }), await this.refreshUserInfo(), new tt(this.config.env); throw new te({ message: "自定义登录失败" }); } } class rt extends Ze { async signIn(e2, t2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "email must be a string" }); const { refreshTokenKey: n2 } = this._cache.keys, s2 = await this._request.send("auth.signIn", { loginType: "EMAIL", email: e2, password: t2, refresh_token: this._cache.getStore(n2) || "" }), { refresh_token: r2, access_token: i2, access_token_expire: o2 } = s2; if (r2) return this.setRefreshToken(r2), i2 && o2 ? this.setAccessToken(i2, o2) : await this._request.refreshAccessToken(), await this.refreshUserInfo(), qe(Ke), qe($e, { env: this.config.env, loginType: He.EMAIL, persistence: this.config.persistence }), new tt(this.config.env); throw s2.code ? new te({ code: s2.code, message: `邮箱登录失败: ${s2.message}` }) : new te({ message: "邮箱登录失败" }); } async activate(e2) { return this._request.send("auth.activateEndUserMail", { token: e2 }); } async resetPasswordWithToken(e2, t2) { return this._request.send("auth.resetPasswordWithToken", { token: e2, newPassword: t2 }); } } class it extends Ze { async signIn(e2, t2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "username must be a string" }); "string" != typeof t2 && (t2 = "", console.warn("password is empty")); const { refreshTokenKey: n2 } = this._cache.keys, s2 = await this._request.send("auth.signIn", { loginType: He.USERNAME, username: e2, password: t2, refresh_token: this._cache.getStore(n2) || "" }), { refresh_token: r2, access_token_expire: i2, access_token: o2 } = s2; if (r2) return this.setRefreshToken(r2), o2 && i2 ? this.setAccessToken(o2, i2) : await this._request.refreshAccessToken(), await this.refreshUserInfo(), qe(Ke), qe($e, { env: this.config.env, loginType: He.USERNAME, persistence: this.config.persistence }), new tt(this.config.env); throw s2.code ? new te({ code: s2.code, message: `用户名密码登录失败: ${s2.message}` }) : new te({ message: "用户名密码登录失败" }); } } class ot { constructor(e2) { this.config = e2, this._cache = Re(e2.env), this._request = Xe(e2.env), this._onAnonymousConverted = this._onAnonymousConverted.bind(this), this._onLoginTypeChanged = this._onLoginTypeChanged.bind(this), Me($e, this._onLoginTypeChanged); } get currentUser() { const e2 = this.hasLoginState(); return e2 && e2.user || null; } get loginType() { return this._cache.getStore(this._cache.keys.loginTypeKey); } anonymousAuthProvider() { return new nt(this.config); } customAuthProvider() { return new st(this.config); } emailAuthProvider() { return new rt(this.config); } usernameAuthProvider() { return new it(this.config); } async signInAnonymously() { return new nt(this.config).signIn(); } async signInWithEmailAndPassword(e2, t2) { return new rt(this.config).signIn(e2, t2); } signInWithUsernameAndPassword(e2, t2) { return new it(this.config).signIn(e2, t2); } async linkAndRetrieveDataWithTicket(e2) { this._anonymousAuthProvider || (this._anonymousAuthProvider = new nt(this.config)), Me(Be, this._onAnonymousConverted); return await this._anonymousAuthProvider.linkAndRetrieveDataWithTicket(e2); } async signOut() { if (this.loginType === He.ANONYMOUS) throw new te({ message: "匿名用户不支持登出操作" }); const { refreshTokenKey: e2, accessTokenKey: t2, accessTokenExpireKey: n2 } = this._cache.keys, s2 = this._cache.getStore(e2); if (!s2) return; const r2 = await this._request.send("auth.logout", { refresh_token: s2 }); return this._cache.removeStore(e2), this._cache.removeStore(t2), this._cache.removeStore(n2), qe(Ke), qe($e, { env: this.config.env, loginType: He.NULL, persistence: this.config.persistence }), r2; } async signUpWithEmailAndPassword(e2, t2) { return this._request.send("auth.signUpWithEmailAndPassword", { email: e2, password: t2 }); } async sendPasswordResetEmail(e2) { return this._request.send("auth.sendPasswordResetEmail", { email: e2 }); } onLoginStateChanged(e2) { Me(Ke, () => { const t3 = this.hasLoginState(); e2.call(this, t3); }); const t2 = this.hasLoginState(); e2.call(this, t2); } onLoginStateExpired(e2) { Me(je, e2.bind(this)); } onAccessTokenRefreshed(e2) { Me(We, e2.bind(this)); } onAnonymousConverted(e2) { Me(Be, e2.bind(this)); } onLoginTypeChanged(e2) { Me($e, () => { const t2 = this.hasLoginState(); e2.call(this, t2); }); } async getAccessToken() { return { accessToken: (await this._request.getAccessToken()).accessToken, env: this.config.env }; } hasLoginState() { const { refreshTokenKey: e2 } = this._cache.keys; return this._cache.getStore(e2) ? new tt(this.config.env) : null; } async isUsernameRegistered(e2) { if ("string" != typeof e2) throw new te({ code: "PARAM_ERROR", message: "username must be a string" }); const { data: t2 } = await this._request.send("auth.isUsernameRegistered", { username: e2 }); return t2 && t2.isRegistered; } getLoginState() { return Promise.resolve(this.hasLoginState()); } async signInWithTicket(e2) { return new st(this.config).signIn(e2); } shouldRefreshAccessToken(e2) { this._request._shouldRefreshAccessTokenHook = e2.bind(this); } getUserInfo() { return this._request.send("auth.getUserInfo", {}).then((e2) => e2.code ? e2 : { ...e2.data, requestId: e2.seqId }); } getAuthHeader() { const { refreshTokenKey: e2, accessTokenKey: t2 } = this._cache.keys, n2 = this._cache.getStore(e2); return { "x-cloudbase-credentials": this._cache.getStore(t2) + "/@@/" + n2 }; } _onAnonymousConverted(e2) { const { env: t2 } = e2.data; t2 === this.config.env && this._cache.updatePersistence(this.config.persistence); } _onLoginTypeChanged(e2) { const { loginType: t2, persistence: n2, env: s2 } = e2.data; s2 === this.config.env && (this._cache.updatePersistence(n2), this._cache.setStore(this._cache.keys.loginTypeKey, t2)); } } const at = function(e2, t2) { t2 = t2 || Ie(); const n2 = Xe(this.config.env), { cloudPath: s2, filePath: r2, onUploadProgress: i2, fileType: o2 = "image" } = e2; return n2.send("storage.getUploadMetadata", { path: s2 }).then((e3) => { const { data: { url: a2, authorization: c2, token: u2, fileId: h2, cosFileId: l2 }, requestId: d2 } = e3, p2 = { key: s2, signature: c2, "x-cos-meta-fileid": l2, success_action_status: "201", "x-cos-security-token": u2 }; n2.upload({ url: a2, data: p2, file: r2, name: s2, fileType: o2, onUploadProgress: i2 }).then((e4) => { 201 === e4.statusCode ? t2(null, { fileID: h2, requestId: d2 }) : t2(new te({ code: "STORAGE_REQUEST_FAIL", message: `STORAGE_REQUEST_FAIL: ${e4.data}` })); }).catch((e4) => { t2(e4); }); }).catch((e3) => { t2(e3); }), t2.promise; }, ct = function(e2, t2) { t2 = t2 || Ie(); const n2 = Xe(this.config.env), { cloudPath: s2 } = e2; return n2.send("storage.getUploadMetadata", { path: s2 }).then((e3) => { t2(null, e3); }).catch((e3) => { t2(e3); }), t2.promise; }, ut = function({ fileList: e2 }, t2) { if (t2 = t2 || Ie(), !e2 || !Array.isArray(e2)) return { code: "INVALID_PARAM", message: "fileList必须是非空的数组" }; for (let t3 of e2) if (!t3 || "string" != typeof t3) return { code: "INVALID_PARAM", message: "fileList的元素必须是非空的字符串" }; const n2 = { fileid_list: e2 }; return Xe(this.config.env).send("storage.batchDeleteFile", n2).then((e3) => { e3.code ? t2(null, e3) : t2(null, { fileList: e3.data.delete_list, requestId: e3.requestId }); }).catch((e3) => { t2(e3); }), t2.promise; }, ht = function({ fileList: e2 }, t2) { t2 = t2 || Ie(), e2 && Array.isArray(e2) || t2(null, { code: "INVALID_PARAM", message: "fileList必须是非空的数组" }); let n2 = []; for (let s3 of e2) "object" == typeof s3 ? (s3.hasOwnProperty("fileID") && s3.hasOwnProperty("maxAge") || t2(null, { code: "INVALID_PARAM", message: "fileList的元素必须是包含fileID和maxAge的对象" }), n2.push({ fileid: s3.fileID, max_age: s3.maxAge })) : "string" == typeof s3 ? n2.push({ fileid: s3 }) : t2(null, { code: "INVALID_PARAM", message: "fileList的元素必须是字符串" }); const s2 = { file_list: n2 }; return Xe(this.config.env).send("storage.batchGetDownloadUrl", s2).then((e3) => { e3.code ? t2(null, e3) : t2(null, { fileList: e3.data.download_list, requestId: e3.requestId }); }).catch((e3) => { t2(e3); }), t2.promise; }, lt = async function({ fileID: e2 }, t2) { const n2 = (await ht.call(this, { fileList: [{ fileID: e2, maxAge: 600 }] })).fileList[0]; if ("SUCCESS" !== n2.code) return t2 ? t2(n2) : new Promise((e3) => { e3(n2); }); const s2 = Xe(this.config.env); let r2 = n2.download_url; if (r2 = encodeURI(r2), !t2) return s2.download({ url: r2 }); t2(await s2.download({ url: r2 })); }, dt = function({ name: e2, data: t2, query: n2, parse: s2, search: r2 }, i2) { const o2 = i2 || Ie(); let a2; try { a2 = t2 ? JSON.stringify(t2) : ""; } catch (e3) { return Promise.reject(e3); } if (!e2) return Promise.reject(new te({ code: "PARAM_ERROR", message: "函数名不能为空" })); const c2 = { inQuery: n2, parse: s2, search: r2, function_name: e2, request_data: a2 }; return Xe(this.config.env).send("functions.invokeFunction", c2).then((e3) => { if (e3.code) o2(null, e3); else { let t3 = e3.data.response_data; if (s2) o2(null, { result: t3, requestId: e3.requestId }); else try { t3 = JSON.parse(e3.data.response_data), o2(null, { result: t3, requestId: e3.requestId }); } catch (e4) { o2(new te({ message: "response data must be json" })); } } return o2.promise; }).catch((e3) => { o2(e3); }), o2.promise; }, pt = { timeout: 15e3, persistence: "session" }, ft = {}; class gt { constructor(e2) { this.config = e2 || this.config, this.authObj = void 0; } init(e2) { switch (Ce.adapter || (this.requestClient = new Ce.adapter.reqClass({ timeout: e2.timeout || 5e3, timeoutMsg: `请求在${(e2.timeout || 5e3) / 1e3}s内未完成,已中断` })), this.config = { ...pt, ...e2 }, true) { case this.config.timeout > 6e5: console.warn("timeout大于可配置上限[10分钟],已重置为上限数值"), this.config.timeout = 6e5; break; case this.config.timeout < 100: console.warn("timeout小于可配置下限[100ms],已重置为下限数值"), this.config.timeout = 100; } return new gt(this.config); } auth({ persistence: e2 } = {}) { if (this.authObj) return this.authObj; const t2 = e2 || Ce.adapter.primaryStorage || pt.persistence; var n2; return t2 !== this.config.persistence && (this.config.persistence = t2), function(e3) { const { env: t3 } = e3; Ee[t3] = new Oe(e3), Le[t3] = new Oe({ ...e3, persistence: "local" }); }(this.config), n2 = this.config, Qe[n2.env] = new Ye(n2), this.authObj = new ot(this.config), this.authObj; } on(e2, t2) { return Me.apply(this, [e2, t2]); } off(e2, t2) { return Fe.apply(this, [e2, t2]); } callFunction(e2, t2) { return dt.apply(this, [e2, t2]); } deleteFile(e2, t2) { return ut.apply(this, [e2, t2]); } getTempFileURL(e2, t2) { return ht.apply(this, [e2, t2]); } downloadFile(e2, t2) { return lt.apply(this, [e2, t2]); } uploadFile(e2, t2) { return at.apply(this, [e2, t2]); } getUploadMetadata(e2, t2) { return ct.apply(this, [e2, t2]); } registerExtension(e2) { ft[e2.name] = e2; } async invokeExtension(e2, t2) { const n2 = ft[e2]; if (!n2) throw new te({ message: `扩展${e2} 必须先注册` }); return await n2.invoke(t2, this); } useAdapters(e2) { const { adapter: t2, runtime: n2 } = Ae(e2) || {}; t2 && (Ce.adapter = t2), n2 && (Ce.runtime = n2); } } var mt = new gt(); function yt(e2, t2, n2) { void 0 === n2 && (n2 = {}); var s2 = /\?/.test(t2), r2 = ""; for (var i2 in n2) "" === r2 ? !s2 && (t2 += "?") : r2 += "&", r2 += i2 + "=" + encodeURIComponent(n2[i2]); return /^http(s)?:\/\//.test(t2 += r2) ? t2 : "" + e2 + t2; } class _t { post(e2) { const { url: t2, data: n2, headers: s2 } = e2; return new Promise((e3, r2) => { ne.request({ url: yt("https:", t2), data: n2, method: "POST", header: s2, success(t3) { e3(t3); }, fail(e4) { r2(e4); } }); }); } upload(e2) { return new Promise((t2, n2) => { const { url: s2, file: r2, data: i2, headers: o2, fileType: a2 } = e2, c2 = ne.uploadFile({ url: yt("https:", s2), name: "file", formData: Object.assign({}, i2), filePath: r2, fileType: a2, header: o2, success(e3) { const n3 = { statusCode: e3.statusCode, data: e3.data || {} }; 200 === e3.statusCode && i2.success_action_status && (n3.statusCode = parseInt(i2.success_action_status, 10)), t2(n3); }, fail(e3) { n2(new Error(e3.errMsg || "uploadFile:fail")); } }); "function" == typeof e2.onUploadProgress && c2 && "function" == typeof c2.onProgressUpdate && c2.onProgressUpdate((t3) => { e2.onUploadProgress({ loaded: t3.totalBytesSent, total: t3.totalBytesExpectedToSend }); }); }); } } const wt = { setItem(e2, t2) { ne.setStorageSync(e2, t2); }, getItem: (e2) => ne.getStorageSync(e2), removeItem(e2) { ne.removeStorageSync(e2); }, clear() { ne.clearStorageSync(); } }; var vt = { genAdapter: function() { return { root: {}, reqClass: _t, localStorage: wt, primaryStorage: "local" }; }, isMatch: function() { return true; }, runtime: "uni_app" }; mt.useAdapters(vt); const It = mt, St = It.init; It.init = function(e2) { e2.env = e2.spaceId; const t2 = St.call(this, e2); t2.config.provider = "tencent", t2.config.spaceId = e2.spaceId; const n2 = t2.auth; return t2.auth = function(e3) { const t3 = n2.call(this, e3); return ["linkAndRetrieveDataWithTicket", "signInAnonymously", "signOut", "getAccessToken", "getLoginState", "signInWithTicket", "getUserInfo"].forEach((e4) => { var n3; t3[e4] = (n3 = t3[e4], function(e5) { e5 = e5 || {}; const { success: t4, fail: s2, complete: r2 } = ee(e5); if (!(t4 || s2 || r2)) return n3.call(this, e5); n3.call(this, e5).then((e6) => { t4 && t4(e6), r2 && r2(e6); }, (e6) => { s2 && s2(e6), r2 && r2(e6); }); }).bind(t3); }), t3; }, t2.customAuth = t2.auth, t2; }; var bt = It; var kt = class extends pe { getAccessToken() { return new Promise((e2, t2) => { const n2 = "Anonymous_Access_token"; this.setAccessToken(n2), e2(n2); }); } setupRequest(e2, t2) { const n2 = Object.assign({}, e2, { spaceId: this.config.spaceId, timestamp: Date.now() }), s2 = { "Content-Type": "application/json" }; "auth" !== t2 && (n2.token = this.accessToken, s2["x-basement-token"] = this.accessToken), s2["x-serverless-sign"] = de.sign(n2, this.config.clientSecret); const r2 = le(); s2["x-client-info"] = encodeURIComponent(JSON.stringify(r2)); const { token: i2 } = re(); return s2["x-client-token"] = i2, { url: this.config.requestUrl, method: "POST", data: n2, dataType: "json", header: JSON.parse(JSON.stringify(s2)) }; } uploadFileToOSS({ url: e2, formData: t2, name: n2, filePath: s2, fileType: r2, onUploadProgress: i2 }) { return new Promise((o2, a2) => { const c2 = this.adapter.uploadFile({ url: e2, formData: t2, name: n2, filePath: s2, fileType: r2, success(e3) { e3 && e3.statusCode < 400 ? o2(e3) : a2(new te({ code: "UPLOAD_FAILED", message: "文件上传失败" })); }, fail(e3) { a2(new te({ code: e3.code || "UPLOAD_FAILED", message: e3.message || e3.errMsg || "文件上传失败" })); } }); "function" == typeof i2 && c2 && "function" == typeof c2.onProgressUpdate && c2.onProgressUpdate((e3) => { i2({ loaded: e3.totalBytesSent, total: e3.totalBytesExpectedToSend }); }); }); } uploadFile({ filePath: e2, cloudPath: t2, fileType: n2 = "image", onUploadProgress: s2 }) { if (!t2) throw new te({ code: "CLOUDPATH_REQUIRED", message: "cloudPath不可为空" }); let r2; return this.getOSSUploadOptionsFromPath({ cloudPath: t2 }).then((t3) => { const { url: i2, formData: o2, name: a2 } = t3.result; r2 = t3.result.fileUrl; const c2 = { url: i2, formData: o2, name: a2, filePath: e2, fileType: n2 }; return this.uploadFileToOSS(Object.assign({}, c2, { onUploadProgress: s2 })); }).then(() => this.reportOSSUpload({ cloudPath: t2 })).then((t3) => new Promise((n3, s3) => { t3.success ? n3({ success: true, filePath: e2, fileID: r2 }) : s3(new te({ code: "UPLOAD_FAILED", message: "文件上传失败" })); })); } deleteFile({ fileList: e2 }) { const t2 = { method: "serverless.file.resource.delete", params: JSON.stringify({ fileList: e2 }) }; return this.request(this.setupRequest(t2)).then((e3) => { if (e3.success) return e3.result; throw new te({ code: "DELETE_FILE_FAILED", message: "删除文件失败" }); }); } getTempFileURL({ fileList: e2, maxAge: t2 } = {}) { if (!Array.isArray(e2) || 0 === e2.length) throw new te({ code: "INVALID_PARAM", message: "fileList的元素必须是非空的字符串" }); const n2 = { method: "serverless.file.resource.getTempFileURL", params: JSON.stringify({ fileList: e2, maxAge: t2 }) }; return this.request(this.setupRequest(n2)).then((e3) => { if (e3.success) return { fileList: e3.result.fileList.map((e4) => ({ fileID: e4.fileID, tempFileURL: e4.tempFileURL })) }; throw new te({ code: "GET_TEMP_FILE_URL_FAILED", message: "获取临时文件链接失败" }); }); } }; var At = { init(e2) { const t2 = new kt(e2), n2 = { signInAnonymously: function() { return t2.authorize(); }, getLoginState: function() { return Promise.resolve(false); } }; return t2.auth = function() { return n2; }, t2.customAuth = t2.auth, t2; } }, Ct = n(function(e2, t2) { e2.exports = r.enc.Hex; }); function Pt() { return "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(/[xy]/g, function(e2) { var t2 = 16 * Math.random() | 0; return ("x" === e2 ? t2 : 3 & t2 | 8).toString(16); }); } function Tt(e2 = "", t2 = {}) { const { data: n2, functionName: s2, method: r2, headers: i2, signHeaderKeys: o2 = [], config: a2 } = t2, c2 = Date.now(), u2 = Pt(), h2 = Object.assign({}, i2, { "x-from-app-id": a2.spaceAppId, "x-from-env-id": a2.spaceId, "x-to-env-id": a2.spaceId, "x-from-instance-id": c2, "x-from-function-name": s2, "x-client-timestamp": c2, "x-alipay-source": "client", "x-request-id": u2, "x-alipay-callid": u2, "x-trace-id": u2 }), l2 = ["x-from-app-id", "x-from-env-id", "x-to-env-id", "x-from-instance-id", "x-from-function-name", "x-client-timestamp"].concat(o2), [d2 = "", p2 = ""] = e2.split("?") || [], f2 = function(e3) { const t3 = e3.signedHeaders.join(";"), n3 = e3.signedHeaders.map((t4) => `${t4.toLowerCase()}:${e3.headers[t4]} `).join(""), s3 = we(e3.body).toString(Ct), r3 = `${e3.method.toUpperCase()} ${e3.path} ${e3.query} ${n3} ${t3} ${s3} `, i3 = we(r3).toString(Ct), o3 = `HMAC-SHA256 ${e3.timestamp} ${i3} `, a3 = ve(o3, e3.secretKey).toString(Ct); return `HMAC-SHA256 Credential=${e3.secretId}, SignedHeaders=${t3}, Signature=${a3}`; }({ path: d2, query: p2, method: r2, headers: h2, timestamp: c2, body: JSON.stringify(n2), secretId: a2.accessKey, secretKey: a2.secretKey, signedHeaders: l2.sort() }); return { url: `${a2.endpoint}${e2}`, headers: Object.assign({}, h2, { Authorization: f2 }) }; } function xt({ url: e2, data: t2, method: n2 = "POST", headers: s2 = {} }) { return new Promise((r2, i2) => { ne.request({ url: e2, method: n2, data: "object" == typeof t2 ? JSON.stringify(t2) : t2, header: s2, dataType: "json", complete: (e3 = {}) => { const t3 = s2["x-trace-id"] || ""; if (!e3.statusCode || e3.statusCode >= 400) { const { message: n3, errMsg: s3, trace_id: r3 } = e3.data || {}; return i2(new te({ code: "SYS_ERR", message: n3 || s3 || "request:fail", requestId: r3 || t3 })); } r2({ status: e3.statusCode, data: e3.data, headers: e3.header, requestId: t3 }); } }); }); } function Ot(e2, t2) { const { path: n2, data: s2, method: r2 = "GET" } = e2, { url: i2, headers: o2 } = Tt(n2, { functionName: "", data: s2, method: r2, headers: { "x-alipay-cloud-mode": "oss", "x-data-api-type": "oss", "x-expire-timestamp": Date.now() + 6e4 }, signHeaderKeys: ["x-data-api-type", "x-expire-timestamp"], config: t2 }); return xt({ url: i2, data: s2, method: r2, headers: o2 }).then((e3) => { const t3 = e3.data || {}; if (!t3.success) throw new te({ code: e3.errCode, message: e3.errMsg, requestId: e3.requestId }); return t3.data || {}; }).catch((e3) => { throw new te({ code: e3.errCode, message: e3.errMsg, requestId: e3.requestId }); }); } function Et(e2 = "") { const t2 = e2.trim().replace(/^cloud:\/\//, ""), n2 = t2.indexOf("/"); if (n2 <= 0) throw new te({ code: "INVALID_PARAM", message: "fileID不合法" }); const s2 = t2.substring(0, n2), r2 = t2.substring(n2 + 1); return s2 !== this.config.spaceId && console.warn("file ".concat(e2, " does not belong to env ").concat(this.config.spaceId)), r2; } function Lt(e2 = "") { return "cloud://".concat(this.config.spaceId, "/").concat(e2.replace(/^\/+/, "")); } class Rt { constructor(e2) { this.config = e2; } signedURL(e2, t2 = {}) { const n2 = `/ws/function/${e2}`, s2 = this.config.wsEndpoint.replace(/^ws(s)?:\/\//, ""), r2 = Object.assign({}, t2, { accessKeyId: this.config.accessKey, signatureNonce: Pt(), timestamp: "" + Date.now() }), i2 = [n2, ["accessKeyId", "authorization", "signatureNonce", "timestamp"].sort().map(function(e3) { return r2[e3] ? "".concat(e3, "=").concat(r2[e3]) : null; }).filter(Boolean).join("&"), `host:${s2}`].join("\n"), o2 = ["HMAC-SHA256", we(i2).toString(Ct)].join("\n"), a2 = ve(o2, this.config.secretKey).toString(Ct), c2 = Object.keys(r2).map((e3) => `${e3}=${encodeURIComponent(r2[e3])}`).join("&"); return `${this.config.wsEndpoint}${n2}?${c2}&signature=${a2}`; } } var Ut = class { constructor(e2) { if (["spaceId", "spaceAppId", "accessKey", "secretKey"].forEach((t2) => { if (!Object.prototype.hasOwnProperty.call(e2, t2)) throw new Error(`${t2} required`); }), e2.endpoint) { if ("string" != typeof e2.endpoint) throw new Error("endpoint must be string"); if (!/^https:\/\//.test(e2.endpoint)) throw new Error("endpoint must start with https://"); e2.endpoint = e2.endpoint.replace(/\/$/, ""); } this.config = Object.assign({}, e2, { endpoint: e2.endpoint || `https://${e2.spaceId}.api-hz.cloudbasefunction.cn`, wsEndpoint: e2.wsEndpoint || `wss://${e2.spaceId}.api-hz.cloudbasefunction.cn` }), this._websocket = new Rt(this.config); } callFunction(e2) { return function(e3, t2) { const { name: n2, data: s2, async: r2 = false } = e3, i2 = "POST", o2 = { "x-to-function-name": n2 }; r2 && (o2["x-function-invoke-type"] = "async"); const { url: a2, headers: c2 } = Tt("/functions/invokeFunction", { functionName: n2, data: s2, method: i2, headers: o2, signHeaderKeys: ["x-to-function-name"], config: t2 }); return xt({ url: a2, data: s2, method: i2, headers: c2 }).then((e4) => { let t3 = 0; if (r2) { const n3 = e4.data || {}; t3 = "200" === n3.errCode ? 0 : n3.errCode, e4.data = n3.data || {}, e4.errMsg = n3.errMsg; } if (0 !== t3) throw new te({ code: t3, message: e4.errMsg, requestId: e4.requestId }); return { errCode: t3, success: 0 === t3, requestId: e4.requestId, result: e4.data }; }).catch((e4) => { throw new te({ code: e4.errCode, message: e4.errMsg, requestId: e4.requestId }); }); }(e2, this.config); } uploadFileToOSS({ url: e2, filePath: t2, fileType: n2, formData: s2, onUploadProgress: r2 }) { return new Promise((i2, o2) => { const a2 = ne.uploadFile({ url: e2, filePath: t2, fileType: n2, formData: s2, name: "file", success(e3) { e3 && e3.statusCode < 400 ? i2(e3) : o2(new te({ code: "UPLOAD_FAILED", message: "文件上传失败" })); }, fail(e3) { o2(new te({ code: e3.code || "UPLOAD_FAILED", message: e3.message || e3.errMsg || "文件上传失败" })); } }); "function" == typeof r2 && a2 && "function" == typeof a2.onProgressUpdate && a2.onProgressUpdate((e3) => { r2({ loaded: e3.totalBytesSent, total: e3.totalBytesExpectedToSend }); }); }); } async uploadFile({ filePath: e2, cloudPath: t2 = "", fileType: n2 = "image", onUploadProgress: s2 }) { if ("string" !== f(t2)) throw new te({ code: "INVALID_PARAM", message: "cloudPath必须为字符串类型" }); if (!(t2 = t2.trim())) throw new te({ code: "INVALID_PARAM", message: "cloudPath不可为空" }); if (/:\/\//.test(t2)) throw new te({ code: "INVALID_PARAM", message: "cloudPath不合法" }); const r2 = await Ot({ path: "/".concat(t2.replace(/^\//, ""), "?post_url") }, this.config), { file_id: i2, upload_url: o2, form_data: a2 } = r2, c2 = a2 && a2.reduce((e3, t3) => (e3[t3.key] = t3.value, e3), {}); return this.uploadFileToOSS({ url: o2, filePath: e2, fileType: n2, formData: c2, onUploadProgress: s2 }).then(() => ({ fileID: i2 })); } async getTempFileURL({ fileList: e2 }) { return new Promise((t2, n2) => { (!e2 || e2.length < 0) && n2(new te({ errCode: "INVALID_PARAM", errMsg: "fileList不能为空数组" })), e2.length > 50 && n2(new te({ errCode: "INVALID_PARAM", errMsg: "fileList数组长度不能超过50" })); const s2 = []; for (const t3 of e2) { "string" !== f(t3) && n2(new te({ errCode: "INVALID_PARAM", errMsg: "fileList的元素必须是非空的字符串" })); const e3 = Et.call(this, t3); s2.push({ file_id: e3, expire: 600 }); } Ot({ path: "/?download_url", data: { file_list: s2 }, method: "POST" }, this.config).then((e3) => { const { file_list: n3 = [] } = e3; t2({ fileList: n3.map((e4) => ({ fileID: Lt.call(this, e4.file_id), tempFileURL: e4.download_url })) }); }).catch((e3) => n2(e3)); }); } async connectWebSocket(e2) { const { name: t2, query: n2 } = e2; return ne.connectSocket({ url: this._websocket.signedURL(t2, n2), complete: () => { } }); } }; var Nt = { init: (e2) => { e2.provider = "alipay"; const t2 = new Ut(e2); return t2.auth = function() { return { signInAnonymously: function() { return Promise.resolve(); }, getLoginState: function() { return Promise.resolve(true); } }; }, t2; } }; function Dt({ data: e2 }) { let t2; t2 = le(); const n2 = JSON.parse(JSON.stringify(e2 || {})); if (Object.assign(n2, { clientInfo: t2 }), !n2.uniIdToken) { const { token: e3 } = re(); e3 && (n2.uniIdToken = e3); } return n2; } async function Mt({ name: e2, data: t2 } = {}) { await this.__dev__.initLocalNetwork(); const { localAddress: n2, localPort: s2 } = this.__dev__, r2 = { aliyun: "aliyun", tencent: "tcb", alipay: "alipay" }[this.config.provider], i2 = this.config.spaceId, o2 = `http://${n2}:${s2}/system/check-function`, a2 = `http://${n2}:${s2}/cloudfunctions/${e2}`; return new Promise((t3, n3) => { ne.request({ method: "POST", url: o2, data: { name: e2, platform: C, provider: r2, spaceId: i2 }, timeout: 3e3, success(e3) { t3(e3); }, fail() { t3({ data: { code: "NETWORK_ERROR", message: "连接本地调试服务失败,请检查客户端是否和主机在同一局域网下,自动切换为已部署的云函数。" } }); } }); }).then(({ data: e3 } = {}) => { const { code: t3, message: n3 } = e3 || {}; return { code: 0 === t3 ? 0 : t3 || "SYS_ERR", message: n3 || "SYS_ERR" }; }).then(({ code: n3, message: s3 }) => { if (0 !== n3) { switch (n3) { case "MODULE_ENCRYPTED": console.error(`此云函数(${e2})依赖加密公共模块不可本地调试,自动切换为云端已部署的云函数`); break; case "FUNCTION_ENCRYPTED": console.error(`此云函数(${e2})已加密不可本地调试,自动切换为云端已部署的云函数`); break; case "ACTION_ENCRYPTED": console.error(s3 || "需要访问加密的uni-clientDB-action,自动切换为云端环境"); break; case "NETWORK_ERROR": console.error(s3 || "连接本地调试服务失败,请检查客户端是否和主机在同一局域网下"); break; case "SWITCH_TO_CLOUD": break; default: { const e3 = `检测本地调试服务出现错误:${s3},请检查网络环境或重启客户端再试`; throw console.error(e3), new Error(e3); } } return this._callCloudFunction({ name: e2, data: t2 }); } return new Promise((e3, n4) => { const s4 = Dt.call(this, { data: t2 }); ne.request({ method: "POST", url: a2, data: { provider: r2, platform: C, param: s4 }, success: ({ statusCode: t3, data: s5 } = {}) => !t3 || t3 >= 400 ? n4(new te({ code: s5.code || "SYS_ERR", message: s5.message || "request:fail" })) : e3({ result: s5 }), fail(e4) { n4(new te({ code: e4.code || e4.errCode || "SYS_ERR", message: e4.message || e4.errMsg || "request:fail" })); } }); }); }); } const qt = [{ rule: /fc_function_not_found|FUNCTION_NOT_FOUND/, content: ",云函数[{functionName}]在云端不存在,请检查此云函数名称是否正确以及该云函数是否已上传到服务空间", mode: "append" }]; var Ft = /[\\^$.*+?()[\]{}|]/g, Kt = RegExp(Ft.source); function jt(e2, t2, n2) { return e2.replace(new RegExp((s2 = t2) && Kt.test(s2) ? s2.replace(Ft, "\\$&") : s2, "g"), n2); var s2; } const Bt = "request", Wt = "response", Ht = "both"; const Tn = { code: 2e4, message: "System error" }, xn = { code: 20101, message: "Invalid client" }; function Ln(e2) { const { errSubject: t2, subject: n2, errCode: s2, errMsg: r2, code: i2, message: o2, cause: a2 } = e2 || {}; return new te({ subject: t2 || n2 || "uni-secure-network", code: s2 || i2 || Tn.code, message: r2 || o2, cause: a2 }); } let Un; function Fn({ secretType: e2 } = {}) { return e2 === Bt || e2 === Wt || e2 === Ht; } function Kn({ name: e2, data: t2 = {} } = {}) { return "DCloud-clientDB" === e2 && "encryption" === t2.redirectTo && "getAppClientKey" === t2.action; } function jn({ provider: e2, spaceId: t2, functionName: n2 } = {}) { const { appId: s2, uniPlatform: r2, osName: i2 } = ce(); let o2 = r2; "app" === r2 && (o2 = i2); const a2 = function({ provider: e3, spaceId: t3 } = {}) { const n3 = A; if (!n3) return {}; e3 = /* @__PURE__ */ function(e4) { return "tencent" === e4 ? "tcb" : e4; }(e3); const s3 = n3.find((n4) => n4.provider === e3 && n4.spaceId === t3); return s3 && s3.config; }({ provider: e2, spaceId: t2 }); if (!a2 || !a2.accessControl || !a2.accessControl.enable) return false; const c2 = a2.accessControl.function || {}, u2 = Object.keys(c2); if (0 === u2.length) return true; const h2 = function(e3, t3) { let n3, s3, r3; for (let i3 = 0; i3 < e3.length; i3++) { const o3 = e3[i3]; o3 !== t3 ? "*" !== o3 ? o3.split(",").map((e4) => e4.trim()).indexOf(t3) > -1 && (s3 = o3) : r3 = o3 : n3 = o3; } return n3 || s3 || r3; }(u2, n2); if (!h2) return false; if ((c2[h2] || []).find((e3 = {}) => e3.appId === s2 && (e3.platform || "").toLowerCase() === o2.toLowerCase())) return true; throw console.error(`此应用[appId: ${s2}, platform: ${o2}]不在云端配置的允许访问的应用列表内,参考:https://uniapp.dcloud.net.cn/uniCloud/secure-network.html#verify-client`), Ln(xn); } function $n({ functionName: e2, result: t2, logPvd: n2 }) { if (this.__dev__.debugLog && t2 && t2.requestId) { const s2 = JSON.stringify({ spaceId: this.config.spaceId, functionName: e2, requestId: t2.requestId }); console.log(`[${n2}-request]${s2}[/${n2}-request]`); } } function Bn(e2) { const t2 = e2.callFunction, n2 = function(n3) { const s2 = n3.name; n3.data = Dt.call(e2, { data: n3.data }); const r2 = { aliyun: "aliyun", tencent: "tcb", tcb: "tcb", alipay: "alipay" }[this.config.provider], i2 = Fn(n3), o2 = Kn(n3), a2 = i2 || o2; return t2.call(this, n3).then((e3) => (e3.errCode = 0, !a2 && $n.call(this, { functionName: s2, result: e3, logPvd: r2 }), Promise.resolve(e3)), (e3) => (!a2 && $n.call(this, { functionName: s2, result: e3, logPvd: r2 }), e3 && e3.message && (e3.message = function({ message: e4 = "", extraInfo: t3 = {}, formatter: n4 = [] } = {}) { for (let s3 = 0; s3 < n4.length; s3++) { const { rule: r3, content: i3, mode: o3 } = n4[s3], a3 = e4.match(r3); if (!a3) continue; let c2 = i3; for (let e5 = 1; e5 < a3.length; e5++) c2 = jt(c2, `{$${e5}}`, a3[e5]); for (const e5 in t3) c2 = jt(c2, `{${e5}}`, t3[e5]); return "replace" === o3 ? c2 : e4 + c2; } return e4; }({ message: `[${n3.name}]: ${e3.message}`, formatter: qt, extraInfo: { functionName: s2 } })), Promise.reject(e3))); }; e2.callFunction = function(t3) { const { provider: s2, spaceId: r2 } = e2.config, i2 = t3.name; let o2, a2; if (t3.data = t3.data || {}, e2.__dev__.debugInfo && !e2.__dev__.debugInfo.forceRemote && T ? (e2._callCloudFunction || (e2._callCloudFunction = n2, e2._callLocalFunction = Mt), o2 = Mt) : o2 = n2, o2 = o2.bind(e2), Kn(t3)) a2 = n2.call(e2, t3); else if (Fn(t3)) { a2 = new Un({ secretType: t3.secretType, uniCloudIns: e2 }).wrapEncryptDataCallFunction(n2.bind(e2))(t3); } else if (jn({ provider: s2, spaceId: r2, functionName: i2 })) { a2 = new Un({ secretType: t3.secretType, uniCloudIns: e2 }).wrapVerifyClientCallFunction(n2.bind(e2))(t3); } else a2 = o2(t3); return Object.defineProperty(a2, "result", { get: () => (console.warn("当前返回结果为Promise类型,不可直接访问其result属性,详情请参考:https://uniapp.dcloud.net.cn/uniCloud/faq?id=promise"), {}) }), a2.then((e3) => ("undefined" != typeof UTSJSONObject && (e3.result = new UTSJSONObject(e3.result)), e3)); }; } Un = class { constructor() { throw Ln({ message: `Platform ${C} is not enabled, please check whether secure network module is enabled in your manifest.json` }); } }; const Wn = Symbol("CLIENT_DB_INTERNAL"); function Hn(e2, t2) { return e2.then = "DoNotReturnProxyWithAFunctionNamedThen", e2._internalType = Wn, e2.inspect = null, e2.__v_raw = void 0, new Proxy(e2, { get(e3, n2, s2) { if ("_uniClient" === n2) return null; if ("symbol" == typeof n2) return e3[n2]; if (n2 in e3 || "string" != typeof n2) { const t3 = e3[n2]; return "function" == typeof t3 ? t3.bind(e3) : t3; } return t2.get(e3, n2, s2); } }); } function zn(e2) { return { on: (t2, n2) => { e2[t2] = e2[t2] || [], e2[t2].indexOf(n2) > -1 || e2[t2].push(n2); }, off: (t2, n2) => { e2[t2] = e2[t2] || []; const s2 = e2[t2].indexOf(n2); -1 !== s2 && e2[t2].splice(s2, 1); } }; } const Jn = ["db.Geo", "db.command", "command.aggregate"]; function Vn(e2, t2) { return Jn.indexOf(`${e2}.${t2}`) > -1; } function Gn(e2) { switch (f(e2 = se(e2))) { case "array": return e2.map((e3) => Gn(e3)); case "object": return e2._internalType === Wn || Object.keys(e2).forEach((t2) => { e2[t2] = Gn(e2[t2]); }), e2; case "regexp": return { $regexp: { source: e2.source, flags: e2.flags } }; case "date": return { $date: e2.toISOString() }; default: return e2; } } function Yn(e2) { return e2 && e2.content && e2.content.$method; } class Qn { constructor(e2, t2, n2) { this.content = e2, this.prevStage = t2 || null, this.udb = null, this._database = n2; } toJSON() { let e2 = this; const t2 = [e2.content]; for (; e2.prevStage; ) e2 = e2.prevStage, t2.push(e2.content); return { $db: t2.reverse().map((e3) => ({ $method: e3.$method, $param: Gn(e3.$param) })) }; } toString() { return JSON.stringify(this.toJSON()); } getAction() { const e2 = this.toJSON().$db.find((e3) => "action" === e3.$method); return e2 && e2.$param && e2.$param[0]; } getCommand() { return { $db: this.toJSON().$db.filter((e2) => "action" !== e2.$method) }; } get isAggregate() { let e2 = this; for (; e2; ) { const t2 = Yn(e2), n2 = Yn(e2.prevStage); if ("aggregate" === t2 && "collection" === n2 || "pipeline" === t2) return true; e2 = e2.prevStage; } return false; } get isCommand() { let e2 = this; for (; e2; ) { if ("command" === Yn(e2)) return true; e2 = e2.prevStage; } return false; } get isAggregateCommand() { let e2 = this; for (; e2; ) { const t2 = Yn(e2), n2 = Yn(e2.prevStage); if ("aggregate" === t2 && "command" === n2) return true; e2 = e2.prevStage; } return false; } getNextStageFn(e2) { const t2 = this; return function() { return Xn({ $method: e2, $param: Gn(Array.from(arguments)) }, t2, t2._database); }; } get count() { return this.isAggregate ? this.getNextStageFn("count") : function() { return this._send("count", Array.from(arguments)); }; } get remove() { return this.isCommand ? this.getNextStageFn("remove") : function() { return this._send("remove", Array.from(arguments)); }; } get() { return this._send("get", Array.from(arguments)); } get add() { return this.isCommand ? this.getNextStageFn("add") : function() { return this._send("add", Array.from(arguments)); }; } update() { return this._send("update", Array.from(arguments)); } end() { return this._send("end", Array.from(arguments)); } get set() { return this.isCommand ? this.getNextStageFn("set") : function() { throw new Error("JQL禁止使用set方法"); }; } _send(e2, t2) { const n2 = this.getAction(), s2 = this.getCommand(); if (s2.$db.push({ $method: e2, $param: Gn(t2) }), S) { const e3 = s2.$db.find((e4) => "collection" === e4.$method), t3 = e3 && e3.$param; t3 && 1 === t3.length && "string" == typeof e3.$param[0] && e3.$param[0].indexOf(",") > -1 && console.warn("检测到使用JQL语法联表查询时,未使用getTemp先过滤主表数据,在主表数据量大的情况下可能会查询缓慢。\n- 如何优化请参考此文档:https://uniapp.dcloud.net.cn/uniCloud/jql?id=lookup-with-temp \n- 如果主表数据量很小请忽略此信息,项目发行时不会出现此提示。"); } return this._database._callCloudFunction({ action: n2, command: s2 }); } } function Xn(e2, t2, n2) { return Hn(new Qn(e2, t2, n2), { get(e3, t3) { let s2 = "db"; return e3 && e3.content && (s2 = e3.content.$method), Vn(s2, t3) ? Xn({ $method: t3 }, e3, n2) : function() { return Xn({ $method: t3, $param: Gn(Array.from(arguments)) }, e3, n2); }; } }); } function Zn({ path: e2, method: t2 }) { return class { constructor() { this.param = Array.from(arguments); } toJSON() { return { $newDb: [...e2.map((e3) => ({ $method: e3 })), { $method: t2, $param: this.param }] }; } toString() { return JSON.stringify(this.toJSON()); } }; } function es(e2, t2 = {}) { return Hn(new e2(t2), { get: (e3, t3) => Vn("db", t3) ? Xn({ $method: t3 }, null, e3) : function() { return Xn({ $method: t3, $param: Gn(Array.from(arguments)) }, null, e3); } }); } class ts extends class { constructor({ uniClient: e2 = {}, isJQL: t2 = false } = {}) { this._uniClient = e2, this._authCallBacks = {}, this._dbCallBacks = {}, e2._isDefault && (this._dbCallBacks = L("_globalUniCloudDatabaseCallback")), t2 || (this.auth = zn(this._authCallBacks)), this._isJQL = t2, Object.assign(this, zn(this._dbCallBacks)), this.env = Hn({}, { get: (e3, t3) => ({ $env: t3 }) }), this.Geo = Hn({}, { get: (e3, t3) => Zn({ path: ["Geo"], method: t3 }) }), this.serverDate = Zn({ path: [], method: "serverDate" }), this.RegExp = Zn({ path: [], method: "RegExp" }); } getCloudEnv(e2) { if ("string" != typeof e2 || !e2.trim()) throw new Error("getCloudEnv参数错误"); return { $env: e2.replace("$cloudEnv_", "") }; } _callback(e2, t2) { const n2 = this._dbCallBacks; n2[e2] && n2[e2].forEach((e3) => { e3(...t2); }); } _callbackAuth(e2, t2) { const n2 = this._authCallBacks; n2[e2] && n2[e2].forEach((e3) => { e3(...t2); }); } multiSend() { const e2 = Array.from(arguments), t2 = e2.map((e3) => { const t3 = e3.getAction(), n2 = e3.getCommand(); if ("getTemp" !== n2.$db[n2.$db.length - 1].$method) throw new Error("multiSend只支持子命令内使用getTemp"); return { action: t3, command: n2 }; }); return this._callCloudFunction({ multiCommand: t2, queryList: e2 }); } } { _parseResult(e2) { return this._isJQL ? e2.result : e2; } _callCloudFunction({ action: e2, command: t2, multiCommand: n2, queryList: s2 }) { function r2(e3, t3) { if (n2 && s2) for (let n3 = 0; n3 < s2.length; n3++) { const r3 = s2[n3]; r3.udb && "function" == typeof r3.udb.setResult && (t3 ? r3.udb.setResult(t3) : r3.udb.setResult(e3.result.dataList[n3])); } } const i2 = this, o2 = this._isJQL ? "databaseForJQL" : "database"; function a2(e3) { return i2._callback("error", [e3]), M(q(o2, "fail"), e3).then(() => M(q(o2, "complete"), e3)).then(() => (r2(null, e3), Y(j, { type: W, content: e3 }), Promise.reject(e3))); } const c2 = M(q(o2, "invoke")), u2 = this._uniClient; return c2.then(() => u2.callFunction({ name: "DCloud-clientDB", type: h, data: { action: e2, command: t2, multiCommand: n2 } })).then((e3) => { const { code: t3, message: n3, token: s3, tokenExpired: c3, systemInfo: u3 = [] } = e3.result; if (u3) for (let e4 = 0; e4 < u3.length; e4++) { const { level: t4, message: n4, detail: s4 } = u3[e4], r3 = console["warn" === t4 ? "error" : t4] || console.log; let i3 = "[System Info]" + n4; s4 && (i3 = `${i3} 详细信息:${s4}`), r3(i3); } if (t3) { return a2(new te({ code: t3, message: n3, requestId: e3.requestId })); } e3.result.errCode = e3.result.errCode || e3.result.code, e3.result.errMsg = e3.result.errMsg || e3.result.message, s3 && c3 && (ie({ token: s3, tokenExpired: c3 }), this._callbackAuth("refreshToken", [{ token: s3, tokenExpired: c3 }]), this._callback("refreshToken", [{ token: s3, tokenExpired: c3 }]), Y(B, { token: s3, tokenExpired: c3 })); const h2 = [{ prop: "affectedDocs", tips: "affectedDocs不再推荐使用,请使用inserted/deleted/updated/data.length替代" }, { prop: "code", tips: "code不再推荐使用,请使用errCode替代" }, { prop: "message", tips: "message不再推荐使用,请使用errMsg替代" }]; for (let t4 = 0; t4 < h2.length; t4++) { const { prop: n4, tips: s4 } = h2[t4]; if (n4 in e3.result) { const t5 = e3.result[n4]; Object.defineProperty(e3.result, n4, { get: () => (console.warn(s4), t5) }); } } return function(e4) { return M(q(o2, "success"), e4).then(() => M(q(o2, "complete"), e4)).then(() => { r2(e4, null); const t4 = i2._parseResult(e4); return Y(j, { type: W, content: t4 }), Promise.resolve(t4); }); }(e3); }, (e3) => { /fc_function_not_found|FUNCTION_NOT_FOUND/g.test(e3.message) && console.warn("clientDB未初始化,请在web控制台保存一次schema以开启clientDB"); return a2(new te({ code: e3.code || "SYSTEM_ERROR", message: e3.message, requestId: e3.requestId })); }); } } const ns = "token无效,跳转登录页面", ss = "token过期,跳转登录页面", rs = { TOKEN_INVALID_TOKEN_EXPIRED: ss, TOKEN_INVALID_INVALID_CLIENTID: ns, TOKEN_INVALID: ns, TOKEN_INVALID_WRONG_TOKEN: ns, TOKEN_INVALID_ANONYMOUS_USER: ns }, is = { "uni-id-token-expired": ss, "uni-id-check-token-failed": ns, "uni-id-token-not-exist": ns, "uni-id-check-device-feature-failed": ns }; function os(e2, t2) { let n2 = ""; return n2 = e2 ? `${e2}/${t2}` : t2, n2.replace(/^\//, ""); } function as(e2 = [], t2 = "") { const n2 = [], s2 = []; return e2.forEach((e3) => { true === e3.needLogin ? n2.push(os(t2, e3.path)) : false === e3.needLogin && s2.push(os(t2, e3.path)); }), { needLoginPage: n2, notNeedLoginPage: s2 }; } function cs(e2) { return e2.split("?")[0].replace(/^\//, ""); } function us() { return function(e2) { let t2 = e2 && e2.$page && e2.$page.fullPath || ""; return t2 ? ("/" !== t2.charAt(0) && (t2 = "/" + t2), t2) : t2; }(function() { const e2 = getCurrentPages(); return e2[e2.length - 1]; }()); } function hs() { return cs(us()); } function ls(e2 = "", t2 = {}) { if (!e2) return false; if (!(t2 && t2.list && t2.list.length)) return false; const n2 = t2.list, s2 = cs(e2); return n2.some((e3) => e3.pagePath === s2); } const ds = !!e.uniIdRouter; const { loginPage: ps, routerNeedLogin: fs, resToLogin: gs, needLoginPage: ms, notNeedLoginPage: ys, loginPageInTabBar: _s } = function({ pages: t2 = [], subPackages: n2 = [], uniIdRouter: s2 = {}, tabBar: r2 = {} } = e) { const { loginPage: i2, needLogin: o2 = [], resToLogin: a2 = true } = s2, { needLoginPage: c2, notNeedLoginPage: u2 } = as(t2), { needLoginPage: h2, notNeedLoginPage: l2 } = function(e2 = []) { const t3 = [], n3 = []; return e2.forEach((e3) => { const { root: s3, pages: r3 = [] } = e3, { needLoginPage: i3, notNeedLoginPage: o3 } = as(r3, s3); t3.push(...i3), n3.push(...o3); }), { needLoginPage: t3, notNeedLoginPage: n3 }; }(n2); return { loginPage: i2, routerNeedLogin: o2, resToLogin: a2, needLoginPage: [...c2, ...h2], notNeedLoginPage: [...u2, ...l2], loginPageInTabBar: ls(i2, r2) }; }(); if (ms.indexOf(ps) > -1) throw new Error(`Login page [${ps}] should not be "needLogin", please check your pages.json`); function ws(e2) { const t2 = hs(); if ("/" === e2.charAt(0)) return e2; const [n2, s2] = e2.split("?"), r2 = n2.replace(/^\//, "").split("/"), i2 = t2.split("/"); i2.pop(); for (let e3 = 0; e3 < r2.length; e3++) { const t3 = r2[e3]; ".." === t3 ? i2.pop() : "." !== t3 && i2.push(t3); } return "" === i2[0] && i2.shift(), "/" + i2.join("/") + (s2 ? "?" + s2 : ""); } function vs(e2) { const t2 = cs(ws(e2)); return !(ys.indexOf(t2) > -1) && (ms.indexOf(t2) > -1 || fs.some((t3) => function(e3, t4) { return new RegExp(t4).test(e3); }(e2, t3))); } function Is({ redirect: e2 }) { const t2 = cs(e2), n2 = cs(ps); return hs() !== n2 && t2 !== n2; } function Ss({ api: e2, redirect: t2 } = {}) { if (!t2 || !Is({ redirect: t2 })) return; const n2 = function(e3, t3) { return "/" !== e3.charAt(0) && (e3 = "/" + e3), t3 ? e3.indexOf("?") > -1 ? e3 + `&uniIdRedirectUrl=${encodeURIComponent(t3)}` : e3 + `?uniIdRedirectUrl=${encodeURIComponent(t3)}` : e3; }(ps, t2); _s ? "navigateTo" !== e2 && "redirectTo" !== e2 || (e2 = "switchTab") : "switchTab" === e2 && (e2 = "navigateTo"); const s2 = { navigateTo: uni.navigateTo, redirectTo: uni.redirectTo, switchTab: uni.switchTab, reLaunch: uni.reLaunch }; setTimeout(() => { s2[e2]({ url: n2 }); }, 0); } function bs({ url: e2 } = {}) { const t2 = { abortLoginPageJump: false, autoToLoginPage: false }, n2 = function() { const { token: e3, tokenExpired: t3 } = re(); let n3; if (e3) { if (t3 < Date.now()) { const e4 = "uni-id-token-expired"; n3 = { errCode: e4, errMsg: is[e4] }; } } else { const e4 = "uni-id-check-token-failed"; n3 = { errCode: e4, errMsg: is[e4] }; } return n3; }(); if (vs(e2) && n2) { n2.uniIdRedirectUrl = e2; if (J($).length > 0) return setTimeout(() => { Y($, n2); }, 0), t2.abortLoginPageJump = true, t2; t2.autoToLoginPage = true; } return t2; } function ks() { !function() { const e3 = us(), { abortLoginPageJump: t2, autoToLoginPage: n2 } = bs({ url: e3 }); t2 || n2 && Ss({ api: "redirectTo", redirect: e3 }); }(); const e2 = ["navigateTo", "redirectTo", "reLaunch", "switchTab"]; for (let t2 = 0; t2 < e2.length; t2++) { const n2 = e2[t2]; uni.addInterceptor(n2, { invoke(e3) { const { abortLoginPageJump: t3, autoToLoginPage: s2 } = bs({ url: e3.url }); return t3 ? e3 : s2 ? (Ss({ api: n2, redirect: ws(e3.url) }), false) : e3; } }); } } function As() { this.onResponse((e2) => { const { type: t2, content: n2 } = e2; let s2 = false; switch (t2) { case "cloudobject": s2 = function(e3) { if ("object" != typeof e3) return false; const { errCode: t3 } = e3 || {}; return t3 in is; }(n2); break; case "clientdb": s2 = function(e3) { if ("object" != typeof e3) return false; const { errCode: t3 } = e3 || {}; return t3 in rs; }(n2); } s2 && function(e3 = {}) { const t3 = J($); Z().then(() => { const n3 = us(); if (n3 && Is({ redirect: n3 })) return t3.length > 0 ? Y($, Object.assign({ uniIdRedirectUrl: n3 }, e3)) : void (ps && Ss({ api: "navigateTo", redirect: n3 })); }); }(n2); }); } function Cs(e2) { !function(e3) { e3.onResponse = function(e4) { V(j, e4); }, e3.offResponse = function(e4) { G(j, e4); }; }(e2), function(e3) { e3.onNeedLogin = function(e4) { V($, e4); }, e3.offNeedLogin = function(e4) { G($, e4); }, ds && (L("_globalUniCloudStatus").needLoginInit || (L("_globalUniCloudStatus").needLoginInit = true, Z().then(() => { ks.call(e3); }), gs && As.call(e3))); }(e2), function(e3) { e3.onRefreshToken = function(e4) { V(B, e4); }, e3.offRefreshToken = function(e4) { G(B, e4); }; }(e2); } let Ps; const Ts = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", xs = /^(?:[A-Za-z\d+/]{4})*?(?:[A-Za-z\d+/]{2}(?:==)?|[A-Za-z\d+/]{3}=?)?$/; function Os() { const e2 = re().token || "", t2 = e2.split("."); if (!e2 || 3 !== t2.length) return { uid: null, role: [], permission: [], tokenExpired: 0 }; let n2; try { n2 = JSON.parse((s2 = t2[1], decodeURIComponent(Ps(s2).split("").map(function(e3) { return "%" + ("00" + e3.charCodeAt(0).toString(16)).slice(-2); }).join("")))); } catch (e3) { throw new Error("获取当前用户信息出错,详细错误信息为:" + e3.message); } var s2; return n2.tokenExpired = 1e3 * n2.exp, delete n2.exp, delete n2.iat, n2; } Ps = "function" != typeof atob ? function(e2) { if (e2 = String(e2).replace(/[\t\n\f\r ]+/g, ""), !xs.test(e2)) throw new Error("Failed to execute 'atob' on 'Window': The string to be decoded is not correctly encoded."); var t2; e2 += "==".slice(2 - (3 & e2.length)); for (var n2, s2, r2 = "", i2 = 0; i2 < e2.length; ) t2 = Ts.indexOf(e2.charAt(i2++)) << 18 | Ts.indexOf(e2.charAt(i2++)) << 12 | (n2 = Ts.indexOf(e2.charAt(i2++))) << 6 | (s2 = Ts.indexOf(e2.charAt(i2++))), r2 += 64 === n2 ? String.fromCharCode(t2 >> 16 & 255) : 64 === s2 ? String.fromCharCode(t2 >> 16 & 255, t2 >> 8 & 255) : String.fromCharCode(t2 >> 16 & 255, t2 >> 8 & 255, 255 & t2); return r2; } : atob; var Es = n(function(e2, t2) { Object.defineProperty(t2, "__esModule", { value: true }); const n2 = "chooseAndUploadFile:ok", s2 = "chooseAndUploadFile:fail"; function r2(e3, t3) { return e3.tempFiles.forEach((e4, n3) => { e4.name || (e4.name = e4.path.substring(e4.path.lastIndexOf("/") + 1)), t3 && (e4.fileType = t3), e4.cloudPath = Date.now() + "_" + n3 + e4.name.substring(e4.name.lastIndexOf(".")); }), e3.tempFilePaths || (e3.tempFilePaths = e3.tempFiles.map((e4) => e4.path)), e3; } function i2(e3, t3, { onChooseFile: s3, onUploadProgress: r3 }) { return t3.then((e4) => { if (s3) { const t4 = s3(e4); if (void 0 !== t4) return Promise.resolve(t4).then((t5) => void 0 === t5 ? e4 : t5); } return e4; }).then((t4) => false === t4 ? { errMsg: n2, tempFilePaths: [], tempFiles: [] } : function(e4, t5, s4 = 5, r4) { (t5 = Object.assign({}, t5)).errMsg = n2; const i3 = t5.tempFiles, o2 = i3.length; let a2 = 0; return new Promise((n3) => { for (; a2 < s4; ) c2(); function c2() { const s5 = a2++; if (s5 >= o2) return void (!i3.find((e5) => !e5.url && !e5.errMsg) && n3(t5)); const u2 = i3[s5]; e4.uploadFile({ provider: u2.provider, filePath: u2.path, cloudPath: u2.cloudPath, fileType: u2.fileType, cloudPathAsRealPath: u2.cloudPathAsRealPath, onUploadProgress(e5) { e5.index = s5, e5.tempFile = u2, e5.tempFilePath = u2.path, r4 && r4(e5); } }).then((e5) => { u2.url = e5.fileID, s5 < o2 && c2(); }).catch((e5) => { u2.errMsg = e5.errMsg || e5.message, s5 < o2 && c2(); }); } }); }(e3, t4, 5, r3)); } t2.initChooseAndUploadFile = function(e3) { return function(t3 = { type: "all" }) { return "image" === t3.type ? i2(e3, function(e4) { const { count: t4, sizeType: n3, sourceType: i3 = ["album", "camera"], extension: o2 } = e4; return new Promise((e5, a2) => { uni.chooseImage({ count: t4, sizeType: n3, sourceType: i3, extension: o2, success(t5) { e5(r2(t5, "image")); }, fail(e6) { a2({ errMsg: e6.errMsg.replace("chooseImage:fail", s2) }); } }); }); }(t3), t3) : "video" === t3.type ? i2(e3, function(e4) { const { camera: t4, compressed: n3, maxDuration: i3, sourceType: o2 = ["album", "camera"], extension: a2 } = e4; return new Promise((e5, c2) => { uni.chooseVideo({ camera: t4, compressed: n3, maxDuration: i3, sourceType: o2, extension: a2, success(t5) { const { tempFilePath: n4, duration: s3, size: i4, height: o3, width: a3 } = t5; e5(r2({ errMsg: "chooseVideo:ok", tempFilePaths: [n4], tempFiles: [{ name: t5.tempFile && t5.tempFile.name || "", path: n4, size: i4, type: t5.tempFile && t5.tempFile.type || "", width: a3, height: o3, duration: s3, fileType: "video", cloudPath: "" }] }, "video")); }, fail(e6) { c2({ errMsg: e6.errMsg.replace("chooseVideo:fail", s2) }); } }); }); }(t3), t3) : i2(e3, function(e4) { const { count: t4, extension: n3 } = e4; return new Promise((e5, i3) => { let o2 = uni.chooseFile; if ("undefined" != typeof wx && "function" == typeof wx.chooseMessageFile && (o2 = wx.chooseMessageFile), "function" != typeof o2) return i3({ errMsg: s2 + " 请指定 type 类型,该平台仅支持选择 image 或 video。" }); o2({ type: "all", count: t4, extension: n3, success(t5) { e5(r2(t5)); }, fail(e6) { i3({ errMsg: e6.errMsg.replace("chooseFile:fail", s2) }); } }); }); }(t3), t3); }; }; }), Ls = t$3(Es); const Rs = "manual"; function Us(e2) { return { props: { localdata: { type: Array, default: () => [] }, options: { type: [Object, Array], default: () => ({}) }, spaceInfo: { type: Object, default: () => ({}) }, collection: { type: [String, Array], default: "" }, action: { type: String, default: "" }, field: { type: String, default: "" }, orderby: { type: String, default: "" }, where: { type: [String, Object], default: "" }, pageData: { type: String, default: "add" }, pageCurrent: { type: Number, default: 1 }, pageSize: { type: Number, default: 20 }, getcount: { type: [Boolean, String], default: false }, gettree: { type: [Boolean, String], default: false }, gettreepath: { type: [Boolean, String], default: false }, startwith: { type: String, default: "" }, limitlevel: { type: Number, default: 10 }, groupby: { type: String, default: "" }, groupField: { type: String, default: "" }, distinct: { type: [Boolean, String], default: false }, foreignKey: { type: String, default: "" }, loadtime: { type: String, default: "auto" }, manual: { type: Boolean, default: false } }, data: () => ({ mixinDatacomLoading: false, mixinDatacomHasMore: false, mixinDatacomResData: [], mixinDatacomErrorMessage: "", mixinDatacomPage: {}, mixinDatacomError: null }), created() { this.mixinDatacomPage = { current: this.pageCurrent, size: this.pageSize, count: 0 }, this.$watch(() => { var e3 = []; return ["pageCurrent", "pageSize", "localdata", "collection", "action", "field", "orderby", "where", "getont", "getcount", "gettree", "groupby", "groupField", "distinct"].forEach((t2) => { e3.push(this[t2]); }), e3; }, (e3, t2) => { if (this.loadtime === Rs) return; let n2 = false; const s2 = []; for (let r2 = 2; r2 < e3.length; r2++) e3[r2] !== t2[r2] && (s2.push(e3[r2]), n2 = true); e3[0] !== t2[0] && (this.mixinDatacomPage.current = this.pageCurrent), this.mixinDatacomPage.size = this.pageSize, this.onMixinDatacomPropsChange(n2, s2); }); }, methods: { onMixinDatacomPropsChange(e3, t2) { }, mixinDatacomEasyGet({ getone: e3 = false, success: t2, fail: n2 } = {}) { this.mixinDatacomLoading || (this.mixinDatacomLoading = true, this.mixinDatacomErrorMessage = "", this.mixinDatacomError = null, this.mixinDatacomGet().then((n3) => { this.mixinDatacomLoading = false; const { data: s2, count: r2 } = n3.result; this.getcount && (this.mixinDatacomPage.count = r2), this.mixinDatacomHasMore = s2.length < this.pageSize; const i2 = e3 ? s2.length ? s2[0] : void 0 : s2; this.mixinDatacomResData = i2, t2 && t2(i2); }).catch((e4) => { this.mixinDatacomLoading = false, this.mixinDatacomErrorMessage = e4, this.mixinDatacomError = e4, n2 && n2(e4); })); }, mixinDatacomGet(t2 = {}) { let n2; t2 = t2 || {}, n2 = "undefined" != typeof __uniX && __uniX ? e2.databaseForJQL(this.spaceInfo) : e2.database(this.spaceInfo); const s2 = t2.action || this.action; s2 && (n2 = n2.action(s2)); const r2 = t2.collection || this.collection; n2 = Array.isArray(r2) ? n2.collection(...r2) : n2.collection(r2); const i2 = t2.where || this.where; i2 && Object.keys(i2).length && (n2 = n2.where(i2)); const o2 = t2.field || this.field; o2 && (n2 = n2.field(o2)); const a2 = t2.foreignKey || this.foreignKey; a2 && (n2 = n2.foreignKey(a2)); const c2 = t2.groupby || this.groupby; c2 && (n2 = n2.groupBy(c2)); const u2 = t2.groupField || this.groupField; u2 && (n2 = n2.groupField(u2)); true === (void 0 !== t2.distinct ? t2.distinct : this.distinct) && (n2 = n2.distinct()); const h2 = t2.orderby || this.orderby; h2 && (n2 = n2.orderBy(h2)); const l2 = void 0 !== t2.pageCurrent ? t2.pageCurrent : this.mixinDatacomPage.current, d2 = void 0 !== t2.pageSize ? t2.pageSize : this.mixinDatacomPage.size, p2 = void 0 !== t2.getcount ? t2.getcount : this.getcount, f2 = void 0 !== t2.gettree ? t2.gettree : this.gettree, g2 = void 0 !== t2.gettreepath ? t2.gettreepath : this.gettreepath, m2 = { getCount: p2 }, y2 = { limitLevel: void 0 !== t2.limitlevel ? t2.limitlevel : this.limitlevel, startWith: void 0 !== t2.startwith ? t2.startwith : this.startwith }; return f2 && (m2.getTree = y2), g2 && (m2.getTreePath = y2), n2 = n2.skip(d2 * (l2 - 1)).limit(d2).get(m2), n2; } } }; } function Ns(e2) { return function(t2, n2 = {}) { n2 = function(e3, t3 = {}) { return e3.customUI = t3.customUI || e3.customUI, e3.parseSystemError = t3.parseSystemError || e3.parseSystemError, Object.assign(e3.loadingOptions, t3.loadingOptions), Object.assign(e3.errorOptions, t3.errorOptions), "object" == typeof t3.secretMethods && (e3.secretMethods = t3.secretMethods), e3; }({ customUI: false, loadingOptions: { title: "加载中...", mask: true }, errorOptions: { type: "modal", retry: false } }, n2); const { customUI: s2, loadingOptions: r2, errorOptions: i2, parseSystemError: o2 } = n2, a2 = !s2; return new Proxy({}, { get(s3, c2) { switch (c2) { case "toString": return "[object UniCloudObject]"; case "toJSON": return {}; } return function({ fn: e3, interceptorName: t3, getCallbackArgs: n3 } = {}) { return async function(...s4) { const r3 = n3 ? n3({ params: s4 }) : {}; let i3, o3; try { return await M(q(t3, "invoke"), { ...r3 }), i3 = await e3(...s4), await M(q(t3, "success"), { ...r3, result: i3 }), i3; } catch (e4) { throw o3 = e4, await M(q(t3, "fail"), { ...r3, error: o3 }), o3; } finally { await M(q(t3, "complete"), o3 ? { ...r3, error: o3 } : { ...r3, result: i3 }); } }; }({ fn: async function s4(...h2) { let l2; a2 && uni.showLoading({ title: r2.title, mask: r2.mask }); const d2 = { name: t2, type: u, data: { method: c2, params: h2 } }; "object" == typeof n2.secretMethods && function(e3, t3) { const n3 = t3.data.method, s5 = e3.secretMethods || {}, r3 = s5[n3] || s5["*"]; r3 && (t3.secretType = r3); }(n2, d2); let p2 = false; try { l2 = await e2.callFunction(d2); } catch (e3) { p2 = true, l2 = { result: new te(e3) }; } const { errSubject: f2, errCode: g2, errMsg: m2, newToken: y2 } = l2.result || {}; if (a2 && uni.hideLoading(), y2 && y2.token && y2.tokenExpired && (ie(y2), Y(B, { ...y2 })), g2) { let e3 = m2; if (p2 && o2) { e3 = (await o2({ objectName: t2, methodName: c2, params: h2, errSubject: f2, errCode: g2, errMsg: m2 })).errMsg || m2; } if (a2) if ("toast" === i2.type) uni.showToast({ title: e3, icon: "none" }); else { if ("modal" !== i2.type) throw new Error(`Invalid errorOptions.type: ${i2.type}`); { const { confirm: t3 } = await async function({ title: e4, content: t4, showCancel: n4, cancelText: s5, confirmText: r3 } = {}) { return new Promise((i3, o3) => { uni.showModal({ title: e4, content: t4, showCancel: n4, cancelText: s5, confirmText: r3, success(e5) { i3(e5); }, fail() { i3({ confirm: false, cancel: true }); } }); }); }({ title: "提示", content: e3, showCancel: i2.retry, cancelText: "取消", confirmText: i2.retry ? "重试" : "确定" }); if (i2.retry && t3) return s4(...h2); } } const n3 = new te({ subject: f2, code: g2, message: m2, requestId: l2.requestId }); throw n3.detail = l2.result, Y(j, { type: z, content: n3 }), n3; } return Y(j, { type: z, content: l2.result }), l2.result; }, interceptorName: "callObject", getCallbackArgs: function({ params: e3 } = {}) { return { objectName: t2, methodName: c2, params: e3 }; } }); } }); }; } function Ds(e2) { return L("_globalUniCloudSecureNetworkCache__{spaceId}".replace("{spaceId}", e2.config.spaceId)); } async function Ms({ openid: e2, callLoginByWeixin: t2 = false } = {}) { Ds(this); throw new Error(`[SecureNetwork] API \`initSecureNetworkByWeixin\` is not supported on platform \`${C}\``); } async function qs(e2) { const t2 = Ds(this); return t2.initPromise || (t2.initPromise = Ms.call(this, e2).then((e3) => e3).catch((e3) => { throw delete t2.initPromise, e3; })), t2.initPromise; } function Fs(e2) { return function({ openid: t2, callLoginByWeixin: n2 = false } = {}) { return qs.call(e2, { openid: t2, callLoginByWeixin: n2 }); }; } function Ks(e2) { !function(e3) { he = e3; }(e2); } function js(e2) { const t2 = { getSystemInfo: uni.getSystemInfo, getPushClientId: uni.getPushClientId }; return function(n2) { return new Promise((s2, r2) => { t2[e2]({ ...n2, success(e3) { s2(e3); }, fail(e3) { r2(e3); } }); }); }; } class $s extends class { constructor() { this._callback = {}; } addListener(e2, t2) { this._callback[e2] || (this._callback[e2] = []), this._callback[e2].push(t2); } on(e2, t2) { return this.addListener(e2, t2); } removeListener(e2, t2) { if (!t2) throw new Error('The "listener" argument must be of type function. Received undefined'); const n2 = this._callback[e2]; if (!n2) return; const s2 = function(e3, t3) { for (let n3 = e3.length - 1; n3 >= 0; n3--) if (e3[n3] === t3) return n3; return -1; }(n2, t2); n2.splice(s2, 1); } off(e2, t2) { return this.removeListener(e2, t2); } removeAllListener(e2) { delete this._callback[e2]; } emit(e2, ...t2) { const n2 = this._callback[e2]; if (n2) for (let e3 = 0; e3 < n2.length; e3++) n2[e3](...t2); } } { constructor() { super(), this._uniPushMessageCallback = this._receivePushMessage.bind(this), this._currentMessageId = -1, this._payloadQueue = []; } init() { return Promise.all([js("getSystemInfo")(), js("getPushClientId")()]).then(([{ appId: e2 } = {}, { cid: t2 } = {}] = []) => { if (!e2) throw new Error("Invalid appId, please check the manifest.json file"); if (!t2) throw new Error("Invalid push client id"); this._appId = e2, this._pushClientId = t2, this._seqId = Date.now() + "-" + Math.floor(9e5 * Math.random() + 1e5), this.emit("open"), this._initMessageListener(); }, (e2) => { throw this.emit("error", e2), this.close(), e2; }); } async open() { return this.init(); } _isUniCloudSSE(e2) { if ("receive" !== e2.type) return false; const t2 = e2 && e2.data && e2.data.payload; return !(!t2 || "UNI_CLOUD_SSE" !== t2.channel || t2.seqId !== this._seqId); } _receivePushMessage(e2) { if (!this._isUniCloudSSE(e2)) return; const t2 = e2 && e2.data && e2.data.payload, { action: n2, messageId: s2, message: r2 } = t2; this._payloadQueue.push({ action: n2, messageId: s2, message: r2 }), this._consumMessage(); } _consumMessage() { for (; ; ) { const e2 = this._payloadQueue.find((e3) => e3.messageId === this._currentMessageId + 1); if (!e2) break; this._currentMessageId++, this._parseMessagePayload(e2); } } _parseMessagePayload(e2) { const { action: t2, messageId: n2, message: s2 } = e2; "end" === t2 ? this._end({ messageId: n2, message: s2 }) : "message" === t2 && this._appendMessage({ messageId: n2, message: s2 }); } _appendMessage({ messageId: e2, message: t2 } = {}) { this.emit("message", t2); } _end({ messageId: e2, message: t2 } = {}) { this.emit("end", t2), this.close(); } _initMessageListener() { uni.onPushMessage(this._uniPushMessageCallback); } _destroy() { uni.offPushMessage(this._uniPushMessageCallback); } toJSON() { return { appId: this._appId, pushClientId: this._pushClientId, seqId: this._seqId }; } close() { this._destroy(), this.emit("close"); } } async function Bs(e2, t2) { const n2 = `http://${e2}:${t2}/system/ping`; try { const e3 = await (s2 = { url: n2, timeout: 500 }, new Promise((e4, t3) => { ne.request({ ...s2, success(t4) { e4(t4); }, fail(e5) { t3(e5); } }); })); return !(!e3.data || 0 !== e3.data.code); } catch (e3) { return false; } var s2; } async function Ws(e2) { { const { osName: e3, osVersion: t3 } = ce(); "ios" === e3 && function(e4) { if (!e4 || "string" != typeof e4) return 0; const t4 = e4.match(/^(\d+)./); return t4 && t4[1] ? parseInt(t4[1]) : 0; }(t3) >= 14 && console.warn("iOS 14及以上版本连接uniCloud本地调试服务需要允许客户端查找并连接到本地网络上的设备(仅开发期间需要,发行后不需要)"); } const t2 = e2.__dev__; if (!t2.debugInfo) return; const { address: n2, servePort: s2 } = t2.debugInfo, { address: r2 } = await async function(e3, t3) { let n3; for (let s3 = 0; s3 < e3.length; s3++) { const r3 = e3[s3]; if (await Bs(r3, t3)) { n3 = r3; break; } } return { address: n3, port: t3 }; }(n2, s2); if (r2) return t2.localAddress = r2, void (t2.localPort = s2); const i2 = console["error"]; let o2 = ""; if ("remote" === t2.debugInfo.initialLaunchType ? (t2.debugInfo.forceRemote = true, o2 = "当前客户端和HBuilderX不在同一局域网下(或其他网络原因无法连接HBuilderX),uniCloud本地调试服务不对当前客户端生效。\n- 如果不使用uniCloud本地调试服务,请直接忽略此信息。\n- 如需使用uniCloud本地调试服务,请将客户端与主机连接到同一局域网下并重新运行到客户端。") : o2 = "无法连接uniCloud本地调试服务,请检查当前客户端是否与主机在同一局域网下。\n- 如需使用uniCloud本地调试服务,请将客户端与主机连接到同一局域网下并重新运行到客户端。", o2 += "\n- 如果在HBuilderX开启的状态下切换过网络环境,请重启HBuilderX后再试\n- 检查系统防火墙是否拦截了HBuilderX自带的nodejs\n- 检查是否错误的使用拦截器修改uni.request方法的参数", 0 === C.indexOf("mp-") && (o2 += "\n- 小程序中如何使用uniCloud,请参考:https://uniapp.dcloud.net.cn/uniCloud/publish.html#useinmp"), !t2.debugInfo.forceRemote) throw new Error(o2); i2(o2); } function Hs(e2) { e2._initPromiseHub || (e2._initPromiseHub = new v({ createPromise: function() { let t2 = Promise.resolve(); var n2; n2 = 1, t2 = new Promise((e3) => { setTimeout(() => { e3(); }, n2); }); const s2 = e2.auth(); return t2.then(() => s2.getLoginState()).then((e3) => e3 ? Promise.resolve() : s2.signInAnonymously()); } })); } const zs = { tcb: bt, tencent: bt, aliyun: fe, private: At, alipay: Nt }; let Js = new class { init(e2) { let t2 = {}; const n2 = zs[e2.provider]; if (!n2) throw new Error("未提供正确的provider参数"); t2 = n2.init(e2), function(e3) { const t3 = {}; e3.__dev__ = t3, t3.debugLog = "app" === C; const n3 = P; n3 && !n3.code && (t3.debugInfo = n3); const s2 = new v({ createPromise: function() { return Ws(e3); } }); t3.initLocalNetwork = function() { return s2.exec(); }; }(t2), Hs(t2), Bn(t2), function(e3) { const t3 = e3.uploadFile; e3.uploadFile = function(e4) { return t3.call(this, e4); }; }(t2), function(e3) { e3.database = function(t3) { if (t3 && Object.keys(t3).length > 0) return e3.init(t3).database(); if (this._database) return this._database; const n3 = es(ts, { uniClient: e3 }); return this._database = n3, n3; }, e3.databaseForJQL = function(t3) { if (t3 && Object.keys(t3).length > 0) return e3.init(t3).databaseForJQL(); if (this._databaseForJQL) return this._databaseForJQL; const n3 = es(ts, { uniClient: e3, isJQL: true }); return this._databaseForJQL = n3, n3; }; }(t2), function(e3) { e3.getCurrentUserInfo = Os, e3.chooseAndUploadFile = Ls.initChooseAndUploadFile(e3), Object.assign(e3, { get mixinDatacom() { return Us(e3); } }), e3.SSEChannel = $s, e3.initSecureNetworkByWeixin = Fs(e3), e3.setCustomClientInfo = Ks, e3.importObject = Ns(e3); }(t2); return ["callFunction", "uploadFile", "deleteFile", "getTempFileURL", "downloadFile", "chooseAndUploadFile"].forEach((e3) => { if (!t2[e3]) return; const n3 = t2[e3]; t2[e3] = function() { return n3.apply(t2, Array.from(arguments)); }, t2[e3] = (/* @__PURE__ */ function(e4, t3) { return function(n4) { let s2 = false; if ("callFunction" === t3) { const e5 = n4 && n4.type || c; s2 = e5 !== c; } const r2 = "callFunction" === t3 && !s2, i2 = this._initPromiseHub.exec(); n4 = n4 || {}; const { success: o2, fail: a2, complete: u2 } = ee(n4), h2 = i2.then(() => s2 ? Promise.resolve() : M(q(t3, "invoke"), n4)).then(() => e4.call(this, n4)).then((e5) => s2 ? Promise.resolve(e5) : M(q(t3, "success"), e5).then(() => M(q(t3, "complete"), e5)).then(() => (r2 && Y(j, { type: H, content: e5 }), Promise.resolve(e5))), (e5) => s2 ? Promise.reject(e5) : M(q(t3, "fail"), e5).then(() => M(q(t3, "complete"), e5)).then(() => (Y(j, { type: H, content: e5 }), Promise.reject(e5)))); if (!(o2 || a2 || u2)) return h2; h2.then((e5) => { o2 && o2(e5), u2 && u2(e5), r2 && Y(j, { type: H, content: e5 }); }, (e5) => { a2 && a2(e5), u2 && u2(e5), r2 && Y(j, { type: H, content: e5 }); }); }; }(t2[e3], e3)).bind(t2); }), t2.init = this.init, t2; } }(); (() => { const e2 = T; let t2 = {}; if (e2 && 1 === e2.length) t2 = e2[0], Js = Js.init(t2), Js._isDefault = true; else { const t3 = ["auth", "callFunction", "uploadFile", "deleteFile", "getTempFileURL", "downloadFile", "database", "getCurrentUSerInfo", "importObject"]; let n2; n2 = e2 && e2.length > 0 ? "应用有多个服务空间,请通过uniCloud.init方法指定要使用的服务空间" : "uni-app cli项目内使用uniCloud需要使用HBuilderX的运行菜单运行项目,且需要在uniCloud目录关联服务空间", t3.forEach((e3) => { Js[e3] = function() { return console.error(n2), Promise.reject(new te({ code: "SYS_ERR", message: n2 })); }; }); } Object.assign(Js, { get mixinDatacom() { return Us(Js); } }), Cs(Js), Js.addInterceptor = N, Js.removeInterceptor = D, Js.interceptObject = F; })(); var Vs = Js; const _sfc_main$D = { name: "uni-stat-select", mixins: [Vs.mixinDatacom || {}], data() { return { showSelector: false, current: "", mixinDatacomResData: [], apps: [], channels: [] }; }, props: { localdata: { type: Array, default() { return []; } }, value: { type: [String, Number], default: "" }, modelValue: { type: [String, Number], default: "" }, label: { type: String, default: "" }, placeholder: { type: String, default: "请选择" }, emptyTips: { type: String, default: "无选项" }, clear: { type: Boolean, default: true }, defItem: { type: Number, default: 0 }, disabled: { type: Boolean, default: false } }, created() { this.last = `${this.collection}_last_selected_option_value`; if (this.collection && !this.localdata.length) { this.mixinDatacomEasyGet(); } }, computed: { typePlaceholder() { const text = { "opendb-stat-app-versions": "版本", "opendb-app-channels": "渠道", "opendb-app-list": "应用" }; const common = this.placeholder; const placeholder = text[this.collection]; return placeholder ? common + placeholder : common; } }, watch: { localdata: { immediate: true, handler(val, old) { if (Array.isArray(val) && old !== val) { this.mixinDatacomResData = val; } } }, modelValue() { this.initDefVal(); }, mixinDatacomResData: { immediate: true, handler(val) { if (val.length) { this.initDefVal(); } } } }, methods: { initDefVal() { let defValue = ""; if ((this.value || this.value === 0) && !this.isDisabled(this.value)) { defValue = this.value; } else if ((this.modelValue || this.modelValue === 0) && !this.isDisabled(this.modelValue)) { defValue = this.modelValue; } else { let strogeValue; if (this.collection) { strogeValue = uni.getStorageSync(this.last); } if (strogeValue || strogeValue === 0) { defValue = strogeValue; } else { let defItem = ""; if (this.defItem > 0 && this.defItem < this.mixinDatacomResData.length) { defItem = this.mixinDatacomResData[this.defItem - 1].value; } defValue = defItem; } this.emit(defValue); } const def = this.mixinDatacomResData.find((item) => item.value === defValue); this.current = def ? this.formatItemName(def) : ""; }, /** * @param {[String, Number]} value * 判断用户给的 value 是否同时为禁用状态 */ isDisabled(value) { let isDisabled = false; this.mixinDatacomResData.forEach((item) => { if (item.value === value) { isDisabled = item.disable; } }); return isDisabled; }, clearVal() { this.emit(""); if (this.collection) { uni.removeStorageSync(this.last); } }, change(item) { if (!item.disable) { this.showSelector = false; this.current = this.formatItemName(item); this.emit(item.value); } }, emit(val) { this.$emit("change", val); this.$emit("input", val); this.$emit("update:modelValue", val); if (this.collection) { uni.setStorageSync(this.last, val); } }, toggleSelector() { if (this.disabled) { return; } this.showSelector = !this.showSelector; }, formatItemName(item) { let { text, value, channel_code } = item; channel_code = channel_code ? `(${channel_code})` : ""; return this.collection.indexOf("app-list") > 0 ? `${text}(${value})` : text ? text : `未命名${channel_code}`; } } }; function _sfc_render$C(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "uni-stat__select" }, [ $props.label ? (vue.openBlock(), vue.createElementBlock( "span", { key: 0, class: "uni-label-text hide-on-phone" }, vue.toDisplayString($props.label + ":"), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-stat-box", { "uni-stat__actived": $data.current }]) }, [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-select", { "uni-select--disabled": $props.disabled }]) }, [ vue.createElementVNode("view", { class: "uni-select__input-box", onClick: _cache[0] || (_cache[0] = (...args) => $options.toggleSelector && $options.toggleSelector(...args)) }, [ $data.current ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "uni-select__input-text" }, vue.toDisplayString($data.current), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock( "view", { key: 1, class: "uni-select__input-text uni-select__input-placeholder" }, vue.toDisplayString($options.typePlaceholder), 1 /* TEXT */ )), $data.current && $props.clear ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 2, type: "clear", color: "#c0c4cc", size: "24", onClick: $options.clearVal }, null, 8, ["onClick"])) : (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 3, type: $data.showSelector ? "top" : "bottom", size: "14", color: "#999" }, null, 8, ["type"])) ]), $data.showSelector ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "uni-select--mask", onClick: _cache[1] || (_cache[1] = (...args) => $options.toggleSelector && $options.toggleSelector(...args)) })) : vue.createCommentVNode("v-if", true), $data.showSelector ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "uni-select__selector" }, [ vue.createElementVNode("view", { class: "uni-popper__arrow" }), vue.createElementVNode("scroll-view", { "scroll-y": "true", class: "uni-select__selector-scroll" }, [ $data.mixinDatacomResData.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "uni-select__selector-empty" }, [ vue.createElementVNode( "text", null, vue.toDisplayString($props.emptyTips), 1 /* TEXT */ ) ])) : (vue.openBlock(true), vue.createElementBlock( vue.Fragment, { key: 1 }, vue.renderList($data.mixinDatacomResData, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-select__selector-item", key: index, onClick: ($event) => $options.change(item) }, [ vue.createElementVNode( "text", { class: vue.normalizeClass({ "uni-select__selector__disabled": item.disable }) }, vue.toDisplayString($options.formatItemName(item)), 3 /* TEXT, CLASS */ ) ], 8, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ])) : vue.createCommentVNode("v-if", true) ], 2 /* CLASS */ ) ], 2 /* CLASS */ ) ]); } const __easycom_0$3 = /* @__PURE__ */ _export_sfc(_sfc_main$D, [["render", _sfc_render$C], ["__scopeId", "data-v-123e8af9"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-data-select/uni-data-select.vue"]]); const popup = { data() { return {}; }, created() { this.popup = this.getParent(); }, methods: { /** * 获取父元素实例 */ getParent(name = "uniPopup") { let parent = this.$parent; let parentName = parent.$options.name; while (parentName !== name) { parent = parent.$parent; if (!parent) return false; parentName = parent.$options.name; } return parent; } } }; const _sfc_main$C = { name: "uniPopupMessage", mixins: [popup], props: { /** * 主题 success/warning/info/error 默认 success */ type: { type: String, default: "success" }, /** * 消息文字 */ message: { type: String, default: "" }, /** * 显示时间,设置为 0 则不会自动关闭 */ duration: { type: Number, default: 3e3 }, maskShow: { type: Boolean, default: false } }, data() { return {}; }, created() { this.popup.maskShow = this.maskShow; this.popup.messageChild = this; }, methods: { timerClose() { if (this.duration === 0) return; clearTimeout(this.timer); this.timer = setTimeout(() => { this.popup.close(); }, this.duration); } } }; function _sfc_render$B(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-popup-message" }, [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-popup-message__box fixforpc-width", "uni-popup__" + $props.type]) }, [ vue.renderSlot(_ctx.$slots, "default", {}, () => [ vue.createElementVNode( "text", { class: vue.normalizeClass(["uni-popup-message-text", "uni-popup__" + $props.type + "-text"]) }, vue.toDisplayString($props.message), 3 /* TEXT, CLASS */ ) ], true) ], 2 /* CLASS */ ) ]); } const __easycom_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$C, [["render", _sfc_render$B], ["__scopeId", "data-v-515d10d7"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-popup-message/uni-popup-message.vue"]]); const isObject = (val) => val !== null && typeof val === "object"; const defaultDelimiters = ["{", "}"]; class BaseFormatter { constructor() { this._caches = /* @__PURE__ */ Object.create(null); } interpolate(message, values, delimiters = defaultDelimiters) { if (!values) { return [message]; } let tokens = this._caches[message]; if (!tokens) { tokens = parse(message, delimiters); this._caches[message] = tokens; } return compile(tokens, values); } } const RE_TOKEN_LIST_VALUE = /^(?:\d)+/; const RE_TOKEN_NAMED_VALUE = /^(?:\w)+/; function parse(format, [startDelimiter, endDelimiter]) { const tokens = []; let position = 0; let text = ""; while (position < format.length) { let char = format[position++]; if (char === startDelimiter) { if (text) { tokens.push({ type: "text", value: text }); } text = ""; let sub = ""; char = format[position++]; while (char !== void 0 && char !== endDelimiter) { sub += char; char = format[position++]; } const isClosed = char === endDelimiter; const type = RE_TOKEN_LIST_VALUE.test(sub) ? "list" : isClosed && RE_TOKEN_NAMED_VALUE.test(sub) ? "named" : "unknown"; tokens.push({ value: sub, type }); } else { text += char; } } text && tokens.push({ type: "text", value: text }); return tokens; } function compile(tokens, values) { const compiled = []; let index = 0; const mode = Array.isArray(values) ? "list" : isObject(values) ? "named" : "unknown"; if (mode === "unknown") { return compiled; } while (index < tokens.length) { const token = tokens[index]; switch (token.type) { case "text": compiled.push(token.value); break; case "list": compiled.push(values[parseInt(token.value, 10)]); break; case "named": if (mode === "named") { compiled.push(values[token.value]); } else { { console.warn(`Type of token '${token.type}' and format of value '${mode}' don't match!`); } } break; case "unknown": { console.warn(`Detect 'unknown' type of token!`); } break; } index++; } return compiled; } const LOCALE_ZH_HANS = "zh-Hans"; const LOCALE_ZH_HANT = "zh-Hant"; const LOCALE_EN = "en"; const LOCALE_FR = "fr"; const LOCALE_ES = "es"; const hasOwnProperty = Object.prototype.hasOwnProperty; const hasOwn = (val, key) => hasOwnProperty.call(val, key); const defaultFormatter = new BaseFormatter(); function include(str, parts) { return !!parts.find((part) => str.indexOf(part) !== -1); } function startsWith(str, parts) { return parts.find((part) => str.indexOf(part) === 0); } function normalizeLocale(locale, messages2) { if (!locale) { return; } locale = locale.trim().replace(/_/g, "-"); if (messages2 && messages2[locale]) { return locale; } locale = locale.toLowerCase(); if (locale === "chinese") { return LOCALE_ZH_HANS; } if (locale.indexOf("zh") === 0) { if (locale.indexOf("-hans") > -1) { return LOCALE_ZH_HANS; } if (locale.indexOf("-hant") > -1) { return LOCALE_ZH_HANT; } if (include(locale, ["-tw", "-hk", "-mo", "-cht"])) { return LOCALE_ZH_HANT; } return LOCALE_ZH_HANS; } let locales = [LOCALE_EN, LOCALE_FR, LOCALE_ES]; if (messages2 && Object.keys(messages2).length > 0) { locales = Object.keys(messages2); } const lang = startsWith(locale, locales); if (lang) { return lang; } } class I18n { constructor({ locale, fallbackLocale, messages: messages2, watcher, formater: formater2 }) { this.locale = LOCALE_EN; this.fallbackLocale = LOCALE_EN; this.message = {}; this.messages = {}; this.watchers = []; if (fallbackLocale) { this.fallbackLocale = fallbackLocale; } this.formater = formater2 || defaultFormatter; this.messages = messages2 || {}; this.setLocale(locale || LOCALE_EN); if (watcher) { this.watchLocale(watcher); } } setLocale(locale) { const oldLocale = this.locale; this.locale = normalizeLocale(locale, this.messages) || this.fallbackLocale; if (!this.messages[this.locale]) { this.messages[this.locale] = {}; } this.message = this.messages[this.locale]; if (oldLocale !== this.locale) { this.watchers.forEach((watcher) => { watcher(this.locale, oldLocale); }); } } getLocale() { return this.locale; } watchLocale(fn) { const index = this.watchers.push(fn) - 1; return () => { this.watchers.splice(index, 1); }; } add(locale, message, override = true) { const curMessages = this.messages[locale]; if (curMessages) { if (override) { Object.assign(curMessages, message); } else { Object.keys(message).forEach((key) => { if (!hasOwn(curMessages, key)) { curMessages[key] = message[key]; } }); } } else { this.messages[locale] = message; } } f(message, values, delimiters) { return this.formater.interpolate(message, values, delimiters).join(""); } t(key, locale, values) { let message = this.message; if (typeof locale === "string") { locale = normalizeLocale(locale, this.messages); locale && (message = this.messages[locale]); } else { values = locale; } if (!hasOwn(message, key)) { console.warn(`Cannot translate the value of keypath ${key}. Use the value of keypath as default.`); return key; } return this.formater.interpolate(message[key], values).join(""); } } function watchAppLocale(appVm, i18n) { if (appVm.$watchLocale) { appVm.$watchLocale((newLocale) => { i18n.setLocale(newLocale); }); } else { appVm.$watch(() => appVm.$locale, (newLocale) => { i18n.setLocale(newLocale); }); } } function getDefaultLocale() { if (typeof uni !== "undefined" && uni.getLocale) { return uni.getLocale(); } if (typeof global !== "undefined" && global.getLocale) { return global.getLocale(); } return LOCALE_EN; } function initVueI18n(locale, messages2 = {}, fallbackLocale, watcher) { if (typeof locale !== "string") { const options = [ messages2, locale ]; locale = options[0]; messages2 = options[1]; } if (typeof locale !== "string") { locale = getDefaultLocale(); } if (typeof fallbackLocale !== "string") { fallbackLocale = typeof __uniConfig !== "undefined" && __uniConfig.fallbackLocale || LOCALE_EN; } const i18n = new I18n({ locale, fallbackLocale, messages: messages2, watcher }); let t2 = (key, values) => { if (typeof getApp !== "function") { t2 = function(key2, values2) { return i18n.t(key2, values2); }; } else { let isWatchedAppLocale = false; t2 = function(key2, values2) { const appVm = getApp().$vm; if (appVm) { appVm.$locale; if (!isWatchedAppLocale) { isWatchedAppLocale = true; watchAppLocale(appVm, i18n); } } return i18n.t(key2, values2); }; } return t2(key, values); }; return { i18n, f(message, values, delimiters) { return i18n.f(message, values, delimiters); }, t(key, values) { return t2(key, values); }, add(locale2, message, override = true) { return i18n.add(locale2, message, override); }, watch(fn) { return i18n.watchLocale(fn); }, getLocale() { return i18n.getLocale(); }, setLocale(newLocale) { return i18n.setLocale(newLocale); } }; } const en$2 = { "uni-load-more.contentdown": "Pull up to show more", "uni-load-more.contentrefresh": "loading...", "uni-load-more.contentnomore": "No more data" }; const zhHans$2 = { "uni-load-more.contentdown": "上拉显示更多", "uni-load-more.contentrefresh": "正在加载...", "uni-load-more.contentnomore": "没有更多数据了" }; const zhHant$2 = { "uni-load-more.contentdown": "上拉顯示更多", "uni-load-more.contentrefresh": "正在加載...", "uni-load-more.contentnomore": "沒有更多數據了" }; const messages$2 = { en: en$2, "zh-Hans": zhHans$2, "zh-Hant": zhHant$2 }; let platform; setTimeout(() => { platform = uni.getSystemInfoSync().platform; }, 16); const { t: t$2 } = initVueI18n(messages$2); const _sfc_main$B = { name: "UniLoadMore", emits: ["clickLoadMore"], props: { status: { // 上拉的状态:more-loading前;loading-loading中;noMore-没有更多了 type: String, default: "more" }, showIcon: { type: Boolean, default: true }, iconType: { type: String, default: "auto" }, iconSize: { type: Number, default: 24 }, color: { type: String, default: "#777777" }, contentText: { type: Object, default() { return { contentdown: "", contentrefresh: "", contentnomore: "" }; } }, showText: { type: Boolean, default: true } }, data() { return { webviewHide: false, platform, imgBase64: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoV2luZG93cykiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QzlBMzU3OTlEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QzlBMzU3OUFEOUM0MTFFOUI0NTZDNERBQURBQzI4RkUiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpDOUEzNTc5N0Q5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpDOUEzNTc5OEQ5QzQxMUU5QjQ1NkM0REFBREFDMjhGRSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pt+ALSwAAA6CSURBVHja1FsLkFZVHb98LM+F5bHL8khA1iSeiyQBCRM+YGqKUnnJTDLGI0BGZlKDIU2MMglUiDApEZvSsZnQtBRJtKwQNKQMFYeRDR10WOLd8ljYXdh+v8v5fR3Od+797t1dnOnO/Ofce77z+J//+b/P+ZqtXbs2sJ9MJhNUV1cHJ06cCJo3bx7EPc2aNcvpy7pWrVoF+/fvDyoqKoI2bdoE9fX1F7TjN8a+EXBn/fkfvw942Tf+wYMHg9mzZwfjxo0LDhw4EPa1x2MbFw/fOGfPng1qa2tzcCkILsLDydq2bRsunpOTMM7TD/W/tZDZhPdeKD+yGxHhdu3aBV27dg3OnDlzMVANMheLAO3btw8KCwuDmpoaX5OxbgUIMEq7K8IcPnw4KCsrC/r37x8cP378/4cAXAB3vqSkJMuiDhTkw+XcuXNhOWbMmKBly5YhUT8xArhyFvP0BfwRsAuwxJZJsm/nzp2DTp06he/OU+cZ64K6o0ePBkOHDg2GDx8e6gEbJ5Q/NHNuAJQ1hgBeHUDlR7nVTkY8rQAvAi4z34vR/mPs1FoRsaCgIJThI0eOBC1atEiFGGV+5MiRoS45efJkqFjJFXV1dQuA012m2WcwTw98fy6CqBdsaiIO4CScrGPHjvk4odhavPquRtFWXEC25VgkREKOCh/qDSq+vn37htzD/mZTOmOc5U7zKzBPEedygWshcDyWvs30igAbU+6oyMgJBCFhwQE0fccxN60Ay9iebbjoDh06hMowjQxT4fXq1SskArmHZpkArvixp/kWzHdMeArExSJEaiXIjjRjRJ4DaAGWpibLzXN3Fm1vA5teBgh3j1Rv3bp1YgKwPdmf2p9zcyNYYgPKMfY0T5f5nNYdw158nJ8QawW4CLKwiOBSEgO/hok2eBydR+3dYH+PLxA5J8Vv0KBBwenTp0P2JWAx6+yFEBfs8lMY+y0SWMBNI9E4ThKi58VKTg3FQZS1RQF1cz27eC0QHMu+3E0SkUowjhVt5VdaWhp07949ZHv2Qd1EjDXM2cla1M0nl3GxAs3J9yREzyTdFVKVFOaE9qRA8GM0WebRuo9JGZKA7Mv2SeS/Z8+eoQ9BArMfFrLGo6jvxbhHbJZnKX2Rzz1O7QhJJ9Cs2ZMaWIyq/zhdeqPNfIoHd58clIQD+JSXl4dKlyIAuBdVXZwFVWKspSSoxE++h8x4k3uCnEhE4I5KwRiFWGOU0QWKiCYLbdoRMRKAu2kQ9vkfLU6dOhX06NEjlH+yMRZSinnuyWnYosVcji8CEA/6Cg2JF+IIUBqnGKUTCNwtwBN4f89RiK1R96DEgO2o0NDmtEdvVFdVVYV+P3UAPUEs6GFwV3PHmXkD4vh74iDFJysVI/MlaQhwKeBNTLYX5VuA8T4/gZxA4MRGFxDB6R7OmYPfyykGRJbyie+XnGYnQIC/coH9+vULiYrxrkL9ZA9+0ykaHIfEpM7ge8TiJ2CsHYwyMfafAF1yCGBHYIbCVDjDjKt7BeB51D+LgQa6OkG7IDYEEtvQ7lnXLKLtLdLuJBpE4gPUXcW2+PkZwOex+4cGDhwYDBkyRL7/HFcEwUGPo/8uWRUpYnfxGHco8HkewLHLyYmAawAPuIFZxhOpDfJQ8gbUv41yORAptMWBNr6oqMhWird5+u+iHmBb2nhjDV7HWBNQTgK8y11l5NetWzc5ULscAtSj7nbNI0skhWeUZCc0W4nyH/jO4Vz0u1IeYhbk4AiwM6tjxIWByHsoZ9qcIBPJd/y+DwPfBESOmCa/QF3WiZHucLlEDpNxcNhmheEOPgdQNx6/VZFQzFZ5TN08AHXQt2Ii3EdyFuUsPtTcGPhW5iMiCNELvz+Gdn9huG4HUJaW/w3g0wxV0XaG7arG2WeKiUWYM4Y7GO5ezshTARbbWGw/DvXkpp/ivVvE0JVoMxN4rpGzJMhE5Pl+xlATsDIqikP9F9D2z3h9nOksEUFhK+qO4rcPkoalMQ/HqJLIyb3F3JdjrCcw1yZ8joyJLR5gCo54etlag7qIoeNh1N1BRYj3DTFJ0elotxPlVzkGuYAmL0VSJVGAJA41c4Z6A3BzTLfn0HYwYKEI6CUAMzZEWvLsIcQOo1AmmyyM72nHJCfYsogflGV6jEk9vyQZXSuq6w4c16NsGcGZbwOPr+H1RkOk2LEzjNepxQkihHSCQ4ynAYNRx2zMKV92CQMWqj8J0BRE8EShxRFN6YrfCRhC0x3r/Zm4IbQCcmJoV0kMamllccR6FjHqUC5F2R/wS2dcymOlfAKOS4KmzQb5cpNC2MC7JhVn5wjXoJ44rYhLh8n0eXOCorJxa7POjbSlCGVczr34/RsAmrcvo9s+wGp3tzVhntxiXiJ4nvEYb4FJkf0O8HocAePmLvCxnL0AORraVekJk6TYjDabRVXfRE2lCN1h6ZQRN1+InUbsCpKwoBZHh0dODN9JBCUffItXxEavTQkUtnfTVAplCWL3JISz29h4NjotnuSsQKJCk8dF+kJR6RARjrqFVmfPnj3ZbK8cIJ0msd6jgHPGtfVTQ8VLmlvh4mct9sobRmPic0DyDQQnx/NlfYUgyz59+oScsH379pAwXABD32nTpoUHIToESeI5mnbE/UqDdyLcafEBf2MCqgC7NwxIbMREJQ0g4D4sfJwnD+AmRrII05cfMWJE+L1169bQr+fip06dGp4oJ83lmYd5wj/EmMa4TaHivo4EeCguYZBnkB5g2aWA69OIEnUHOaGysjIYMGBAMGnSpODYsWPZwCpFmm4lNq+4gSLQA7jcX8DwtjEyRC8wjabnXEx9kfWnTJkSJkAo90xpJVV+FmcVNeYAF5zWngS4C4O91MBxmAv8blLEpbjI5sz9MTdAhcgkCT1RO8mZkAjfiYpTEvStAS53Uw1vAiUGgZ3GpuQEYvoiBqlIan7kSDHnTwJQFNiPu0+5VxCVYhcZIjNrdXUDdp+Eq5AZ3Gkg8QAyVZRZIk4Tl4QAbF9cXJxNYZMAtAokgs4BrNxEpCtteXg7DDTMDKYNSuQdKsnJBek7HxewvxaosWxLYXtw+cJp18217wql4aKCfBNoEu0O5VU+PhctJ0YeXD4C6JQpyrlpSLTojpGGGN5YwNziChdIZLk4lvLcFJ9jMX3QdiImY9bmGQU+TRUL5CHITTRlgF8D9ouD1MfmLoEPl5xokIumZ2cfgMpHt47IW9N64Hsh7wQYYjyIugWuF5fCqYncXRd5vPMWyizzvhi/32+nvG0dZc9vR6fZOu0md5e+uC408FvKSIOZwXlGvxPv95izA2Vtvg1xKFWARI+vMX66HUhpQQb643uW1bSjuTWyw2SBvDrBvjFic1eGGlz5esq3ko9uSIlBRqPuFcCv8F4WIcN12nVaBd0SaYwI6PDDImR11JkqgHcPmQssjxIn6bUshygDFJUTxPMpHk+jfjPgupgdnYV2R/g7xSjtpah8RJBewhwf0gGK6XI92u4wXFEU40afJ4DN4h5LcAd+40HI3JgJecuT0c062W0i2hQJUTcxan3/CMW1PF2K6bbA+Daz4xRs1D3Br1Cm0OihKCqizW78/nXAF/G5TXrEcVzaNMH6CyMswqsAHqDyDLEyou8lwOXnKF8DjI6KjV3KzMBiXkDH8ij/H214J5A596ekrZ3F0zXlWeL7+P5eUrNo3/QwC15uxthuzidy7DzKRwEDaAViiDgKbTbz7CJnzo0bN7pIfIiid8SuPwn25o3QCmpnyjlZkyxPP8EomCJzrGb7GJMx7tNsq4MT2xMUYaiErZOluTzKsnz3gwCeCZyVRZJfYplNEokEjwrPtxlxjeYAk+F1F74VAzPxQRNYYdtpOUvWs8J1sGhBJMNsb7igN8plJs1eSmLIhLKE4rvaCX27gOhLpLOsIzJ7qn/i+wZzcvSOZ23/du8TZjwV8zHIXoP4R3ifBxiFz1dcVpa3aPntPE+c6TmIWE9EtcMmAcPdWAhYhAXxcLOQi9L1WhD1Sc8p1d2oL7XGiRKp8F4A2i8K/nfI+y/gsTDJ/YC/8+AD5Uh04KHiGl+cIFPnBDDrPMjwRGkLXyxO4VGbfQWnDH2v0bVWE3C9QOXlepbgjEfIJQI6XDG3z5ahD9cw2pS78ipB85wyScNTvsVzlzzhL8/jRrnmVjfFJK/m3m4nj9vbgQTguT8XZTjsm672R5uJKEaQmBI/c58gyus8ZDagLpEVSJBIyHp4jn++xqPV71OgQgJYEWOtZ/haxRtKmWOBu8xdBLftWltsY84zE6WIEy/eIOWL+BaayMx+KHtL7EAkqdNDLiEXmEMUHniedtJqg9HmZtfvt26vNi0BdG3Ft3g8ZOf7PAu59TxtzivLNIekyi+wD1i8CuUiD9FXAa8C+/xS3JPmZnomyc7H+fb4/Se0bk41Fel621r4cgVxbq91V4jVqwB7HTe2M7jgB+QWHavZkDRPmZcASoZEmBx6i75bGjPcMdL4/VKGFAGWZkGzPG0XAbdL9A81G5LOmUnC9hHKJeO7dcUMjblSl12867ElFTtaGl20xvvLGPdVz/8TVuU7y0x1PG7vtNg24oz9Uo/Z412++VFWI7Fcog9tu9Lm6gvRmIPv9x1xmQAu6RDkXtbOtlGEmpgD5Nvnyc0dcv0EE6cfdi1HmhMf9wDF3k3gtRvEedhxjpgfqPb9PU9iEJHnyOUA7bQUXh6kq/D7l2iTjWv7XOD530BDr8jIrus+srXjt4MzumJMHuTsBa63YKE1+RR5lBjEikCCnWKWiHdzOgKO+nRIBAF88za/IFmJ3eMZov4CYxGBabcpGL8EYx+SeMXJeRwHNsV/h+vdxeuhEpN3ZyNY78Gm2fknJxVGhyjixPiQvVkNzT1elD9Py/aTAL64Hb9vcYmC9zfdXdT/C1LeGbg4rnBaAihDFJH12W5ulfNCNe/xTsP3bp8ikzJs5BF+5PNfAQYAPaseTdsEcaYAAAAASUVORK5CYII=" }; }, computed: { iconSnowWidth() { return (Math.floor(this.iconSize / 24) || 1) * 2; }, contentdownText() { return this.contentText.contentdown || t$2("uni-load-more.contentdown"); }, contentrefreshText() { return this.contentText.contentrefresh || t$2("uni-load-more.contentrefresh"); }, contentnomoreText() { return this.contentText.contentnomore || t$2("uni-load-more.contentnomore"); } }, mounted() { var pages2 = getCurrentPages(); var page = pages2[pages2.length - 1]; var currentWebview = page.$getAppWebview(); currentWebview.addEventListener("hide", () => { this.webviewHide = true; }); currentWebview.addEventListener("show", () => { this.webviewHide = false; }); }, methods: { onClick() { this.$emit("clickLoadMore", { detail: { status: this.status } }); } } }; function _sfc_render$A(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-load-more", onClick: _cache[0] || (_cache[0] = (...args) => $options.onClick && $options.onClick(...args)) }, [ !$data.webviewHide && ($props.iconType === "circle" || $props.iconType === "auto" && $data.platform === "android") && $props.status === "loading" && $props.showIcon ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, style: vue.normalizeStyle({ width: $props.iconSize + "px", height: $props.iconSize + "px" }), class: "uni-load-more__img uni-load-more__img--android-MP" }, [ vue.createElementVNode( "view", { class: "uni-load-more__img-icon", style: vue.normalizeStyle({ borderTopColor: $props.color, borderTopWidth: $props.iconSize / 12 }) }, null, 4 /* STYLE */ ), vue.createElementVNode( "view", { class: "uni-load-more__img-icon", style: vue.normalizeStyle({ borderTopColor: $props.color, borderTopWidth: $props.iconSize / 12 }) }, null, 4 /* STYLE */ ), vue.createElementVNode( "view", { class: "uni-load-more__img-icon", style: vue.normalizeStyle({ borderTopColor: $props.color, borderTopWidth: $props.iconSize / 12 }) }, null, 4 /* STYLE */ ) ], 4 /* STYLE */ )) : !$data.webviewHide && $props.status === "loading" && $props.showIcon ? (vue.openBlock(), vue.createElementBlock( "view", { key: 1, style: vue.normalizeStyle({ width: $props.iconSize + "px", height: $props.iconSize + "px" }), class: "uni-load-more__img uni-load-more__img--ios-H5" }, [ vue.createElementVNode("image", { src: $data.imgBase64, mode: "widthFix" }, null, 8, ["src"]) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true), $props.showText ? (vue.openBlock(), vue.createElementBlock( "text", { key: 2, class: "uni-load-more__text", style: vue.normalizeStyle({ color: $props.color }) }, vue.toDisplayString($props.status === "more" ? $options.contentdownText : $props.status === "loading" ? $options.contentrefreshText : $options.contentnomoreText), 5 /* TEXT, STYLE */ )) : vue.createCommentVNode("v-if", true) ]); } const __easycom_0$2 = /* @__PURE__ */ _export_sfc(_sfc_main$B, [["render", _sfc_render$A], ["__scopeId", "data-v-2c1dd21f"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-load-more/uni-load-more.vue"]]); const _sfc_main$A = { name: "uniDataChecklist", mixins: [Vs.mixinDatacom || {}], emits: ["input", "update:modelValue", "change"], props: { mode: { type: String, default: "default" }, multiple: { type: Boolean, default: false }, value: { type: [Array, String, Number], default() { return ""; } }, // TODO vue3 modelValue: { type: [Array, String, Number], default() { return ""; } }, localdata: { type: Array, default() { return []; } }, min: { type: [Number, String], default: "" }, max: { type: [Number, String], default: "" }, wrap: { type: Boolean, default: false }, icon: { type: String, default: "left" }, selectedColor: { type: String, default: "" }, selectedTextColor: { type: String, default: "" }, emptyText: { type: String, default: "暂无数据" }, disabled: { type: Boolean, default: false }, map: { type: Object, default() { return { text: "text", value: "value" }; } } }, watch: { localdata: { handler(newVal) { this.range = newVal; this.dataList = this.getDataList(this.getSelectedValue(newVal)); }, deep: true }, mixinDatacomResData(newVal) { this.range = newVal; this.dataList = this.getDataList(this.getSelectedValue(newVal)); }, value(newVal) { this.dataList = this.getDataList(newVal); }, modelValue(newVal) { this.dataList = this.getDataList(newVal); } }, data() { return { dataList: [], range: [], contentText: { contentdown: "查看更多", contentrefresh: "加载中", contentnomore: "没有更多" }, isLocal: true, styles: { selectedColor: "#2979ff", selectedTextColor: "#666" }, isTop: 0 }; }, computed: { dataValue() { if (this.value === "") return this.modelValue; if (this.modelValue === "") return this.value; return this.value; } }, created() { if (this.localdata && this.localdata.length !== 0) { this.isLocal = true; this.range = this.localdata; this.dataList = this.getDataList(this.getSelectedValue(this.range)); } else { if (this.collection) { this.isLocal = false; this.loadData(); } } }, methods: { loadData() { this.mixinDatacomGet().then((res) => { this.mixinDatacomResData = res.result.data; if (this.mixinDatacomResData.length === 0) { this.isLocal = false; this.mixinDatacomErrorMessage = this.emptyText; } else { this.isLocal = true; } }).catch((err) => { this.mixinDatacomErrorMessage = err.message; }); }, /** * 获取父元素实例 */ getForm(name = "uniForms") { let parent = this.$parent; let parentName = parent.$options.name; while (parentName !== name) { parent = parent.$parent; if (!parent) return false; parentName = parent.$options.name; } return parent; }, chagne(e2) { const values = e2.detail.value; let detail = { value: [], data: [] }; if (this.multiple) { this.range.forEach((item) => { if (values.includes(item[this.map.value] + "")) { detail.value.push(item[this.map.value]); detail.data.push(item); } }); } else { const range = this.range.find((item) => item[this.map.value] + "" === values); if (range) { detail = { value: range[this.map.value], data: range }; } } this.$emit("input", detail.value); this.$emit("update:modelValue", detail.value); this.$emit("change", { detail }); if (this.multiple) { this.dataList = this.getDataList(detail.value, true); } else { this.dataList = this.getDataList(detail.value); } }, /** * 获取渲染的新数组 * @param {Object} value 选中内容 */ getDataList(value) { let dataList = JSON.parse(JSON.stringify(this.range)); let list = []; if (this.multiple) { if (!Array.isArray(value)) { value = []; } } dataList.forEach((item, index) => { item.disabled = item.disable || item.disabled || false; if (this.multiple) { if (value.length > 0) { let have = value.find((val) => val === item[this.map.value]); item.selected = have !== void 0; } else { item.selected = false; } } else { item.selected = value === item[this.map.value]; } list.push(item); }); return this.setRange(list); }, /** * 处理最大最小值 * @param {Object} list */ setRange(list) { let selectList = list.filter((item) => item.selected); let min = Number(this.min) || 0; let max = Number(this.max) || ""; list.forEach((item, index) => { if (this.multiple) { if (selectList.length <= min) { let have = selectList.find((val) => val[this.map.value] === item[this.map.value]); if (have !== void 0) { item.disabled = true; } } if (selectList.length >= max && max !== "") { let have = selectList.find((val) => val[this.map.value] === item[this.map.value]); if (have === void 0) { item.disabled = true; } } } this.setStyles(item, index); list[index] = item; }); return list; }, /** * 设置 class * @param {Object} item * @param {Object} index */ setStyles(item, index) { item.styleBackgroud = this.setStyleBackgroud(item); item.styleIcon = this.setStyleIcon(item); item.styleIconText = this.setStyleIconText(item); item.styleRightIcon = this.setStyleRightIcon(item); }, /** * 获取选中值 * @param {Object} range */ getSelectedValue(range) { if (!this.multiple) return this.dataValue; let selectedArr = []; range.forEach((item) => { if (item.selected) { selectedArr.push(item[this.map.value]); } }); return this.dataValue.length > 0 ? this.dataValue : selectedArr; }, /** * 设置背景样式 */ setStyleBackgroud(item) { let styles = {}; let selectedColor = this.selectedColor ? this.selectedColor : "#2979ff"; if (this.selectedColor) { if (this.mode !== "list") { styles["border-color"] = item.selected ? selectedColor : "#DCDFE6"; } if (this.mode === "tag") { styles["background-color"] = item.selected ? selectedColor : "#f5f5f5"; } } let classles = ""; for (let i2 in styles) { classles += `${i2}:${styles[i2]};`; } return classles; }, setStyleIcon(item) { let styles = {}; let classles = ""; if (this.selectedColor) { let selectedColor = this.selectedColor ? this.selectedColor : "#2979ff"; styles["background-color"] = item.selected ? selectedColor : "#fff"; styles["border-color"] = item.selected ? selectedColor : "#DCDFE6"; if (!item.selected && item.disabled) { styles["background-color"] = "#F2F6FC"; styles["border-color"] = item.selected ? selectedColor : "#DCDFE6"; } } for (let i2 in styles) { classles += `${i2}:${styles[i2]};`; } return classles; }, setStyleIconText(item) { let styles = {}; let classles = ""; if (this.selectedColor) { let selectedColor = this.selectedColor ? this.selectedColor : "#2979ff"; if (this.mode === "tag") { styles.color = item.selected ? this.selectedTextColor ? this.selectedTextColor : "#fff" : "#666"; } else { styles.color = item.selected ? this.selectedTextColor ? this.selectedTextColor : selectedColor : "#666"; } if (!item.selected && item.disabled) { styles.color = "#999"; } } for (let i2 in styles) { classles += `${i2}:${styles[i2]};`; } return classles; }, setStyleRightIcon(item) { let styles = {}; let classles = ""; if (this.mode === "list") { styles["border-color"] = item.selected ? this.styles.selectedColor : "#DCDFE6"; } for (let i2 in styles) { classles += `${i2}:${styles[i2]};`; } return classles; } } }; function _sfc_render$z(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_load_more = resolveEasycom(vue.resolveDynamicComponent("uni-load-more"), __easycom_0$2); return vue.openBlock(), vue.createElementBlock( "view", { class: "uni-data-checklist", style: vue.normalizeStyle({ "margin-top": $data.isTop + "px" }) }, [ !$data.isLocal ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "uni-data-loading" }, [ !_ctx.mixinDatacomErrorMessage ? (vue.openBlock(), vue.createBlock(_component_uni_load_more, { key: 0, status: "loading", iconType: "snow", iconSize: 18, "content-text": $data.contentText }, null, 8, ["content-text"])) : (vue.openBlock(), vue.createElementBlock( "text", { key: 1 }, vue.toDisplayString(_ctx.mixinDatacomErrorMessage), 1 /* TEXT */ )) ])) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ $props.multiple ? (vue.openBlock(), vue.createElementBlock( "checkbox-group", { key: 0, class: vue.normalizeClass(["checklist-group", { "is-list": $props.mode === "list" || $props.wrap }]), onChange: _cache[0] || (_cache[0] = (...args) => $options.chagne && $options.chagne(...args)) }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($data.dataList, (item, index) => { return vue.openBlock(), vue.createElementBlock( "label", { class: vue.normalizeClass(["checklist-box", ["is--" + $props.mode, item.selected ? "is-checked" : "", $props.disabled || !!item.disabled ? "is-disable" : "", index !== 0 && $props.mode === "list" ? "is-list-border" : ""]]), style: vue.normalizeStyle(item.styleBackgroud), key: index }, [ vue.createElementVNode("checkbox", { class: "hidden", hidden: "", disabled: $props.disabled || !!item.disabled, value: item[$props.map.value] + "", checked: item.selected }, null, 8, ["disabled", "value", "checked"]), $props.mode !== "tag" && $props.mode !== "list" || $props.mode === "list" && $props.icon === "left" ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "checkbox__inner", style: vue.normalizeStyle(item.styleIcon) }, [ vue.createElementVNode("view", { class: "checkbox__inner-icon" }) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", { class: vue.normalizeClass(["checklist-content", { "list-content": $props.mode === "list" && $props.icon === "left" }]) }, [ vue.createElementVNode( "text", { class: "checklist-text", style: vue.normalizeStyle(item.styleIconText) }, vue.toDisplayString(item[$props.map.text]), 5 /* TEXT, STYLE */ ), $props.mode === "list" && $props.icon === "right" ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "checkobx__list", style: vue.normalizeStyle(item.styleBackgroud) }, null, 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true) ], 2 /* CLASS */ ) ], 6 /* CLASS, STYLE */ ); }), 128 /* KEYED_FRAGMENT */ )) ], 34 /* CLASS, NEED_HYDRATION */ )) : (vue.openBlock(), vue.createElementBlock( "radio-group", { key: 1, class: vue.normalizeClass(["checklist-group", { "is-list": $props.mode === "list", "is-wrap": $props.wrap }]), onChange: _cache[1] || (_cache[1] = (...args) => $options.chagne && $options.chagne(...args)) }, [ vue.createCommentVNode(" "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($data.dataList, (item, index) => { return vue.openBlock(), vue.createElementBlock( "label", { class: vue.normalizeClass(["checklist-box", ["is--" + $props.mode, item.selected ? "is-checked" : "", $props.disabled || !!item.disabled ? "is-disable" : "", index !== 0 && $props.mode === "list" ? "is-list-border" : ""]]), style: vue.normalizeStyle(item.styleBackgroud), key: index }, [ vue.createElementVNode("radio", { class: "hidden", hidden: "", disabled: $props.disabled || item.disabled, value: item[$props.map.value] + "", checked: item.selected }, null, 8, ["disabled", "value", "checked"]), $props.mode !== "tag" && $props.mode !== "list" || $props.mode === "list" && $props.icon === "left" ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "radio__inner", style: vue.normalizeStyle(item.styleBackgroud) }, [ vue.createElementVNode( "view", { class: "radio__inner-icon", style: vue.normalizeStyle(item.styleIcon) }, null, 4 /* STYLE */ ) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "view", { class: vue.normalizeClass(["checklist-content", { "list-content": $props.mode === "list" && $props.icon === "left" }]) }, [ vue.createElementVNode( "text", { class: "checklist-text", style: vue.normalizeStyle(item.styleIconText) }, vue.toDisplayString(item[$props.map.text]), 5 /* TEXT, STYLE */ ), $props.mode === "list" && $props.icon === "right" ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, style: vue.normalizeStyle(item.styleRightIcon), class: "checkobx__list" }, null, 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true) ], 2 /* CLASS */ ) ], 6 /* CLASS, STYLE */ ); }), 128 /* KEYED_FRAGMENT */ )) ], 34 /* CLASS, NEED_HYDRATION */ )) ], 64 /* STABLE_FRAGMENT */ )) ], 4 /* STYLE */ ); } const __easycom_7 = /* @__PURE__ */ _export_sfc(_sfc_main$A, [["render", _sfc_render$z], ["__scopeId", "data-v-149d584b"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-data-checkbox/uni-data-checkbox.vue"]]); var commonjsGlobal = typeof globalThis !== "undefined" ? globalThis : typeof window !== "undefined" ? window : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; function getDefaultExportFromCjs(x) { return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, "default") ? x["default"] : x; } var dayjs_min = { exports: {} }; (function(module, exports) { !function(t2, e2) { module.exports = e2(); }(commonjsGlobal, function() { var t2 = 1e3, e2 = 6e4, n2 = 36e5, r2 = "millisecond", i2 = "second", s2 = "minute", u2 = "hour", a2 = "day", o2 = "week", c2 = "month", f2 = "quarter", h2 = "year", d2 = "date", l2 = "Invalid Date", $2 = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, y2 = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, M2 = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(t3) { var e3 = ["th", "st", "nd", "rd"], n3 = t3 % 100; return "[" + t3 + (e3[(n3 - 20) % 10] || e3[n3] || e3[0]) + "]"; } }, m2 = function(t3, e3, n3) { var r3 = String(t3); return !r3 || r3.length >= e3 ? t3 : "" + Array(e3 + 1 - r3.length).join(n3) + t3; }, v2 = { s: m2, z: function(t3) { var e3 = -t3.utcOffset(), n3 = Math.abs(e3), r3 = Math.floor(n3 / 60), i3 = n3 % 60; return (e3 <= 0 ? "+" : "-") + m2(r3, 2, "0") + ":" + m2(i3, 2, "0"); }, m: function t3(e3, n3) { if (e3.date() < n3.date()) return -t3(n3, e3); var r3 = 12 * (n3.year() - e3.year()) + (n3.month() - e3.month()), i3 = e3.clone().add(r3, c2), s3 = n3 - i3 < 0, u3 = e3.clone().add(r3 + (s3 ? -1 : 1), c2); return +(-(r3 + (n3 - i3) / (s3 ? i3 - u3 : u3 - i3)) || 0); }, a: function(t3) { return t3 < 0 ? Math.ceil(t3) || 0 : Math.floor(t3); }, p: function(t3) { return { M: c2, y: h2, w: o2, d: a2, D: d2, h: u2, m: s2, s: i2, ms: r2, Q: f2 }[t3] || String(t3 || "").toLowerCase().replace(/s$/, ""); }, u: function(t3) { return void 0 === t3; } }, g2 = "en", D2 = {}; D2[g2] = M2; var p2 = "$isDayjsObject", S2 = function(t3) { return t3 instanceof _2 || !(!t3 || !t3[p2]); }, w2 = function t3(e3, n3, r3) { var i3; if (!e3) return g2; if ("string" == typeof e3) { var s3 = e3.toLowerCase(); D2[s3] && (i3 = s3), n3 && (D2[s3] = n3, i3 = s3); var u3 = e3.split("-"); if (!i3 && u3.length > 1) return t3(u3[0]); } else { var a3 = e3.name; D2[a3] = e3, i3 = a3; } return !r3 && i3 && (g2 = i3), i3 || !r3 && g2; }, O2 = function(t3, e3) { if (S2(t3)) return t3.clone(); var n3 = "object" == typeof e3 ? e3 : {}; return n3.date = t3, n3.args = arguments, new _2(n3); }, b2 = v2; b2.l = w2, b2.i = S2, b2.w = function(t3, e3) { return O2(t3, { locale: e3.$L, utc: e3.$u, x: e3.$x, $offset: e3.$offset }); }; var _2 = function() { function M3(t3) { this.$L = w2(t3.locale, null, true), this.parse(t3), this.$x = this.$x || t3.x || {}, this[p2] = true; } var m3 = M3.prototype; return m3.parse = function(t3) { this.$d = function(t4) { var e3 = t4.date, n3 = t4.utc; if (null === e3) return /* @__PURE__ */ new Date(NaN); if (b2.u(e3)) return /* @__PURE__ */ new Date(); if (e3 instanceof Date) return new Date(e3); if ("string" == typeof e3 && !/Z$/i.test(e3)) { var r3 = e3.match($2); if (r3) { var i3 = r3[2] - 1 || 0, s3 = (r3[7] || "0").substring(0, 3); return n3 ? new Date(Date.UTC(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3)) : new Date(r3[1], i3, r3[3] || 1, r3[4] || 0, r3[5] || 0, r3[6] || 0, s3); } } return new Date(e3); }(t3), this.init(); }, m3.init = function() { var t3 = this.$d; this.$y = t3.getFullYear(), this.$M = t3.getMonth(), this.$D = t3.getDate(), this.$W = t3.getDay(), this.$H = t3.getHours(), this.$m = t3.getMinutes(), this.$s = t3.getSeconds(), this.$ms = t3.getMilliseconds(); }, m3.$utils = function() { return b2; }, m3.isValid = function() { return !(this.$d.toString() === l2); }, m3.isSame = function(t3, e3) { var n3 = O2(t3); return this.startOf(e3) <= n3 && n3 <= this.endOf(e3); }, m3.isAfter = function(t3, e3) { return O2(t3) < this.startOf(e3); }, m3.isBefore = function(t3, e3) { return this.endOf(e3) < O2(t3); }, m3.$g = function(t3, e3, n3) { return b2.u(t3) ? this[e3] : this.set(n3, t3); }, m3.unix = function() { return Math.floor(this.valueOf() / 1e3); }, m3.valueOf = function() { return this.$d.getTime(); }, m3.startOf = function(t3, e3) { var n3 = this, r3 = !!b2.u(e3) || e3, f3 = b2.p(t3), l3 = function(t4, e4) { var i3 = b2.w(n3.$u ? Date.UTC(n3.$y, e4, t4) : new Date(n3.$y, e4, t4), n3); return r3 ? i3 : i3.endOf(a2); }, $3 = function(t4, e4) { return b2.w(n3.toDate()[t4].apply(n3.toDate("s"), (r3 ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice(e4)), n3); }, y3 = this.$W, M4 = this.$M, m4 = this.$D, v3 = "set" + (this.$u ? "UTC" : ""); switch (f3) { case h2: return r3 ? l3(1, 0) : l3(31, 11); case c2: return r3 ? l3(1, M4) : l3(0, M4 + 1); case o2: var g3 = this.$locale().weekStart || 0, D3 = (y3 < g3 ? y3 + 7 : y3) - g3; return l3(r3 ? m4 - D3 : m4 + (6 - D3), M4); case a2: case d2: return $3(v3 + "Hours", 0); case u2: return $3(v3 + "Minutes", 1); case s2: return $3(v3 + "Seconds", 2); case i2: return $3(v3 + "Milliseconds", 3); default: return this.clone(); } }, m3.endOf = function(t3) { return this.startOf(t3, false); }, m3.$set = function(t3, e3) { var n3, o3 = b2.p(t3), f3 = "set" + (this.$u ? "UTC" : ""), l3 = (n3 = {}, n3[a2] = f3 + "Date", n3[d2] = f3 + "Date", n3[c2] = f3 + "Month", n3[h2] = f3 + "FullYear", n3[u2] = f3 + "Hours", n3[s2] = f3 + "Minutes", n3[i2] = f3 + "Seconds", n3[r2] = f3 + "Milliseconds", n3)[o3], $3 = o3 === a2 ? this.$D + (e3 - this.$W) : e3; if (o3 === c2 || o3 === h2) { var y3 = this.clone().set(d2, 1); y3.$d[l3]($3), y3.init(), this.$d = y3.set(d2, Math.min(this.$D, y3.daysInMonth())).$d; } else l3 && this.$d[l3]($3); return this.init(), this; }, m3.set = function(t3, e3) { return this.clone().$set(t3, e3); }, m3.get = function(t3) { return this[b2.p(t3)](); }, m3.add = function(r3, f3) { var d3, l3 = this; r3 = Number(r3); var $3 = b2.p(f3), y3 = function(t3) { var e3 = O2(l3); return b2.w(e3.date(e3.date() + Math.round(t3 * r3)), l3); }; if ($3 === c2) return this.set(c2, this.$M + r3); if ($3 === h2) return this.set(h2, this.$y + r3); if ($3 === a2) return y3(1); if ($3 === o2) return y3(7); var M4 = (d3 = {}, d3[s2] = e2, d3[u2] = n2, d3[i2] = t2, d3)[$3] || 1, m4 = this.$d.getTime() + r3 * M4; return b2.w(m4, this); }, m3.subtract = function(t3, e3) { return this.add(-1 * t3, e3); }, m3.format = function(t3) { var e3 = this, n3 = this.$locale(); if (!this.isValid()) return n3.invalidDate || l2; var r3 = t3 || "YYYY-MM-DDTHH:mm:ssZ", i3 = b2.z(this), s3 = this.$H, u3 = this.$m, a3 = this.$M, o3 = n3.weekdays, c3 = n3.months, f3 = n3.meridiem, h3 = function(t4, n4, i4, s4) { return t4 && (t4[n4] || t4(e3, r3)) || i4[n4].slice(0, s4); }, d3 = function(t4) { return b2.s(s3 % 12 || 12, t4, "0"); }, $3 = f3 || function(t4, e4, n4) { var r4 = t4 < 12 ? "AM" : "PM"; return n4 ? r4.toLowerCase() : r4; }; return r3.replace(y2, function(t4, r4) { return r4 || function(t5) { switch (t5) { case "YY": return String(e3.$y).slice(-2); case "YYYY": return b2.s(e3.$y, 4, "0"); case "M": return a3 + 1; case "MM": return b2.s(a3 + 1, 2, "0"); case "MMM": return h3(n3.monthsShort, a3, c3, 3); case "MMMM": return h3(c3, a3); case "D": return e3.$D; case "DD": return b2.s(e3.$D, 2, "0"); case "d": return String(e3.$W); case "dd": return h3(n3.weekdaysMin, e3.$W, o3, 2); case "ddd": return h3(n3.weekdaysShort, e3.$W, o3, 3); case "dddd": return o3[e3.$W]; case "H": return String(s3); case "HH": return b2.s(s3, 2, "0"); case "h": return d3(1); case "hh": return d3(2); case "a": return $3(s3, u3, true); case "A": return $3(s3, u3, false); case "m": return String(u3); case "mm": return b2.s(u3, 2, "0"); case "s": return String(e3.$s); case "ss": return b2.s(e3.$s, 2, "0"); case "SSS": return b2.s(e3.$ms, 3, "0"); case "Z": return i3; } return null; }(t4) || i3.replace(":", ""); }); }, m3.utcOffset = function() { return 15 * -Math.round(this.$d.getTimezoneOffset() / 15); }, m3.diff = function(r3, d3, l3) { var $3, y3 = this, M4 = b2.p(d3), m4 = O2(r3), v3 = (m4.utcOffset() - this.utcOffset()) * e2, g3 = this - m4, D3 = function() { return b2.m(y3, m4); }; switch (M4) { case h2: $3 = D3() / 12; break; case c2: $3 = D3(); break; case f2: $3 = D3() / 3; break; case o2: $3 = (g3 - v3) / 6048e5; break; case a2: $3 = (g3 - v3) / 864e5; break; case u2: $3 = g3 / n2; break; case s2: $3 = g3 / e2; break; case i2: $3 = g3 / t2; break; default: $3 = g3; } return l3 ? $3 : b2.a($3); }, m3.daysInMonth = function() { return this.endOf(c2).$D; }, m3.$locale = function() { return D2[this.$L]; }, m3.locale = function(t3, e3) { if (!t3) return this.$L; var n3 = this.clone(), r3 = w2(t3, e3, true); return r3 && (n3.$L = r3), n3; }, m3.clone = function() { return b2.w(this.$d, this); }, m3.toDate = function() { return new Date(this.valueOf()); }, m3.toJSON = function() { return this.isValid() ? this.toISOString() : null; }, m3.toISOString = function() { return this.$d.toISOString(); }, m3.toString = function() { return this.$d.toUTCString(); }, M3; }(), k = _2.prototype; return O2.prototype = k, [["$ms", r2], ["$s", i2], ["$m", s2], ["$H", u2], ["$W", a2], ["$M", c2], ["$y", h2], ["$D", d2]].forEach(function(t3) { k[t3[1]] = function(e3) { return this.$g(e3, t3[0], t3[1]); }; }), O2.extend = function(t3, e3) { return t3.$i || (t3(e3, _2, O2), t3.$i = true), O2; }, O2.locale = w2, O2.isDayjs = S2, O2.unix = function(t3) { return O2(1e3 * t3); }, O2.en = D2[g2], O2.Ls = D2, O2.p = {}, O2; }); })(dayjs_min); var dayjs_minExports = dayjs_min.exports; const dayjs = /* @__PURE__ */ getDefaultExportFromCjs(dayjs_minExports); var isIOS; function album() { var result = 0; var PHPhotoLibrary = plus.ios.import("PHPhotoLibrary"); var authStatus = PHPhotoLibrary.authorizationStatus(); if (authStatus === 0) { result = null; } else if (authStatus == 3) { result = 1; } else { result = 0; } plus.ios.deleteObject(PHPhotoLibrary); return result; } function camera() { var result = 0; var AVCaptureDevice = plus.ios.import("AVCaptureDevice"); var authStatus = AVCaptureDevice.authorizationStatusForMediaType("vide"); if (authStatus === 0) { result = null; } else if (authStatus == 3) { result = 1; } else { result = 0; } plus.ios.deleteObject(AVCaptureDevice); return result; } function location$1() { var result = 0; var cllocationManger = plus.ios.import("CLLocationManager"); var enable = cllocationManger.locationServicesEnabled(); var status = cllocationManger.authorizationStatus(); if (!enable) { result = 2; } else if (status === 0) { result = null; } else if (status === 3 || status === 4) { result = 1; } else { result = 0; } plus.ios.deleteObject(cllocationManger); return result; } function push() { var result = 0; var UIApplication = plus.ios.import("UIApplication"); var app = UIApplication.sharedApplication(); var enabledTypes = 0; if (app.currentUserNotificationSettings) { var settings = app.currentUserNotificationSettings(); enabledTypes = settings.plusGetAttribute("types"); if (enabledTypes == 0) { result = 0; formatAppLog("log", "at utils/permission.js:64", "推送权限没有开启"); } else { result = 1; formatAppLog("log", "at utils/permission.js:67", "已经开启推送功能!"); } plus.ios.deleteObject(settings); } else { enabledTypes = app.enabledRemoteNotificationTypes(); if (enabledTypes == 0) { result = 3; formatAppLog("log", "at utils/permission.js:74", "推送权限没有开启!"); } else { result = 4; formatAppLog("log", "at utils/permission.js:77", "已经开启推送功能!"); } } plus.ios.deleteObject(app); plus.ios.deleteObject(UIApplication); return result; } function contact() { var result = 0; var CNContactStore = plus.ios.import("CNContactStore"); var cnAuthStatus = CNContactStore.authorizationStatusForEntityType(0); if (cnAuthStatus === 0) { result = null; } else if (cnAuthStatus == 3) { result = 1; } else { result = 0; } plus.ios.deleteObject(CNContactStore); return result; } function record() { var result = null; var avaudiosession = plus.ios.import("AVAudioSession"); var avaudio = avaudiosession.sharedInstance(); var status = avaudio.recordPermission(); formatAppLog("log", "at utils/permission.js:105", "permissionStatus:" + status); if (status === 1970168948) { result = null; } else if (status === 1735552628) { result = 1; } else { result = 0; } plus.ios.deleteObject(avaudiosession); return result; } function calendar() { var result = null; var EKEventStore = plus.ios.import("EKEventStore"); var ekAuthStatus = EKEventStore.authorizationStatusForEntityType(0); if (ekAuthStatus == 3) { result = 1; formatAppLog("log", "at utils/permission.js:123", "日历权限已经开启"); } else { formatAppLog("log", "at utils/permission.js:125", "日历权限没有开启"); } plus.ios.deleteObject(EKEventStore); return result; } function memo() { var result = null; var EKEventStore = plus.ios.import("EKEventStore"); var ekAuthStatus = EKEventStore.authorizationStatusForEntityType(1); if (ekAuthStatus == 3) { result = 1; formatAppLog("log", "at utils/permission.js:137", "备忘录权限已经开启"); } else { formatAppLog("log", "at utils/permission.js:139", "备忘录权限没有开启"); } plus.ios.deleteObject(EKEventStore); return result; } function requestIOS(permissionID) { return new Promise((resolve) => { switch (permissionID) { case "push": resolve(push()); break; case "location": resolve(location$1()); break; case "record": resolve(record()); break; case "camera": resolve(camera()); break; case "album": resolve(album()); break; case "contact": resolve(contact()); break; case "calendar": resolve(calendar()); break; case "memo": resolve(memo()); break; default: resolve(0); break; } }); } function requestAndroid(permissionID) { return new Promise((resolve) => { plus.android.requestPermissions( [permissionID], function(resultObj) { var result = 0; for (let i2 = 0; i2 < resultObj.granted.length; i2++) { var grantedPermission = resultObj.granted[i2]; formatAppLog("log", "at utils/permission.js:187", "已获取的权限:" + grantedPermission); result = 1; } for (let i2 = 0; i2 < resultObj.deniedPresent.length; i2++) { var deniedPresentPermission = resultObj.deniedPresent[i2]; formatAppLog("log", "at utils/permission.js:192", "拒绝本次申请的权限:" + deniedPresentPermission); result = 0; } for (let i2 = 0; i2 < resultObj.deniedAlways.length; i2++) { var deniedAlwaysPermission = resultObj.deniedAlways[i2]; formatAppLog("log", "at utils/permission.js:197", "永久拒绝申请的权限:" + deniedAlwaysPermission); result = -1; } resolve(result); }, function(error) { formatAppLog("log", "at utils/permission.js:203", "result error: " + error.message); resolve({ code: error.code, message: error.message }); } ); }); } function gotoAppPermissionSetting() { if (permission.isIOS) { var UIApplication = plus.ios.import("UIApplication"); var application2 = UIApplication.sharedApplication(); var NSURL2 = plus.ios.import("NSURL"); var setting2 = NSURL2.URLWithString("app-settings:"); application2.openURL(setting2); plus.ios.deleteObject(setting2); plus.ios.deleteObject(NSURL2); plus.ios.deleteObject(application2); } else { var Intent = plus.android.importClass("android.content.Intent"); var Settings = plus.android.importClass("android.provider.Settings"); var Uri = plus.android.importClass("android.net.Uri"); var mainActivity = plus.android.runtimeMainActivity(); var intent = new Intent(); intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS); var uri = Uri.fromParts("package", mainActivity.getPackageName(), null); intent.setData(uri); mainActivity.startActivity(intent); } } const permission = { get isIOS() { return typeof isIOS === "boolean" ? isIOS : isIOS = uni.getSystemInfoSync().platform === "ios"; }, requestIOS, requestAndroid, gotoAppSetting: gotoAppPermissionSetting }; const formatDate = (date, format = "YYYY-MM-DD HH:mm:ss") => { const year = String(date.getFullYear()); const month = String(date.getMonth() + 1).padStart(2, "0"); const day = String(date.getDate()).padStart(2, "0"); const hours = String(date.getHours()).padStart(2, "0"); const minutes = String(date.getMinutes()).padStart(2, "0"); const seconds = String(date.getSeconds()).padStart(2, "0"); return format.replace("YYYY", year).replace("MM", month).replace("DD", day).replace("HH", hours).replace("mm", minutes).replace("ss", seconds); }; const checkPermission = async () => { let status = permission.isIOS ? await permission.requestIOS("camera") : await permission.requestAndroid("android.permission.CAMERA"); if (status === null || status === 1) { status = 1; } else { uni.showModal({ content: "Camera permission required", confirmText: "Setting", success: function(res) { if (res.confirm) { permission.gotoAppSetting(); } } }); } return status; }; const getAliyunOssSignature = () => { return http({ method: "GET", url: "/admin/Config/getAliyunOssSignature" }); }; const printWaybillLabel = (data) => { return http({ method: "POST", url: "/admin/order.ScanOrder/printWaybillLabel", data }); }; const weigh = (data) => { return http({ method: "POST", url: "/admin/order.scanOrder/weigh", data }); }; const outStock = (data) => { return http({ method: "POST", url: "/admin/order.scanOrder/outStock", data }); }; const instock = (data) => { return http({ method: "POST", url: "/admin/order.scanOrder/instock", data }); }; const getBindParams$1 = () => { return http({ method: "GET", url: "/admin/order.scanOrder/getBindParams" }); }; const checkWaybillGoods = (order_no) => { return http({ method: "POST", url: "/admin/order.scanOrder/checkWaybillGoods", data: { order_no } }); }; const getWarehouseSpace = (code = "") => { return http({ method: "POST", url: "/admin/order.ScanOrder/getWarehouseSpace", data: { code } }); }; const hexList = []; for (let i2 = 0; i2 <= 15; i2++) { hexList[i2] = i2.toString(16); } function uuid() { let uuid2 = ""; for (let i2 = 1; i2 <= 36; i2++) { if (i2 === 9 || i2 === 14 || i2 === 19 || i2 === 24) { uuid2 += "-"; } else if (i2 === 15) { uuid2 += 4; } else if (i2 === 20) { uuid2 += hexList[Math.random() * 4 | 8]; } else { uuid2 += hexList[Math.random() * 16 | 0]; } } return uuid2; } const getPrinterList = () => { return http({ method: "GET", url: "/admin/printer/getPrinterList" }); }; const _sfc_main$z = /* @__PURE__ */ vue.defineComponent({ __name: "inbound", setup(__props, { expose: __expose }) { __expose(); const message = vue.ref(); const valiForm = vue.ref(); const printerDialog = vue.ref(); const loading = vue.ref(false); const images = vue.ref([]); const messageType = vue.ref(""); const messageText = vue.ref(""); const spaces = vue.ref([]); const previewImage = vue.ref(null); const maxImages = vue.ref(6); const printerList = vue.ref(); const historyList = vue.ref([]); const printers = vue.ref([]); const sendToPeinter = vue.ref([1]); const selectPrinter = vue.ref(0); const subLoading = vue.ref(false); const focusType = vue.ref(true); const result = vue.ref(); const valiFormData = vue.reactive({ images: [], orderNum: "", space_code: "", weight: "", typing: true }); const rules = vue.computed(() => { return { orderNum: { rules: [ { required: true, errorMessage: "单号不能为空" } ] } }; }); const spaceRes = vue.computed(() => { try { const res = spaces.value.find((item) => item.value === valiFormData.space_code); return res == null ? void 0 : res.text; } catch (e2) { formatAppLog("log", "at pages/inbound/inbound.vue:247", e2); return ""; } }); onShow(async () => { focusType.value = true; loading.value = false; await _getWarehouseSpace(); await Promise.all([_getPrinterList()]); }); onHide(() => { focusType.value = false; loading.value = false; }); onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/inbound/logList" }); } }); const _getWarehouseSpace = async () => { const res = await getWarehouseSpace(); if (res.code === 1) { spaces.value = res.data.spaces.map((item) => { return { text: item.name, value: item.code }; }); } }; const _getPrinterList = async () => { const res = await getPrinterList(); if (res.code === 1) { printerList.value = res.data.printers; printers.value = Object.values(printerList.value).map((item) => { return { text: item.name, value: item.value }; }); } }; const reset = () => { loading.value = false; focusType.value = false; images.value = []; valiFormData.orderNum = ""; valiFormData.weight = ""; valiFormData.typing = true; vue.nextTick(() => { focusType.value = true; }); }; const scan = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { result.value = res.result; valiFormData.orderNum = res.result; }, fail: (err) => { } }); }; let st2; const warehouseScan2 = async () => { st2 && clearTimeout(st2); instockScan(); }; const instockScan = async () => { const images2 = getImages(); let allImgVerify = true; for (var i2 = 0; i2 < images2.length; i2++) { if (!images2[i2].savePath) { allImgVerify = false; } } if (!allImgVerify) { messageType.value = "error"; messageText.value = "图片还没上传完毕,请稍后..."; message.value.open(); loading.value = false; return; } const res = await instock({ order_no: valiFormData.orderNum, space_code: valiFormData.space_code, images: images2 }); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, createTime: /* @__PURE__ */ new Date(), space: spaceRes.value, type: "入库", status: true }; historyList.value.unshift(historyItem); uni.setStorageSync("inboundHistory", historyList.value); getHistory(); if (res.data.express_label) { selectPrinter.value = sendToPeinter.value.length > 0 ? printers.value[0].value : 0; printerDialog.value.open(); } else { st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 1e3); } } else { messageType.value = "error"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, createTime: /* @__PURE__ */ new Date(), space: spaceRes.value, type: "入库", status: false }; historyList.value.unshift(historyItem); uni.setStorageSync("inboundHistory", historyList.value); getHistory(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 1e3); } }; const close = () => { printerDialog.value.close(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 700); }; const sendToPeinterFun = (res) => { if (res.detail.value.length === 0) { selectPrinter.value = 0; } else { selectPrinter.value = printers.value[0].value; } }; const printConfirm = async () => { subLoading.value = true; const res = await printWaybillLabel({ order_no: valiFormData.orderNum, printer_code: selectPrinter }); close(); subLoading.value = false; formatAppLog("log", "at pages/inbound/inbound.vue:419", "打印成功", res); messageType.value = "success"; messageText.value = "打印成功"; message.value.open(); }; const onsubmit = () => { valiForm.value.validate().then((res) => { warehouseScan2(); }).catch((err) => { formatAppLog("log", "at pages/inbound/inbound.vue:431", "err", err); }); }; const getHistory = () => { historyList.value = uni.getStorageSync("inboundHistory"); }; const getImages = () => { const res = images.value.map((item) => { return { name: item.name, savePath: item.serverUrl, fileSize: item.size, mimeType: item.type }; }); return res; }; const _getAliyunOssSignature = async (rawFiles) => { const res = await getAliyunOssSignature(); const signature = res.data.signature; const uploadPromises = rawFiles.map((image) => { return upLoadFile(signature, image); }); Promise.all(uploadPromises).then((results) => { formatAppLog("log", "at pages/inbound/inbound.vue:460", "所有图片加载成功:", results); uni.showToast({ title: "加载成功", icon: "success" }); }).catch((error) => { formatAppLog("error", "at pages/inbound/inbound.vue:467", "加载失败:", error); uni.showToast({ title: "加载失败", icon: "none" }); }); }; const upLoadFile = (signature, image) => { const fileData = { policy: signature.policy, signature: signature.signature, ossaccessKeyId: signature.ossAccessKeyId, key: signature.dir + dayjs().format("YYYYMMDD") + "/" + uuid() + "_" + image.name, dir: signature.dir, host: signature.host, file: image.file }; return new Promise((resolve, reject) => { let name = image.name; name = "file"; const uploadTask = uni.uploadFile({ url: signature.host, // 你的上传接口地址 filePath: image.path, name, // 这里根据后端需要的字段来定义 formData: fileData, success: (uploadFileRes) => { if (uploadFileRes.statusCode === 204 || uploadFileRes.statusCode === 200) { image.serverUrl = fileData.key; resolve(uploadFileRes); } else { reject(uploadFileRes); } }, fail: (error) => { formatAppLog("log", "at pages/inbound/inbound.vue:512", "error++", error); reject(error); }, // 更新上传进度 complete: () => { formatAppLog("log", "at pages/inbound/inbound.vue:517", "complete---"); image.progress = 100; } }); uploadTask.onProgressUpdate((progressEvent) => { image.progress = progressEvent.progress; }); }); }; const chooseImage = () => { uni.chooseImage({ count: maxImages.value - images.value.length, success: (res) => { images.value = images.value.concat( res.tempFiles.map((item) => { const res2 = { size: item.size, path: item.path, name: item.name, type: item.type, progress: 0, file: item }; const suffix = item.path.substring(item.path.lastIndexOf(".") + 1); const fileName = item.path.substring(item.path.lastIndexOf("/") + 1); res2.name = fileName; res2.type = suffix; return res2; }) ); const paddingImages = images.value.filter((image) => image.progress === 0); vue.nextTick(() => { _getAliyunOssSignature(paddingImages); }); }, fail: (err) => { formatAppLog("error", "at pages/inbound/inbound.vue:562", err); } }); }; const deleteImage = (index) => { images.value.splice(index, 1); }; const openPreview = (image) => { previewImage.value = image; }; const closePreview = () => { previewImage.value = null; }; const __returned__ = { message, valiForm, printerDialog, loading, images, messageType, messageText, spaces, previewImage, maxImages, printerList, historyList, printers, sendToPeinter, selectPrinter, subLoading, focusType, result, valiFormData, rules, spaceRes, _getWarehouseSpace, _getPrinterList, reset, scan, get st() { return st2; }, set st(v2) { st2 = v2; }, warehouseScan: warehouseScan2, instockScan, close, sendToPeinterFun, printConfirm, onsubmit, getHistory, getImages, _getAliyunOssSignature, upLoadFile, chooseImage, deleteImage, openPreview, closePreview }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$y(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_data_select = resolveEasycom(vue.resolveDynamicComponent("uni-data-select"), __easycom_0$3); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); const _component_uni_data_checkbox = resolveEasycom(vue.resolveDynamicComponent("uni-data-checkbox"), __easycom_7); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createElementVNode("view", { class: "example" }, [ vue.createCommentVNode(" 基础表单校验 "), vue.createVNode(_component_uni_forms, { ref: "valiForm", "label-align": "right", "label-width": "80px", rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_forms_item, { label: "单号", required: "", name: "orderNum" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.orderNum, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.orderNum = $event), placeholder: "请输入单号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scan }, null, 8, ["modelValue", "focus"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "仓位编码", name: "space_code" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_data_select, { modelValue: $setup.valiFormData.space_code, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.valiFormData.space_code = $event), localdata: $setup.spaces, placeholder: "请选择仓位编码" }, null, 8, ["modelValue", "localdata"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "图片", name: "images" }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "upload-container" }, [ vue.createElementVNode("view", { class: "preview" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.images, (img, index) => { return vue.openBlock(), vue.createElementBlock("view", { key: index, class: "image-container" }, [ vue.createElementVNode("image", { src: img.path, class: "preview-image", mode: "aspectFill", onClick: ($event) => $setup.openPreview(img.path) }, null, 8, ["src", "onClick"]), vue.createElementVNode("progress", { percent: img.progress || 0, activeColor: Number(img.progress || 0) === 100 ? "#00ff00" : "#10AEFF", "stroke-width": "3" }, null, 8, ["percent", "activeColor"]), img.status === "success" ? (vue.openBlock(), vue.createElementBlock("text", { key: 0 }, "1")) : vue.createCommentVNode("v-if", true), vue.createVNode(_component_uni_icons, { class: "delete-icon", onClick: ($event) => $setup.deleteImage(index), type: "clear", size: "20", color: "red" }, null, 8, ["onClick"]) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.images.length < $setup.maxImages ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "choose-image-container", onClick: $setup.chooseImage }, [ vue.createVNode(_component_uni_icons, { type: "plusempty", size: "40", color: "#ccc" }) ])) : vue.createCommentVNode("v-if", true) ]), vue.createElementVNode("text", { style: { "padding-top": "8px" } }, "最多选择6张图片"), vue.createCommentVNode(" 放大预览 "), $setup.previewImage ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "preview-modal", onClick: $setup.closePreview }, [ vue.createElementVNode("image", { src: $setup.previewImage, class: "preview-large", mode: "aspectFit", onClick: vue.withModifiers($setup.closePreview, ["stop"]) }, null, 8, ["src"]) ])) : vue.createCommentVNode("v-if", true) ]) ]), _: 1 /* STABLE */ }) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "info", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]) ]), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, [ vue.createTextVNode( vue.toDisplayString(item.orderNum) + " ", 1 /* TEXT */ ), item.space ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, "仓位编码: " + vue.toDisplayString(item.space), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createTextVNode( " " + vue.toDisplayString(item.type), 1 /* TEXT */ ) ], 4 /* STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "message", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ), vue.createVNode( _component_uni_popup, { ref: "printerDialog", type: "dialog", "is-mask-click": false }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { style: { "width": "90%", "margin": "0 auto", "min-height": "250px", "background-color": "#fff", "border-radius": "5px" } }, [ vue.createElementVNode("view", { class: "", style: { "font-size": "20px", "border-bottom": "1px solid #e1e1e1", "padding": "15px 10px" } }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { style: { "margin-bottom": "20px" } }, [ vue.createElementVNode("text", null, "打印尾程面单") ]), vue.createElementVNode("view", null, [ $setup.printerList ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ vue.createElementVNode("view", null, [ vue.createVNode(_component_uni_data_checkbox, { multiple: "", modelValue: $setup.sendToPeinter, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.sendToPeinter = $event), localdata: [ { text: "发送到标签打印机打印", value: 1 } ], onChange: $setup.sendToPeinterFun }, { default: vue.withCtx(() => [ vue.createTextVNode(" > ") ]), _: 1 /* STABLE */ }, 8, ["modelValue"]), vue.createVNode(_component_uni_data_checkbox, { disabled: $setup.sendToPeinter.length === 0, modelValue: $setup.selectPrinter, "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => $setup.selectPrinter = $event), localdata: $setup.printers }, null, 8, ["disabled", "modelValue", "localdata"]) ]) ])) : vue.createCommentVNode("v-if", true) ]) ]), vue.createElementVNode("view", { style: { "text-align": "center", "position": "absolute", "bottom": "10px", "width": "90%", "display": "flex", "margin": "0 auto", "left": "0", "right": "0" } }, [ vue.createElementVNode("button", { onClick: $setup.close, style: { "width": "35%" } }, "关闭"), vue.createElementVNode("button", { onClick: $setup.printConfirm, "hover-stay-time": 500, loading: $setup.subLoading, disabled: $setup.sendToPeinter.length === 0 || $setup.subLoading, class: "my-bt-bg", style: { "width": "35%" } }, " 打印 ", 8, ["loading", "disabled"]) ]) ]) ]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesInboundInbound = /* @__PURE__ */ _export_sfc(_sfc_main$z, [["render", _sfc_render$y], ["__scopeId", "data-v-4cc835f2"], ["__file", "E:/demo/hmrabbit/src/pages/inbound/inbound.vue"]]); const _sfc_main$y = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const historyList = vue.ref([]); const getHistory = () => { historyList.value = uni.getStorageSync("inboundHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { historyList, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$x(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, [ vue.createTextVNode( vue.toDisplayString(item.orderNum) + " ", 1 /* TEXT */ ), item.space ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, "仓位编码: " + vue.toDisplayString(item.space), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createTextVNode( " " + vue.toDisplayString(item.type), 1 /* TEXT */ ) ], 4 /* STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.historyList.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesInboundLogList = /* @__PURE__ */ _export_sfc(_sfc_main$y, [["render", _sfc_render$x], ["__scopeId", "data-v-5286bcd7"], ["__file", "E:/demo/hmrabbit/src/pages/inbound/logList.vue"]]); const en$1 = { "uni-popup.cancel": "cancel", "uni-popup.ok": "ok", "uni-popup.placeholder": "pleace enter", "uni-popup.title": "Hint", "uni-popup.shareTitle": "Share to" }; const zhHans$1 = { "uni-popup.cancel": "取消", "uni-popup.ok": "确定", "uni-popup.placeholder": "请输入", "uni-popup.title": "提示", "uni-popup.shareTitle": "分享到" }; const zhHant$1 = { "uni-popup.cancel": "取消", "uni-popup.ok": "確定", "uni-popup.placeholder": "請輸入", "uni-popup.title": "提示", "uni-popup.shareTitle": "分享到" }; const messages$1 = { en: en$1, "zh-Hans": zhHans$1, "zh-Hant": zhHant$1 }; const { t: t$1 } = initVueI18n(messages$1); const _sfc_main$x = { name: "uniPopupDialog", mixins: [popup], emits: ["confirm", "close"], props: { value: { type: [String, Number], default: "" }, placeholder: { type: [String, Number], default: "" }, type: { type: String, default: "error" }, mode: { type: String, default: "base" }, title: { type: String, default: "" }, content: { type: String, default: "" }, beforeClose: { type: Boolean, default: false }, cancelText: { type: String, default: "" }, confirmText: { type: String, default: "" } }, data() { return { dialogType: "error", focus: false, val: "" }; }, computed: { okText() { return this.confirmText || t$1("uni-popup.ok"); }, closeText() { return this.cancelText || t$1("uni-popup.cancel"); }, placeholderText() { return this.placeholder || t$1("uni-popup.placeholder"); }, titleText() { return this.title || t$1("uni-popup.title"); } }, watch: { type(val) { this.dialogType = val; }, mode(val) { if (val === "input") { this.dialogType = "info"; } }, value(val) { this.val = val; } }, created() { this.popup.disableMask(); if (this.mode === "input") { this.dialogType = "info"; this.val = this.value; } else { this.dialogType = this.type; } }, mounted() { this.focus = true; }, methods: { /** * 点击确认按钮 */ onOk() { if (this.mode === "input") { this.$emit("confirm", this.val); } else { this.$emit("confirm"); } if (this.beforeClose) return; this.popup.close(); }, /** * 点击取消按钮 */ closeDialog() { this.$emit("close"); if (this.beforeClose) return; this.popup.close(); }, close() { this.popup.close(); } } }; function _sfc_render$w(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-popup-dialog" }, [ vue.createElementVNode("view", { class: "uni-dialog-title" }, [ vue.createElementVNode( "text", { class: vue.normalizeClass(["uni-dialog-title-text", ["uni-popup__" + $data.dialogType]]) }, vue.toDisplayString($options.titleText), 3 /* TEXT, CLASS */ ) ]), $props.mode === "base" ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "uni-dialog-content" }, [ vue.renderSlot(_ctx.$slots, "default", {}, () => [ vue.createElementVNode( "text", { class: "uni-dialog-content-text" }, vue.toDisplayString($props.content), 1 /* TEXT */ ) ], true) ])) : (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "uni-dialog-content" }, [ vue.renderSlot(_ctx.$slots, "default", {}, () => [ vue.withDirectives(vue.createElementVNode("input", { class: "uni-dialog-input", "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.val = $event), type: "text", placeholder: $options.placeholderText, focus: $data.focus }, null, 8, ["placeholder", "focus"]), [ [vue.vModelText, $data.val] ]) ], true) ])), vue.createElementVNode("view", { class: "uni-dialog-button-group" }, [ vue.createElementVNode("view", { class: "uni-dialog-button", onClick: _cache[1] || (_cache[1] = (...args) => $options.closeDialog && $options.closeDialog(...args)) }, [ vue.createElementVNode( "text", { class: "uni-dialog-button-text" }, vue.toDisplayString($options.closeText), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "uni-dialog-button uni-border-left", onClick: _cache[2] || (_cache[2] = (...args) => $options.onOk && $options.onOk(...args)) }, [ vue.createElementVNode( "text", { class: "uni-dialog-button-text uni-button-color" }, vue.toDisplayString($options.okText), 1 /* TEXT */ ) ]) ]) ]); } const __easycom_6 = /* @__PURE__ */ _export_sfc(_sfc_main$x, [["render", _sfc_render$w], ["__scopeId", "data-v-678a307f"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-popup-dialog/uni-popup-dialog.vue"]]); const _sfc_main$w = /* @__PURE__ */ vue.defineComponent({ __name: "weigh", setup(__props, { expose: __expose }) { __expose(); const alertDialog = vue.ref(); const message = vue.ref(); const valiForm = vue.ref(); const printerDialog = vue.ref(); const loading = vue.ref(false); const images = vue.ref([]); const messageType = vue.ref(""); const messageText = vue.ref(""); const previewImage = vue.ref(null); const maxImages = vue.ref(6); const printerList = vue.ref(); const historyList = vue.ref([]); const printers = vue.ref([]); const sendToPeinter = vue.ref([1]); const selectPrinter = vue.ref(0); const subLoading = vue.ref(false); const focusType = vue.ref(true); const result = vue.ref(); const valiFormData = vue.reactive({ images: [], orderNum: "", weight: "", typing: true }); const rules = vue.computed(() => { return { orderNum: { rules: [ { required: true, errorMessage: "单号不能为空" } ] }, weight: { rules: [ { required: true, errorMessage: "重量不能为空" }, { format: "number", errorMessage: "重量只能输入数字" } ] } }; }); onShow(async () => { focusType.value = true; loading.value = false; await Promise.all([_getPrinterList()]); }); onHide(() => { focusType.value = false; loading.value = false; }); onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/weigh/logList" }); } }); const _getPrinterList = async () => { const res = await getPrinterList(); if (res.code === 1) { printerList.value = res.data.printers; printers.value = Object.values(printerList.value).map((item) => { return { text: item.name, value: item.value }; }); } }; const reset = () => { loading.value = false; focusType.value = false; images.value = []; valiFormData.orderNum = ""; valiFormData.weight = ""; valiFormData.typing = true; vue.nextTick(() => { focusType.value = true; }); }; const scan = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { result.value = res.result; valiFormData.orderNum = res.result; }, fail: (err) => { } }); }; let st2; const warehouseScan2 = async () => { st2 && clearTimeout(st2); await _checkWaybillGoods(); }; const _checkWaybillGoods = async () => { loading.value = true; const res = await checkWaybillGoods(valiFormData.orderNum); if (res.code === 1) { if (res.data.is_goods_empty) { alertDialog.value.open(); } else { weighScan(0); } } else { messageType.value = "error"; messageText.value = res.msg; message.value.open(); loading.value = false; } }; const weighScan = async (is_save_goods) => { const images2 = getImages(); let allImgVerify = true; for (var i2 = 0; i2 < images2.length; i2++) { if (!images2[i2].savePath) { allImgVerify = false; } } if (!allImgVerify) { messageType.value = "error"; messageText.value = "图片还没上传完毕,请稍后..."; message.value.open(); loading.value = false; return; } const res = await weigh({ order_no: valiFormData.orderNum, weight: valiFormData.weight, is_save_goods, images: images2 }); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, createTime: /* @__PURE__ */ new Date(), type: "称重", status: true }; historyList.value.unshift(historyItem); uni.setStorageSync("weighHistory", historyList.value); getHistory(); if (res.data.express_label) { selectPrinter.value = sendToPeinter.value.length > 0 ? printers.value[0].value : 0; printerDialog.value.open(); } else { st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 1e3); } } else { messageType.value = "error"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, createTime: /* @__PURE__ */ new Date(), type: "称重", status: false }; historyList.value.unshift(historyItem); uni.setStorageSync("weighHistory", historyList.value); getHistory(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 1e3); } }; const close = () => { printerDialog.value.close(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 700); }; const dialogConfirm = () => { weighScan(1); }; const dialogClose = () => { weighScan(0); }; const sendToPeinterFun = (res) => { if (res.detail.value.length === 0) { selectPrinter.value = 0; } else { selectPrinter.value = printers.value[0].value; } }; const printConfirm = async () => { subLoading.value = true; const res = await printWaybillLabel({ order_no: valiFormData.orderNum, printer_code: selectPrinter }); close(); subLoading.value = false; formatAppLog("log", "at pages/weigh/weigh.vue:450", "打印成功", res); messageType.value = "success"; messageText.value = "打印成功"; message.value.open(); }; const onsubmit = () => { valiForm.value.validate().then((res) => { warehouseScan2(); }).catch((err) => { formatAppLog("log", "at pages/weigh/weigh.vue:462", "err", err); }); }; const getHistory = () => { historyList.value = uni.getStorageSync("weighHistory"); }; const getImages = () => { const res = images.value.map((item) => { return { name: item.name, savePath: item.serverUrl, fileSize: item.size, mimeType: item.type }; }); return res; }; const _getAliyunOssSignature = async (rawFiles) => { const res = await getAliyunOssSignature(); const signature = res.data.signature; const uploadPromises = rawFiles.map((image) => { return upLoadFile(signature, image); }); Promise.all(uploadPromises).then((results) => { uni.showToast({ title: "加载成功", icon: "success" }); }).catch((error) => { formatAppLog("error", "at pages/weigh/weigh.vue:497", "加载失败:", error); uni.showToast({ title: "加载失败", icon: "none" }); }); }; const upLoadFile = (signature, image) => { const fileData = { policy: signature.policy, signature: signature.signature, ossaccessKeyId: signature.ossAccessKeyId, key: signature.dir + dayjs().format("YYYYMMDD") + "/" + uuid() + "_" + image.name, dir: signature.dir, host: signature.host, file: image.file }; return new Promise((resolve, reject) => { let name = image.name; name = "file"; const uploadTask = uni.uploadFile({ url: signature.host, // 你的上传接口地址 filePath: image.path, name, // 这里根据后端需要的字段来定义 formData: fileData, success: (uploadFileRes) => { if (uploadFileRes.statusCode === 204 || uploadFileRes.statusCode === 200) { image.serverUrl = fileData.key; resolve(uploadFileRes); } else { reject(uploadFileRes); } }, fail: (error) => { formatAppLog("log", "at pages/weigh/weigh.vue:542", "error++", error); reject(error); }, // 更新上传进度 complete: () => { formatAppLog("log", "at pages/weigh/weigh.vue:547", "complete---"); image.progress = 100; } }); uploadTask.onProgressUpdate((progressEvent) => { image.progress = progressEvent.progress; }); }); }; const chooseImage = () => { uni.chooseImage({ count: maxImages.value - images.value.length, success: (res) => { images.value = images.value.concat( res.tempFiles.map((item) => { const res2 = { size: item.size, path: item.path, name: item.name, type: item.type, progress: 0, file: item }; const suffix = item.path.substring(item.path.lastIndexOf(".") + 1); const fileName = item.path.substring(item.path.lastIndexOf("/") + 1); res2.name = fileName; res2.type = suffix; return res2; }) ); const paddingImages = images.value.filter((image) => image.progress === 0); vue.nextTick(() => { _getAliyunOssSignature(paddingImages); }); }, fail: (err) => { formatAppLog("error", "at pages/weigh/weigh.vue:592", err); } }); }; const deleteImage = (index) => { images.value.splice(index, 1); }; const openPreview = (image) => { previewImage.value = image; }; const closePreview = () => { previewImage.value = null; }; const __returned__ = { alertDialog, message, valiForm, printerDialog, loading, images, messageType, messageText, previewImage, maxImages, printerList, historyList, printers, sendToPeinter, selectPrinter, subLoading, focusType, result, valiFormData, rules, _getPrinterList, reset, scan, get st() { return st2; }, set st(v2) { st2 = v2; }, warehouseScan: warehouseScan2, _checkWaybillGoods, weighScan, close, dialogConfirm, dialogClose, sendToPeinterFun, printConfirm, onsubmit, getHistory, getImages, _getAliyunOssSignature, upLoadFile, chooseImage, deleteImage, openPreview, closePreview }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$v(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); const _component_uni_popup_dialog = resolveEasycom(vue.resolveDynamicComponent("uni-popup-dialog"), __easycom_6); const _component_uni_data_checkbox = resolveEasycom(vue.resolveDynamicComponent("uni-data-checkbox"), __easycom_7); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createElementVNode("view", { class: "example" }, [ vue.createCommentVNode(" 基础表单校验 "), vue.createVNode(_component_uni_forms, { ref: "valiForm", "label-align": "right", "label-width": "80px", rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_forms_item, { label: "单号", required: "", name: "orderNum" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.orderNum, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.orderNum = $event), placeholder: "请输入单号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scan }, null, 8, ["modelValue", "focus"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "重量", required: "", name: "weight" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.weight, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.valiFormData.weight = $event), placeholder: "请输入重量", oninput: "value=value.replace(/[^\\d.]/g,'').replace(/^\\./g, '').replace(/\\.{2,}/g, '').replace('.', '$#$').replace(/\\./g, '').replace('$#$', '.').match(/^\\d*(\\.?\\d{0,2})/g)[0] || null" }, { right: vue.withCtx(() => [ vue.createElementVNode("view", { class: "weight-right" }, "KG") ]), _: 1 /* STABLE */ }, 8, ["modelValue"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "图片", name: "images" }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "upload-container" }, [ vue.createElementVNode("view", { class: "preview" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.images, (img, index) => { return vue.openBlock(), vue.createElementBlock("view", { key: index, class: "image-container" }, [ vue.createElementVNode("image", { src: img.path, class: "preview-image", mode: "aspectFill", onClick: ($event) => $setup.openPreview(img.path) }, null, 8, ["src", "onClick"]), vue.createElementVNode("progress", { percent: img.progress || 0, activeColor: Number(img.progress || 0) === 100 ? "#00ff00" : "#10AEFF", "stroke-width": "3" }, null, 8, ["percent", "activeColor"]), img.status === "success" ? (vue.openBlock(), vue.createElementBlock("text", { key: 0 }, "1")) : vue.createCommentVNode("v-if", true), vue.createVNode(_component_uni_icons, { class: "delete-icon", onClick: ($event) => $setup.deleteImage(index), type: "clear", size: "20", color: "red" }, null, 8, ["onClick"]) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.images.length < $setup.maxImages ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "choose-image-container", onClick: $setup.chooseImage }, [ vue.createVNode(_component_uni_icons, { type: "plusempty", size: "40", color: "#ccc" }) ])) : vue.createCommentVNode("v-if", true) ]), vue.createElementVNode("text", { style: { "padding-top": "8px" } }, "最多选择6张图片"), vue.createCommentVNode(" 放大预览 "), $setup.previewImage ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "preview-modal", onClick: $setup.closePreview }, [ vue.createElementVNode("image", { src: $setup.previewImage, class: "preview-large", mode: "aspectFit", onClick: vue.withModifiers($setup.closePreview, ["stop"]) }, null, 8, ["src"]) ])) : vue.createCommentVNode("v-if", true) ]) ]), _: 1 /* STABLE */ }) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "info", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]) ]), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.orderNum) + " " + vue.toDisplayString(item.type), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "message", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ), vue.createVNode( _component_uni_popup, { ref: "alertDialog", type: "dialog" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_dialog, { type: "info", cancelText: "否", confirmText: "是", title: "提示", content: "是否按默认申报(默认申报为:衣服,10件,单价1)", onConfirm: $setup.dialogConfirm, onClose: $setup.dialogClose }) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ), vue.createVNode( _component_uni_popup, { ref: "printerDialog", type: "dialog", "is-mask-click": false }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { style: { "width": "90%", "margin": "0 auto", "min-height": "250px", "background-color": "#fff", "border-radius": "5px" } }, [ vue.createElementVNode("view", { class: "", style: { "font-size": "20px", "border-bottom": "1px solid #e1e1e1", "padding": "15px 10px" } }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { style: { "margin-bottom": "20px" } }, [ vue.createElementVNode("text", null, "打印尾程面单") ]), vue.createElementVNode("view", null, [ $setup.printerList ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ vue.createElementVNode("view", null, [ vue.createVNode(_component_uni_data_checkbox, { multiple: "", modelValue: $setup.sendToPeinter, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.sendToPeinter = $event), localdata: [ { text: "发送到标签打印机打印", value: 1 } ], onChange: $setup.sendToPeinterFun }, { default: vue.withCtx(() => [ vue.createTextVNode(" > ") ]), _: 1 /* STABLE */ }, 8, ["modelValue"]), vue.createVNode(_component_uni_data_checkbox, { disabled: $setup.sendToPeinter.length === 0, modelValue: $setup.selectPrinter, "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => $setup.selectPrinter = $event), localdata: $setup.printers }, null, 8, ["disabled", "modelValue", "localdata"]) ]) ])) : vue.createCommentVNode("v-if", true) ]) ]), vue.createElementVNode("view", { style: { "text-align": "center", "position": "absolute", "bottom": "10px", "width": "90%", "display": "flex", "margin": "0 auto", "left": "0", "right": "0" } }, [ vue.createElementVNode("button", { onClick: $setup.close, style: { "width": "35%" } }, "关闭"), vue.createElementVNode("button", { onClick: $setup.printConfirm, "hover-stay-time": 500, loading: $setup.subLoading, disabled: $setup.sendToPeinter.length === 0 || $setup.subLoading, class: "my-bt-bg", style: { "width": "35%" } }, " 打印 ", 8, ["loading", "disabled"]) ]) ]) ]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesWeighWeigh = /* @__PURE__ */ _export_sfc(_sfc_main$w, [["render", _sfc_render$v], ["__scopeId", "data-v-6f825acf"], ["__file", "E:/demo/hmrabbit/src/pages/weigh/weigh.vue"]]); const _sfc_main$v = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const historyList = vue.ref([]); const getHistory = () => { historyList.value = uni.getStorageSync("weighHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { historyList, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$u(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.orderNum) + " " + vue.toDisplayString(item.type), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.historyList.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesWeighLogList = /* @__PURE__ */ _export_sfc(_sfc_main$v, [["render", _sfc_render$u], ["__scopeId", "data-v-4fa869ac"], ["__file", "E:/demo/hmrabbit/src/pages/weigh/logList.vue"]]); const _sfc_main$u = /* @__PURE__ */ vue.defineComponent({ __name: "outbound", setup(__props, { expose: __expose }) { __expose(); const message = vue.ref(); const valiForm = vue.ref(); const printerDialog = vue.ref(); const loading = vue.ref(false); const messageType = vue.ref(""); const messageText = vue.ref(""); const batchOptions = vue.ref([]); const printerList = vue.ref(); const historyList = vue.ref([]); const printers = vue.ref([]); const sendToPeinter = vue.ref([1]); const selectPrinter = vue.ref(0); const subLoading = vue.ref(false); const focusType = vue.ref(true); const result = vue.ref(); const valiFormData = vue.reactive({ orderNum: "", batch_number: "", weight: "", typing: true }); const rules = vue.computed(() => { return { orderNum: { rules: [ { required: false, errorMessage: "单号不能为空" } ] } }; }); onShow(async () => { focusType.value = true; loading.value = false; await Promise.all([_getBindParams(), _getPrinterList()]); }); onHide(() => { focusType.value = false; loading.value = false; }); onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/outbound/logList" }); } }); const _getBindParams = async () => { const res = await getBindParams$1(); if (res.code === 1) { batchOptions.value = res.data.batch_number.map((item) => { return { text: item.name, value: item.id }; }); } }; const _getPrinterList = async () => { const res = await getPrinterList(); if (res.code === 1) { printerList.value = res.data.printers; printers.value = Object.values(printerList.value).map((item) => { return { text: item.name, value: item.value }; }); } }; const batchText = (batch_number) => { var _a; return (_a = batchOptions.value.find((item) => item.value === batch_number)) == null ? void 0 : _a.text; }; const reset = () => { loading.value = false; focusType.value = false; valiFormData.orderNum = ""; valiFormData.batch_number = ""; valiFormData.weight = ""; valiFormData.typing = true; vue.nextTick(() => { focusType.value = true; }); }; const scan = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { result.value = res.result; valiFormData.orderNum = res.result; }, fail: (err) => { } }); }; let st2; const warehouseScan2 = async () => { st2 && clearTimeout(st2); await scanOutstock(); }; const scanOutstock = async () => { formatAppLog("log", "at pages/outbound/outbound.vue:268", valiFormData.orderNum, valiFormData.batch_number); if (valiFormData.orderNum.length === 0 && valiFormData.batch_number.length === 0) { messageType.value = "error"; messageText.value = "单号或批次号至少填一个"; message.value.open(); return; } loading.value = true; const res = await outStock({ order_no: valiFormData.orderNum, batch_number: valiFormData.batch_number }); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, batch_text: batchText(valiFormData.batch_number), createTime: /* @__PURE__ */ new Date(), type: "出库", status: true }; historyList.value.unshift(historyItem); historyList.value.length > 10 && (historyList.value.length = 10); uni.setStorageSync("outboundHistory", historyList.value); getHistory(); if (res.data.labels && res.data.labels.length > 0) { selectPrinter.value = sendToPeinter.value.length > 0 ? printers.value[0].value : 0; printerDialog.value.open(); loading.value = false; } else { st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); loading.value = false; }, 700); } } else { messageType.value = "error"; messageText.value = res.msg; message.value.open(); const historyItem = { orderNum: valiFormData.orderNum, batch_text: batchText(valiFormData.batch_number), createTime: /* @__PURE__ */ new Date(), type: "出库", status: false }; historyList.value.unshift(historyItem); historyList.value.length > 10 && (historyList.value.length = 10); uni.setStorageSync("outboundHistory", historyList.value); getHistory(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); loading.value = false; }, 700); } }; const close = () => { printerDialog.value.close(); st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 700); }; const sendToPeinterFun = (res) => { if (res.detail.value.length === 0) { selectPrinter.value = 0; } else { selectPrinter.value = printers.value[0].value; } }; const printConfirm = async () => { subLoading.value = true; const res = await printWaybillLabel({ order_no: valiFormData.orderNum, printer_code: selectPrinter }); close(); subLoading.value = false; formatAppLog("log", "at pages/outbound/outbound.vue:357", "打印成功", res); messageType.value = "success"; messageText.value = "打印成功"; message.value.open(); }; const onsubmit = () => { valiForm.value.validate().then((res) => { warehouseScan2(); }).catch((err) => { formatAppLog("log", "at pages/outbound/outbound.vue:369", "err", err); }); }; const getHistory = () => { historyList.value = uni.getStorageSync("outboundHistory"); }; const __returned__ = { message, valiForm, printerDialog, loading, messageType, messageText, batchOptions, printerList, historyList, printers, sendToPeinter, selectPrinter, subLoading, focusType, result, valiFormData, rules, _getBindParams, _getPrinterList, batchText, reset, scan, get st() { return st2; }, set st(v2) { st2 = v2; }, warehouseScan: warehouseScan2, scanOutstock, close, sendToPeinterFun, printConfirm, onsubmit, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$t(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_data_select = resolveEasycom(vue.resolveDynamicComponent("uni-data-select"), __easycom_0$3); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); const _component_uni_data_checkbox = resolveEasycom(vue.resolveDynamicComponent("uni-data-checkbox"), __easycom_7); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createElementVNode("view", { class: "example" }, [ vue.createCommentVNode(" 基础表单校验 "), vue.createVNode(_component_uni_forms, { ref: "valiForm", "label-align": "right", "label-width": "80px", rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_forms_item, { label: "单号", required: false, name: "orderNum" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.orderNum, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.orderNum = $event), placeholder: "请输入单号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scan }, null, 8, ["modelValue", "focus"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "批次号", name: "batch_number" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_data_select, { modelValue: $setup.valiFormData.batch_number, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.valiFormData.batch_number = $event), localdata: $setup.batchOptions, placeholder: "请选择批次号" }, null, 8, ["modelValue", "localdata"]) ]), _: 1 /* STABLE */ }) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "info", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]) ]), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, [ vue.createTextVNode( vue.toDisplayString(item.orderNum) + " ", 1 /* TEXT */ ), item.batch_text ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, "批次号: " + vue.toDisplayString(item.batch_text), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createTextVNode( " " + vue.toDisplayString(item.type), 1 /* TEXT */ ) ], 4 /* STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "message", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ), vue.createVNode( _component_uni_popup, { ref: "printerDialog", type: "dialog", "is-mask-click": false }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { style: { "width": "90%", "margin": "0 auto", "min-height": "250px", "background-color": "#fff", "border-radius": "5px" } }, [ vue.createElementVNode("view", { class: "", style: { "font-size": "20px", "border-bottom": "1px solid #e1e1e1", "padding": "15px 10px" } }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", { style: { "margin-bottom": "20px" } }, [ vue.createElementVNode("text", null, "打印尾程面单") ]), vue.createElementVNode("view", null, [ $setup.printerList ? (vue.openBlock(), vue.createElementBlock("view", { key: 0 }, [ vue.createElementVNode("view", null, [ vue.createVNode(_component_uni_data_checkbox, { multiple: "", modelValue: $setup.sendToPeinter, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.sendToPeinter = $event), localdata: [ { text: "发送到标签打印机打印", value: 1 } ], onChange: $setup.sendToPeinterFun }, { default: vue.withCtx(() => [ vue.createTextVNode(" > ") ]), _: 1 /* STABLE */ }, 8, ["modelValue"]), vue.createVNode(_component_uni_data_checkbox, { disabled: $setup.sendToPeinter.length === 0, modelValue: $setup.selectPrinter, "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => $setup.selectPrinter = $event), localdata: $setup.printers }, null, 8, ["disabled", "modelValue", "localdata"]) ]) ])) : vue.createCommentVNode("v-if", true) ]) ]), vue.createElementVNode("view", { style: { "text-align": "center", "position": "absolute", "bottom": "10px", "width": "90%", "display": "flex", "margin": "0 auto", "left": "0", "right": "0" } }, [ vue.createElementVNode("button", { onClick: $setup.close, style: { "width": "35%" } }, "关闭"), vue.createElementVNode("button", { onClick: $setup.printConfirm, "hover-stay-time": 500, loading: $setup.subLoading, disabled: $setup.sendToPeinter.length === 0 || $setup.subLoading, class: "my-bt-bg", style: { "width": "35%" } }, " 打印 ", 8, ["loading", "disabled"]) ]) ]) ]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesOutboundOutbound = /* @__PURE__ */ _export_sfc(_sfc_main$u, [["render", _sfc_render$t], ["__scopeId", "data-v-b3062ebb"], ["__file", "E:/demo/hmrabbit/src/pages/outbound/outbound.vue"]]); const _sfc_main$t = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const historyList = vue.ref([]); const getHistory = () => { historyList.value = uni.getStorageSync("outboundHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { historyList, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$s(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.historyList, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, [ vue.createTextVNode( vue.toDisplayString(item.orderNum) + " ", 1 /* TEXT */ ), item.batch_text ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, "批次号: " + vue.toDisplayString(item.batch_text), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createTextVNode( " " + vue.toDisplayString(item.type), 1 /* TEXT */ ) ], 4 /* STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.historyList.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesOutboundLogList = /* @__PURE__ */ _export_sfc(_sfc_main$t, [["render", _sfc_render$s], ["__scopeId", "data-v-c14564f1"], ["__file", "E:/demo/hmrabbit/src/pages/outbound/logList.vue"]]); const warehouseScan = (data) => { return http({ method: "POST", url: "/admin/order.sheetOrder/warehouseScan", data }); }; const _sfc_main$s = /* @__PURE__ */ vue.defineComponent({ __name: "warehouseScan", setup(__props, { expose: __expose }) { __expose(); const valiFormRef = vue.ref(); const loading = vue.ref(false); const hidePage = vue.ref(false); const focusType = vue.ref(true); const warehouseLogHistory = vue.ref([]); const messageRef = vue.ref(); const messageType = vue.ref(); const messageText = vue.ref(); let st2; const valiFormData = vue.ref({ order_code: "" }); const rules = vue.reactive({ order_code: { rules: [ { required: true, errorMessage: "单据编号不能为空" } ] } }); const scanInput = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { valiFormData.value.order_code = res.result; onsubmit(); }, fail: (err) => { } }); }; const reset = () => { loading.value = false; valiFormData.value.order_code = ""; }; const setfocus = () => { if (hidePage.value) { return; } focusType.value = false; vue.nextTick(() => { focusType.value = true; }); }; const onsubmit = async () => { st2 && clearTimeout(st2); const valiRes = await valiFormRef.value.validate(); if (!valiRes) { return; } loading.value = true; const res = await warehouseScan({ order_code: valiFormData.value.order_code }); formatAppLog("log", "at pages/warehouseScan/warehouseScan.vue:143", "res---", res); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; messageRef.value.open(); const historyItem = { order_code: valiFormData.value.order_code, createTime: /* @__PURE__ */ new Date(), type: "单据扫描", status: true }; warehouseLogHistory.value.unshift(historyItem); uni.setStorageSync("warehouseLogHistory", warehouseLogHistory.value); getHistory(); } else { messageType.value = "error"; messageText.value = res.msg; messageRef.value.open(); const historyItem = { order_code: valiFormData.value.order_code, createTime: /* @__PURE__ */ new Date(), type: "单据扫描", status: false }; warehouseLogHistory.value.unshift(historyItem); uni.setStorageSync("warehouseLogHistory", warehouseLogHistory.value); getHistory(); } st2 = setTimeout(() => { reset(); st2 && clearTimeout(st2); }, 1e3); }; const getHistory = () => { warehouseLogHistory.value = uni.getStorageSync("warehouseLogHistory") || []; }; const keypress = (e2) => { if (e2.keyCode === 102 || e2.keyCode === 103 || e2.keyCode === 104) ; if (e2.keyCode == 66) { onsubmit(); } }; onLoad(() => { plus.key.addEventListener("keyup", keypress); }); onUnload(() => { plus.key.removeEventListener("keyup", keypress); }); onHide(() => { hidePage.value = true; plus.key.removeEventListener("keyup", keypress); }); onBackPress(() => { plus.key.removeEventListener("keyup", keypress); }); onShow(() => { hidePage.value = false; getHistory(); }); onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/warehouseScan/logList" }); } }); const __returned__ = { valiFormRef, loading, hidePage, focusType, warehouseLogHistory, messageRef, messageType, messageText, get st() { return st2; }, set st(v2) { st2 = v2; }, valiFormData, rules, scanInput, reset, setfocus, onsubmit, getHistory, keypress }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$r(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createVNode(_component_uni_forms, { ref: "valiFormRef", "label-align": "right", "label-width": 80, rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_forms_item, { label: "单据编号", required: "", name: "order_code" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.order_code, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.order_code = $event), placeholder: "请输入单据编号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scanInput, onBlur: $setup.setfocus, onConfirm: $setup.onsubmit }, null, 8, ["modelValue", "focus"]) ]), _: 1 /* STABLE */ }) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "default", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]), $setup.warehouseLogHistory.length > 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "history" }, [ vue.createElementVNode("text", { class: "title" }, "记录(最近5条)") ])) : vue.createCommentVNode("v-if", true), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.warehouseLogHistory.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.order_code), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesWarehouseScanWarehouseScan = /* @__PURE__ */ _export_sfc(_sfc_main$s, [["render", _sfc_render$r], ["__scopeId", "data-v-30c3024c"], ["__file", "E:/demo/hmrabbit/src/pages/warehouseScan/warehouseScan.vue"]]); const _sfc_main$r = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const warehouseLogHistory = vue.ref([]); const getHistory = () => { warehouseLogHistory.value = uni.getStorageSync("warehouseLogHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { warehouseLogHistory, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$q(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.warehouseLogHistory, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "type" }, vue.toDisplayString(item.type), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.order_code), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.warehouseLogHistory.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesWarehouseScanLogList = /* @__PURE__ */ _export_sfc(_sfc_main$r, [["render", _sfc_render$q], ["__scopeId", "data-v-4f138066"], ["__file", "E:/demo/hmrabbit/src/pages/warehouseScan/logList.vue"]]); const modal = requireNativePlugin("modal"); var AutoReplyPrintUniModule = requireNativePlugin("AutoReplyPrintUniModule"); var hPrinter = 0; var isEnumeratingBT2 = false; var isEnumeratingNET = false; var selectedPortType = "rbBT2"; const _sfc_main$q = { data() { return { udsBT2Value: 0, udsBT2Range: [], udsNETValue: 0, udsNETRange: [], udsUSBValue: 0, udsUSBRange: [], udsCOMValue: 0, udsCOMRange: [], udsCOMBaudrateValue: 9600, udsCOMBaudrateRange: [ { text: "9600", value: 9600 }, { text: "19200", value: 19200 }, { text: "38400", value: 38400 }, { text: "57600", value: 57600 }, { text: "115200", value: 115200 }, { text: "230400", value: 230400 }, { text: "256000", value: 256e3 }, { text: "500000", value: 5e5 } ], udsCOMFlowControlValue: 0, udsCOMFlowControlRange: [ { text: "NoFlowControl", value: 0 }, { text: "Hardware", value: 2 } ], btnOpenPortDisabled: false, btnClosePortDisabled: true }; }, onLoad() { uni.setNavigationBarTitle({ title: "SampleLabel " + AutoReplyPrintUniModule.CP_Library_Version() }); }, onReady() { }, methods: { radioChange: function(evt) { selectedPortType = evt.detail.value; }, enumPort() { var newComRange = new Array(); var comNameList = AutoReplyPrintUniModule.CP_Port_EnumCom(); if (comNameList != null) { for (var i2 = 0; i2 < comNameList.length; i2++) { var tmp = { text: comNameList[i2], value: i2 }; formatAppLog("log", "at pages/printer/printer.vue:176", tmp); newComRange.push(tmp); } } this.udsCOMRange = newComRange; var newUsbRange = new Array(); var usbNameList = AutoReplyPrintUniModule.CP_Port_EnumUsb(); if (usbNameList != null) { for (var i2 = 0; i2 < usbNameList.length; i2++) { var tmp = { text: usbNameList[i2], value: i2 }; formatAppLog("log", "at pages/printer/printer.vue:190", tmp); newUsbRange.push(tmp); } } this.udsUSBRange = newUsbRange; if (!isEnumeratingBT2) { isEnumeratingBT2 = true; formatAppLog("log", "at pages/printer/printer.vue:198", "isEnumeratingBT2"); AutoReplyPrintUniModule.CP_Port_EnumBtDevice( 12e3, (ret) => { var text = ret.device_address + "(" + ret.device_name + ")"; for (var i3 = 0; i3 < this.udsBT2Range.length; i3++) { if (this.udsBT2Range[i3].text == text) { return; } } var tmp2 = { text, value: this.udsBT2Range.length }; formatAppLog("log", "at pages/printer/printer.vue:213", tmp2); this.udsBT2Range.push(tmp2); }, (ret) => { isEnumeratingBT2 = false; formatAppLog("log", "at pages/printer/printer.vue:218", "finishedEnumeratingBT2"); } ); } if (!isEnumeratingNET) { isEnumeratingNET = true; formatAppLog("log", "at pages/printer/printer.vue:225", "isEnumeratingNET"); AutoReplyPrintUniModule.CP_Port_EnumNetPrinter( 12e3, (ret) => { var text = ret.discovered_ip + "(" + ret.discovered_name + ")"; for (var i3 = 0; i3 < this.udsNETRange.length; i3++) { if (this.udsNETRange[i3].text == text) { return; } } var tmp2 = { text, value: this.udsNETRange.length }; formatAppLog("log", "at pages/printer/printer.vue:240", tmp2); this.udsNETRange.push(tmp2); }, (ret) => { isEnumeratingNET = false; formatAppLog("log", "at pages/printer/printer.vue:245", "finishedEnumeratingNET"); } ); } }, openPort() { if (hPrinter == 0) { if (selectedPortType == "rbBT2") { var text = this.udsBT2Range[this.udsBT2Value].text; var btAddress = text.substring(0, text.indexOf("(")); modal.toast({ message: "Connecting: " + btAddress + " ......", duration: 1.5 }); formatAppLog("log", "at pages/printer/printer.vue:259", "Connecting: " + btAddress + " ......"); hPrinter = AutoReplyPrintUniModule.CP_Port_OpenBtSpp(btAddress, 1); formatAppLog("log", "at pages/printer/printer.vue:261", "hPrinter: " + hPrinter); } else if (selectedPortType == "rbNET") { var text = this.udsNETRange[this.udsNETValue].text; var ipAddress = text.substring(0, text.indexOf("(")); modal.toast({ message: "Connecting: " + ipAddress + " ......", duration: 1.5 }); formatAppLog("log", "at pages/printer/printer.vue:269", "Connecting: " + ipAddress + " ......"); hPrinter = AutoReplyPrintUniModule.CP_Port_OpenTcp(null, ipAddress, 9100, 5e3, 1); formatAppLog("log", "at pages/printer/printer.vue:271", "hPrinter: " + hPrinter); } else if (selectedPortType == "rbUSB") { var usbName = this.udsUSBRange[this.udsUSBValue].text; modal.toast({ message: "Connecting: " + usbName + " ......", duration: 1.5 }); formatAppLog("log", "at pages/printer/printer.vue:278", "Connecting: " + usbName + " ......"); hPrinter = AutoReplyPrintUniModule.CP_Port_OpenUsb(usbName, 1); formatAppLog("log", "at pages/printer/printer.vue:280", "hPrinter: " + hPrinter); } else if (selectedPortType == "rbCOM") { var comName = this.udsCOMRange[this.udsCOMValue].text; var comBaudrate = this.udsCOMBaudrateValue; var comFlowControl = this.udsCOMFlowControlValue; modal.toast({ message: "Connecting: " + comName + "," + comBaudrate + "," + comFlowControl + " ......", duration: 1.5 }); formatAppLog( "log", "at pages/printer/printer.vue:290", "Connecting: " + comName + "," + comBaudrate + "," + comFlowControl + "......" ); hPrinter = AutoReplyPrintUniModule.CP_Port_OpenCom( comName, comBaudrate, 8, 0, 0, comFlowControl, 1 ); formatAppLog("log", "at pages/printer/printer.vue:302", "hPrinter: " + hPrinter); } modal.toast({ message: hPrinter != 0 ? "Connected" : "Failed", duration: 1.5 }); } this.btnOpenPortDisabled = hPrinter != 0; this.btnClosePortDisabled = hPrinter == 0; }, closePort() { if (hPrinter != 0) { AutoReplyPrintUniModule.CP_Port_Close(hPrinter); hPrinter = 0; } this.btnOpenPortDisabled = hPrinter != 0; this.btnClosePortDisabled = hPrinter == 0; }, Test_Label_SampleTicket_58MM_1() { AutoReplyPrintUniModule.CP_Pos_SetMultiByteMode(hPrinter); AutoReplyPrintUniModule.CP_Pos_SetMultiByteEncoding(hPrinter, 1); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 240, 0); AutoReplyPrintUniModule.CP_Label_DrawText(hPrinter, 10, 10, 24, 0, "型号:P58A+"); AutoReplyPrintUniModule.CP_Label_DrawText(hPrinter, 10, 40, 24, 0, "MFG :00"); AutoReplyPrintUniModule.CP_Label_DrawBarcode(hPrinter, 10, 70, 8, 2, 60, 2, 0, "No.123456"); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); var printResult = AutoReplyPrintUniModule.CP_Pos_QueryPrintResult(hPrinter, 1e4); modal.toast({ message: printResult ? "Print Success" : "Print Failed", duration: 1.5 }); }, Test_Label_SampleTicket_80MM_1() { AutoReplyPrintUniModule.CP_Pos_SetMultiByteMode(hPrinter); AutoReplyPrintUniModule.CP_Pos_SetMultiByteEncoding(hPrinter, 1); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 576, 240, 0); AutoReplyPrintUniModule.CP_Label_DrawText(hPrinter, 10, 10, 24, 0, "型号:P80A+"); AutoReplyPrintUniModule.CP_Label_DrawText(hPrinter, 10, 40, 24, 0, "MFG :00"); AutoReplyPrintUniModule.CP_Label_DrawBarcode(hPrinter, 10, 70, 8, 2, 60, 4, 0, "No.123456"); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); var printResult = AutoReplyPrintUniModule.CP_Pos_QueryPrintResult(hPrinter, 1e4); modal.toast({ message: printResult ? "Print Success" : "Print Failed", duration: 1.5 }); }, GetPrinterResolutionInfo() { var ret = AutoReplyPrintUniModule.CP_Printer_GetPrinterResolutionInfo(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, GetPrinterFirmwareVersion() { var ret = AutoReplyPrintUniModule.CP_Printer_GetPrinterFirmwareVersion(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, GetPrinterStatusInfo() { var ret = AutoReplyPrintUniModule.CP_Printer_GetPrinterStatusInfo(hPrinter); var status_time = new Date(ret.timestamp_ms); var printer_error_status = ret.printer_error_status; var status_str = ""; if (printer_error_status != 0) { status_str += "ERROR_OCCURED\n"; if ((printer_error_status & 1) != 0) { status_str += "ERROR_CUTTER\n"; } if ((printer_error_status & 2) != 0) { status_str += "ERROR_FLASH\n"; } if ((printer_error_status & 4) != 0) { status_str += "ERROR_NOPAPER\n"; } if ((printer_error_status & 8) != 0) { status_str += "ERROR_VOLTAGE\n"; } if ((printer_error_status & 16) != 0) { status_str += "ERROR_MARKER\n"; } if ((printer_error_status & 32) != 0) { status_str += "ERROR_ENGINE\n"; } if ((printer_error_status & 64) != 0) { status_str += "ERROR_OVERHEAT\n"; } if ((printer_error_status & 128) != 0) { status_str += "ERROR_COVERUP\n"; } if ((printer_error_status & 256) != 0) { status_str += "ERROR_MOTOR\n"; } } else { status_str += "Status OK\n"; } modal.toast({ message: "" + status_time + "\n" + status_str, duration: 1.5 }); }, CP_Pos_KickOutDrawer() { var ret = AutoReplyPrintUniModule.CP_Pos_KickOutDrawer(hPrinter, 0, 100, 100); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_Beep() { var ret = AutoReplyPrintUniModule.CP_Pos_Beep(hPrinter, 3, 500); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_PrintSelfTestPage() { var ret = AutoReplyPrintUniModule.CP_Pos_PrintSelfTestPage(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_ResetPrinter() { var ret = AutoReplyPrintUniModule.CP_Pos_ResetPrinter(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_SetPrintSpeed_100() { var ret = AutoReplyPrintUniModule.CP_Pos_SetPrintSpeed(hPrinter, 100); AutoReplyPrintUniModule.CP_Pos_PrintSelfTestPage(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_SetPrintSpeed_150() { var ret = AutoReplyPrintUniModule.CP_Pos_SetPrintSpeed(hPrinter, 150); AutoReplyPrintUniModule.CP_Pos_PrintSelfTestPage(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_SetPrintDensity_7() { var ret = AutoReplyPrintUniModule.CP_Pos_SetPrintDensity(hPrinter, 7); AutoReplyPrintUniModule.CP_Pos_PrintSelfTestPage(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Pos_SetPrintDensity_15() { var ret = AutoReplyPrintUniModule.CP_Pos_SetPrintDensity(hPrinter, 15); AutoReplyPrintUniModule.CP_Pos_PrintSelfTestPage(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_EnableLabelMode() { var ret = AutoReplyPrintUniModule.CP_Label_EnableLabelMode(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DisableLabelMode() { var ret = AutoReplyPrintUniModule.CP_Label_DisableLabelMode(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_CalibrateLabel() { var ret = AutoReplyPrintUniModule.CP_Label_CalibrateLabel(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_FeedLabel() { var ret = AutoReplyPrintUniModule.CP_Label_FeedLabel(hPrinter); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_PageBegin() { var ret = AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_PagePrint() { AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawText() { var str = "$$$123哈哈哈"; AutoReplyPrintUniModule.CP_Pos_SetMultiByteMode(hPrinter); AutoReplyPrintUniModule.CP_Pos_SetMultiByteEncoding(hPrinter, 1); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawText(hPrinter, 10, 10, 24, 0, str); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawTextInUTF8() { var str = "$$$123哈哈哈"; AutoReplyPrintUniModule.CP_Pos_SetMultiByteMode(hPrinter); AutoReplyPrintUniModule.CP_Pos_SetMultiByteEncoding(hPrinter, 1); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawTextInUTF8(hPrinter, 10, 10, 24, 0, str); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawTextInGBK() { var str = "$$$123哈哈哈"; AutoReplyPrintUniModule.CP_Pos_SetMultiByteMode(hPrinter); AutoReplyPrintUniModule.CP_Pos_SetMultiByteEncoding(hPrinter, 0); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawTextInGBK(hPrinter, 10, 10, 24, 0, str); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawBarcode() { var str = "01234567890"; AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawBarcode(hPrinter, 10, 10, 0, 2, 60, 2, 0, str); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawQRCode() { var str = "Hello 你好"; AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawQRCode(hPrinter, 10, 10, 0, 1, 8, 0, str); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawPDF417Code() { var str = "Hello 你好"; AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawPDF417Code( hPrinter, 10, 10, 3, 3, 0, 3, 0, str ); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawImageFromFile() { uni.chooseImage({ count: 1, //默认9 sizeType: ["original", "compressed"], //可以指定是原图还是压缩图,默认二者都有 sourceType: ["album"], //从相册选择 success: function(res) { AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawImageFromFile( hPrinter, 0, 0, 384, 0, res.tempFilePaths[0], 2, 0 ); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); } }); }, CP_Label_DrawImageFromPixels() { var image_width = 100; var image_height = 100; var image_pixels_array = new Uint8Array(image_width * image_height * 4); for (let y2 = 0; y2 < image_height; ++y2) { for (let x = 0; x < image_width; ++x) { var offset = y2 * image_width * 4 + x * 4; if (x == y2) { image_pixels_array[offset] = 0; image_pixels_array[offset + 1] = 0; image_pixels_array[offset + 2] = 0; image_pixels_array[offset + 3] = 255; } else { image_pixels_array[offset] = 255; image_pixels_array[offset + 1] = 255; image_pixels_array[offset + 2] = 255; image_pixels_array[offset + 3] = 255; } } } var image_pixels_base64 = uni.arrayBufferToBase64(image_pixels_array); AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawImageFromPixels( hPrinter, 0, 0, image_pixels_base64, image_width, image_height, image_width * 4, 7, 2, 0 ); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawLine() { AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawLine(hPrinter, 20, 20, 100, 300, 1, 1); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawRect() { AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawRect(hPrinter, 20, 20, 200, 10, 1); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); }, CP_Label_DrawBox() { AutoReplyPrintUniModule.CP_Label_PageBegin(hPrinter, 0, 0, 384, 400, 0); AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 0, 0, 383, 399, 1, 1); var ret = AutoReplyPrintUniModule.CP_Label_DrawBox(hPrinter, 30, 30, 300, 200, 1, 1); AutoReplyPrintUniModule.CP_Label_PagePrint(hPrinter, 1); modal.toast({ message: ret, duration: 1.5 }); } } }; function _sfc_render$p(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_data_select = resolveEasycom(vue.resolveDynamicComponent("uni-data-select"), __easycom_0$3); return vue.openBlock(), vue.createElementBlock("view", null, [ vue.createElementVNode( "radio-group", { onChange: _cache[6] || (_cache[6] = (...args) => $options.radioChange && $options.radioChange(...args)) }, [ vue.createElementVNode("label", { class: "uni-list-cell uni-list-cell-pd" }, [ vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "rbBT2", checked: "true" }), vue.createTextVNode("BT2.0 ") ]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsBT2Value, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $data.udsBT2Value = $event), localdata: $data.udsBT2Range }, null, 8, ["modelValue", "localdata"]) ]), vue.createElementVNode("label", { class: "uni-list-cell uni-list-cell-pd" }, [ vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "rbNET" }), vue.createTextVNode("NET ") ]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsNETValue, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $data.udsNETValue = $event), localdata: $data.udsNETRange }, null, 8, ["modelValue", "localdata"]) ]), vue.createElementVNode("label", { class: "uni-list-cell uni-list-cell-pd" }, [ vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "rbUSB" }), vue.createTextVNode("USB ") ]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsUSBValue, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $data.udsUSBValue = $event), localdata: $data.udsUSBRange }, null, 8, ["modelValue", "localdata"]) ]), vue.createElementVNode("label", { class: "uni-list-cell uni-list-cell-pd" }, [ vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "rbCOM" }), vue.createTextVNode("COM ") ]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsCOMValue, "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => $data.udsCOMValue = $event), localdata: $data.udsCOMRange }, null, 8, ["modelValue", "localdata"]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsCOMBaudrateValue, "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => $data.udsCOMBaudrateValue = $event), localdata: $data.udsCOMBaudrateRange }, null, 8, ["modelValue", "localdata"]), vue.createVNode(_component_uni_data_select, { modelValue: $data.udsCOMFlowControlValue, "onUpdate:modelValue": _cache[5] || (_cache[5] = ($event) => $data.udsCOMFlowControlValue = $event), localdata: $data.udsCOMFlowControlRange }, null, 8, ["modelValue", "localdata"]) ]) ], 32 /* NEED_HYDRATION */ ), vue.createElementVNode("view", { class: "uni-flex uni-row" }, [ vue.createElementVNode("button", { type: "default", onClick: _cache[7] || (_cache[7] = (...args) => $options.enumPort && $options.enumPort(...args)) }, "Enum Port"), vue.createElementVNode("button", { type: "default", onClick: _cache[8] || (_cache[8] = (...args) => $options.openPort && $options.openPort(...args)), disabled: $data.btnOpenPortDisabled }, "Open Port", 8, ["disabled"]), vue.createElementVNode("button", { type: "default", onClick: _cache[9] || (_cache[9] = (...args) => $options.closePort && $options.closePort(...args)), disabled: $data.btnClosePortDisabled }, "Close Port", 8, ["disabled"]) ]), vue.createElementVNode("view", null, [ vue.createElementVNode("button", { type: "primary", onClick: _cache[10] || (_cache[10] = (...args) => $options.Test_Label_SampleTicket_58MM_1 && $options.Test_Label_SampleTicket_58MM_1(...args)) }, " Test_Label_SampleTicket_58MM_1 "), vue.createElementVNode("button", { type: "primary", onClick: _cache[11] || (_cache[11] = (...args) => $options.Test_Label_SampleTicket_80MM_1 && $options.Test_Label_SampleTicket_80MM_1(...args)) }, " Test_Label_SampleTicket_80MM_1 "), vue.createElementVNode("button", { type: "primary", onClick: _cache[12] || (_cache[12] = (...args) => $options.GetPrinterResolutionInfo && $options.GetPrinterResolutionInfo(...args)) }, "GetPrinterResolutionInfo"), vue.createElementVNode("button", { type: "primary", onClick: _cache[13] || (_cache[13] = (...args) => $options.GetPrinterFirmwareVersion && $options.GetPrinterFirmwareVersion(...args)) }, "GetPrinterFirmwareVersion"), vue.createElementVNode("button", { type: "primary", onClick: _cache[14] || (_cache[14] = (...args) => $options.GetPrinterStatusInfo && $options.GetPrinterStatusInfo(...args)) }, "GetPrinterStatusInfo"), vue.createElementVNode("button", { type: "primary", onClick: _cache[15] || (_cache[15] = (...args) => $options.CP_Pos_KickOutDrawer && $options.CP_Pos_KickOutDrawer(...args)) }, "CP_Pos_KickOutDrawer"), vue.createElementVNode("button", { type: "primary", onClick: _cache[16] || (_cache[16] = (...args) => $options.CP_Pos_Beep && $options.CP_Pos_Beep(...args)) }, "CP_Pos_Beep"), vue.createElementVNode("button", { type: "primary", onClick: _cache[17] || (_cache[17] = (...args) => $options.CP_Pos_PrintSelfTestPage && $options.CP_Pos_PrintSelfTestPage(...args)) }, "CP_Pos_PrintSelfTestPage"), vue.createElementVNode("button", { type: "primary", onClick: _cache[18] || (_cache[18] = (...args) => $options.CP_Pos_ResetPrinter && $options.CP_Pos_ResetPrinter(...args)) }, "CP_Pos_ResetPrinter"), vue.createElementVNode("button", { type: "primary", onClick: _cache[19] || (_cache[19] = (...args) => $options.CP_Pos_SetPrintSpeed_100 && $options.CP_Pos_SetPrintSpeed_100(...args)) }, "CP_Pos_SetPrintSpeed_100"), vue.createElementVNode("button", { type: "primary", onClick: _cache[20] || (_cache[20] = (...args) => $options.CP_Pos_SetPrintSpeed_150 && $options.CP_Pos_SetPrintSpeed_150(...args)) }, "CP_Pos_SetPrintSpeed_150"), vue.createElementVNode("button", { type: "primary", onClick: _cache[21] || (_cache[21] = (...args) => $options.CP_Pos_SetPrintDensity_7 && $options.CP_Pos_SetPrintDensity_7(...args)) }, "CP_Pos_SetPrintDensity_7"), vue.createElementVNode("button", { type: "primary", onClick: _cache[22] || (_cache[22] = (...args) => $options.CP_Pos_SetPrintDensity_15 && $options.CP_Pos_SetPrintDensity_15(...args)) }, "CP_Pos_SetPrintDensity_15"), vue.createElementVNode("button", { type: "primary", onClick: _cache[23] || (_cache[23] = (...args) => $options.CP_Label_EnableLabelMode && $options.CP_Label_EnableLabelMode(...args)) }, "CP_Label_EnableLabelMode"), vue.createElementVNode("button", { type: "primary", onClick: _cache[24] || (_cache[24] = (...args) => $options.CP_Label_DisableLabelMode && $options.CP_Label_DisableLabelMode(...args)) }, "CP_Label_DisableLabelMode"), vue.createElementVNode("button", { type: "primary", onClick: _cache[25] || (_cache[25] = (...args) => $options.CP_Label_CalibrateLabel && $options.CP_Label_CalibrateLabel(...args)) }, "CP_Label_CalibrateLabel"), vue.createElementVNode("button", { type: "primary", onClick: _cache[26] || (_cache[26] = (...args) => $options.CP_Label_FeedLabel && $options.CP_Label_FeedLabel(...args)) }, "CP_Label_FeedLabel"), vue.createElementVNode("button", { type: "primary", onClick: _cache[27] || (_cache[27] = (...args) => $options.CP_Label_PageBegin && $options.CP_Label_PageBegin(...args)) }, "CP_Label_PageBegin"), vue.createElementVNode("button", { type: "primary", onClick: _cache[28] || (_cache[28] = (...args) => $options.CP_Label_PagePrint && $options.CP_Label_PagePrint(...args)) }, "CP_Label_PagePrint"), vue.createElementVNode("button", { type: "primary", onClick: _cache[29] || (_cache[29] = (...args) => $options.CP_Label_DrawText && $options.CP_Label_DrawText(...args)) }, "CP_Label_DrawText"), vue.createElementVNode("button", { type: "primary", onClick: _cache[30] || (_cache[30] = (...args) => $options.CP_Label_DrawTextInUTF8 && $options.CP_Label_DrawTextInUTF8(...args)) }, "CP_Label_DrawTextInUTF8"), vue.createElementVNode("button", { type: "primary", onClick: _cache[31] || (_cache[31] = (...args) => $options.CP_Label_DrawTextInGBK && $options.CP_Label_DrawTextInGBK(...args)) }, "CP_Label_DrawTextInGBK"), vue.createElementVNode("button", { type: "primary", onClick: _cache[32] || (_cache[32] = (...args) => $options.CP_Label_DrawBarcode && $options.CP_Label_DrawBarcode(...args)) }, "CP_Label_DrawBarcode"), vue.createElementVNode("button", { type: "primary", onClick: _cache[33] || (_cache[33] = (...args) => $options.CP_Label_DrawQRCode && $options.CP_Label_DrawQRCode(...args)) }, "CP_Label_DrawQRCode"), vue.createElementVNode("button", { type: "primary", onClick: _cache[34] || (_cache[34] = (...args) => $options.CP_Label_DrawPDF417Code && $options.CP_Label_DrawPDF417Code(...args)) }, "CP_Label_DrawPDF417Code"), vue.createElementVNode("button", { type: "primary", onClick: _cache[35] || (_cache[35] = (...args) => $options.CP_Label_DrawImageFromFile && $options.CP_Label_DrawImageFromFile(...args)) }, "CP_Label_DrawImageFromFile"), vue.createElementVNode("button", { type: "primary", onClick: _cache[36] || (_cache[36] = (...args) => $options.CP_Label_DrawImageFromPixels && $options.CP_Label_DrawImageFromPixels(...args)) }, " CP_Label_DrawImageFromPixels "), vue.createElementVNode("button", { type: "primary", onClick: _cache[37] || (_cache[37] = (...args) => $options.CP_Label_DrawLine && $options.CP_Label_DrawLine(...args)) }, "CP_Label_DrawLine"), vue.createElementVNode("button", { type: "primary", onClick: _cache[38] || (_cache[38] = (...args) => $options.CP_Label_DrawRect && $options.CP_Label_DrawRect(...args)) }, "CP_Label_DrawRect"), vue.createElementVNode("button", { type: "primary", onClick: _cache[39] || (_cache[39] = (...args) => $options.CP_Label_DrawBox && $options.CP_Label_DrawBox(...args)) }, "CP_Label_DrawBox") ]) ]); } const PagesPrinterPrinter = /* @__PURE__ */ _export_sfc(_sfc_main$q, [["render", _sfc_render$p], ["__file", "E:/demo/hmrabbit/src/pages/printer/printer.vue"]]); const _sfc_main$p = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const printLogHistory = vue.ref([]); const getHistory = () => { printLogHistory.value = uni.getStorageSync("printLogHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { printLogHistory, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$o(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.printLogHistory, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.type) + " " + vue.toDisplayString(item.order_code), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.printLogHistory.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesPrinterLogList = /* @__PURE__ */ _export_sfc(_sfc_main$p, [["render", _sfc_render$o], ["__scopeId", "data-v-38a3815c"], ["__file", "E:/demo/hmrabbit/src/pages/printer/logList.vue"]]); const dataPicker = { props: { localdata: { type: [Array, Object], default() { return []; } }, spaceInfo: { type: Object, default() { return {}; } }, collection: { type: String, default: "" }, action: { type: String, default: "" }, field: { type: String, default: "" }, orderby: { type: String, default: "" }, where: { type: [String, Object], default: "" }, pageData: { type: String, default: "add" }, pageCurrent: { type: Number, default: 1 }, pageSize: { type: Number, default: 500 }, getcount: { type: [Boolean, String], default: false }, getone: { type: [Boolean, String], default: false }, gettree: { type: [Boolean, String], default: false }, manual: { type: Boolean, default: false }, value: { type: [Array, String, Number], default() { return []; } }, modelValue: { type: [Array, String, Number], default() { return []; } }, preload: { type: Boolean, default: false }, stepSearh: { type: Boolean, default: true }, selfField: { type: String, default: "" }, parentField: { type: String, default: "" }, multiple: { type: Boolean, default: false }, map: { type: Object, default() { return { text: "text", value: "value" }; } } }, data() { return { loading: false, errorMessage: "", loadMore: { contentdown: "", contentrefresh: "", contentnomore: "" }, dataList: [], selected: [], selectedIndex: 0, page: { current: this.pageCurrent, size: this.pageSize, count: 0 } }; }, computed: { isLocalData() { return !this.collection.length; }, isCloudData() { return this.collection.length > 0; }, isCloudDataList() { return this.isCloudData && (!this.parentField && !this.selfField); }, isCloudDataTree() { return this.isCloudData && this.parentField && this.selfField; }, dataValue() { let isModelValue = Array.isArray(this.modelValue) ? this.modelValue.length > 0 : this.modelValue !== null || this.modelValue !== void 0; return isModelValue ? this.modelValue : this.value; }, hasValue() { if (typeof this.dataValue === "number") { return true; } return this.dataValue != null && this.dataValue.length > 0; } }, created() { this.$watch(() => { var al = []; [ "pageCurrent", "pageSize", "spaceInfo", "value", "modelValue", "localdata", "collection", "action", "field", "orderby", "where", "getont", "getcount", "gettree" ].forEach((key) => { al.push(this[key]); }); return al; }, (newValue, oldValue) => { for (let i2 = 2; i2 < newValue.length; i2++) { if (newValue[i2] != oldValue[i2]) { break; } } if (newValue[0] != oldValue[0]) { this.page.current = this.pageCurrent; } this.page.size = this.pageSize; this.onPropsChange(); }); this._treeData = []; }, methods: { onPropsChange() { this._treeData = []; }, // 填充 pickview 数据 async loadData() { if (this.isLocalData) { this.loadLocalData(); } else if (this.isCloudDataList) { this.loadCloudDataList(); } else if (this.isCloudDataTree) { this.loadCloudDataTree(); } }, // 加载本地数据 async loadLocalData() { this._treeData = []; this._extractTree(this.localdata, this._treeData); let inputValue = this.dataValue; if (inputValue === void 0) { return; } if (Array.isArray(inputValue)) { inputValue = inputValue[inputValue.length - 1]; if (typeof inputValue === "object" && inputValue[this.map.value]) { inputValue = inputValue[this.map.value]; } } this.selected = this._findNodePath(inputValue, this.localdata); }, // 加载 Cloud 数据 (单列) async loadCloudDataList() { if (this.loading) { return; } this.loading = true; try { let response = await this.getCommand(); let responseData = response.result.data; this._treeData = responseData; this._updateBindData(); this._updateSelected(); this.onDataChange(); } catch (e2) { this.errorMessage = e2; } finally { this.loading = false; } }, // 加载 Cloud 数据 (树形) async loadCloudDataTree() { if (this.loading) { return; } this.loading = true; try { let commandOptions = { field: this._cloudDataPostField(), where: this._cloudDataTreeWhere() }; if (this.gettree) { commandOptions.startwith = `${this.selfField}=='${this.dataValue}'`; } let response = await this.getCommand(commandOptions); let responseData = response.result.data; this._treeData = responseData; this._updateBindData(); this._updateSelected(); this.onDataChange(); } catch (e2) { this.errorMessage = e2; } finally { this.loading = false; } }, // 加载 Cloud 数据 (节点) async loadCloudDataNode(callback) { if (this.loading) { return; } this.loading = true; try { let commandOptions = { field: this._cloudDataPostField(), where: this._cloudDataNodeWhere() }; let response = await this.getCommand(commandOptions); let responseData = response.result.data; callback(responseData); } catch (e2) { this.errorMessage = e2; } finally { this.loading = false; } }, // 回显 Cloud 数据 getCloudDataValue() { if (this.isCloudDataList) { return this.getCloudDataListValue(); } if (this.isCloudDataTree) { return this.getCloudDataTreeValue(); } }, // 回显 Cloud 数据 (单列) getCloudDataListValue() { let where = []; let whereField = this._getForeignKeyByField(); if (whereField) { where.push(`${whereField} == '${this.dataValue}'`); } where = where.join(" || "); if (this.where) { where = `(${this.where}) && (${where})`; } return this.getCommand({ field: this._cloudDataPostField(), where }).then((res) => { this.selected = res.result.data; return res.result.data; }); }, // 回显 Cloud 数据 (树形) getCloudDataTreeValue() { return this.getCommand({ field: this._cloudDataPostField(), getTreePath: { startWith: `${this.selfField}=='${this.dataValue}'` } }).then((res) => { let treePath = []; this._extractTreePath(res.result.data, treePath); this.selected = treePath; return treePath; }); }, getCommand(options = {}) { let db = Vs.database(this.spaceInfo); const action = options.action || this.action; if (action) { db = db.action(action); } const collection = options.collection || this.collection; db = db.collection(collection); const where = options.where || this.where; if (!(!where || !Object.keys(where).length)) { db = db.where(where); } const field = options.field || this.field; if (field) { db = db.field(field); } const orderby = options.orderby || this.orderby; if (orderby) { db = db.orderBy(orderby); } const current = options.pageCurrent !== void 0 ? options.pageCurrent : this.page.current; const size = options.pageSize !== void 0 ? options.pageSize : this.page.size; const getCount = options.getcount !== void 0 ? options.getcount : this.getcount; const getTree = options.gettree !== void 0 ? options.gettree : this.gettree; const getOptions = { getCount, getTree }; if (options.getTreePath) { getOptions.getTreePath = options.getTreePath; } db = db.skip(size * (current - 1)).limit(size).get(getOptions); return db; }, _cloudDataPostField() { let fields = [this.field]; if (this.parentField) { fields.push(`${this.parentField} as parent_value`); } return fields.join(","); }, _cloudDataTreeWhere() { let result = []; let selected = this.selected; let parentField = this.parentField; if (parentField) { result.push(`${parentField} == null || ${parentField} == ""`); } if (selected.length) { for (var i2 = 0; i2 < selected.length - 1; i2++) { result.push(`${parentField} == '${selected[i2].value}'`); } } let where = []; if (this.where) { where.push(`(${this.where})`); } if (result.length) { where.push(`(${result.join(" || ")})`); } return where.join(" && "); }, _cloudDataNodeWhere() { let where = []; let selected = this.selected; if (selected.length) { where.push(`${this.parentField} == '${selected[selected.length - 1].value}'`); } where = where.join(" || "); if (this.where) { return `(${this.where}) && (${where})`; } return where; }, _getWhereByForeignKey() { let result = []; let whereField = this._getForeignKeyByField(); if (whereField) { result.push(`${whereField} == '${this.dataValue}'`); } if (this.where) { return `(${this.where}) && (${result.join(" || ")})`; } return result.join(" || "); }, _getForeignKeyByField() { let fields = this.field.split(","); let whereField = null; for (let i2 = 0; i2 < fields.length; i2++) { const items = fields[i2].split("as"); if (items.length < 2) { continue; } if (items[1].trim() === "value") { whereField = items[0].trim(); break; } } return whereField; }, _updateBindData(node) { const { dataList, hasNodes } = this._filterData(this._treeData, this.selected); let isleaf = this._stepSearh === false && !hasNodes; if (node) { node.isleaf = isleaf; } this.dataList = dataList; this.selectedIndex = dataList.length - 1; if (!isleaf && this.selected.length < dataList.length) { this.selected.push({ value: null, text: "请选择" }); } return { isleaf, hasNodes }; }, _updateSelected() { let dl = this.dataList; let sl = this.selected; let textField = this.map.text; let valueField = this.map.value; for (let i2 = 0; i2 < sl.length; i2++) { let value = sl[i2].value; let dl2 = dl[i2]; for (let j2 = 0; j2 < dl2.length; j2++) { let item2 = dl2[j2]; if (item2[valueField] === value) { sl[i2].text = item2[textField]; break; } } } }, _filterData(data, paths) { let dataList = []; let hasNodes = true; dataList.push(data.filter((item) => { return item.parent_value === null || item.parent_value === void 0 || item.parent_value === ""; })); for (let i2 = 0; i2 < paths.length; i2++) { let value = paths[i2].value; let nodes = data.filter((item) => { return item.parent_value === value; }); if (nodes.length) { dataList.push(nodes); } else { hasNodes = false; } } return { dataList, hasNodes }; }, _extractTree(nodes, result, parent_value) { let valueField = this.map.value; for (let i2 = 0; i2 < nodes.length; i2++) { let node = nodes[i2]; let child = {}; for (let key in node) { if (key !== "children") { child[key] = node[key]; } } if (parent_value !== null && parent_value !== void 0 && parent_value !== "") { child.parent_value = parent_value; } result.push(child); let children = node.children; if (children) { this._extractTree(children, result, node[valueField]); } } }, _extractTreePath(nodes, result) { for (let i2 = 0; i2 < nodes.length; i2++) { let node = nodes[i2]; let child = {}; for (let key in node) { if (key !== "children") { child[key] = node[key]; } } result.push(child); let children = node.children; if (children) { this._extractTreePath(children, result); } } }, _findNodePath(key, nodes, path = []) { let textField = this.map.text; let valueField = this.map.value; for (let i2 = 0; i2 < nodes.length; i2++) { let node = nodes[i2]; let children = node.children; let text = node[textField]; let value = node[valueField]; path.push({ value, text }); if (value === key) { return path; } if (children) { const p2 = this._findNodePath(key, children, path); if (p2.length) { return p2; } } path.pop(); } return []; } } }; const _sfc_main$o = { name: "UniDataPickerView", emits: ["nodeclick", "change", "datachange", "update:modelValue"], mixins: [dataPicker], props: { managedMode: { type: Boolean, default: false }, ellipsis: { type: Boolean, default: true } }, created() { if (!this.managedMode) { this.$nextTick(() => { this.loadData(); }); } }, methods: { onPropsChange() { this._treeData = []; this.selectedIndex = 0; this.$nextTick(() => { this.loadData(); }); }, handleSelect(index) { this.selectedIndex = index; }, handleNodeClick(item, i2, j2) { if (item.disable) { return; } const node = this.dataList[i2][j2]; const text = node[this.map.text]; const value = node[this.map.value]; if (i2 < this.selected.length - 1) { this.selected.splice(i2, this.selected.length - i2); this.selected.push({ text, value }); } else if (i2 === this.selected.length - 1) { this.selected.splice(i2, 1, { text, value }); } if (node.isleaf) { this.onSelectedChange(node, node.isleaf); return; } const { isleaf, hasNodes } = this._updateBindData(); if (this.isLocalData) { this.onSelectedChange(node, !hasNodes || isleaf); } else if (this.isCloudDataList) { this.onSelectedChange(node, true); } else if (this.isCloudDataTree) { if (isleaf) { this.onSelectedChange(node, node.isleaf); } else if (!hasNodes) { this.loadCloudDataNode((data) => { if (!data.length) { node.isleaf = true; } else { this._treeData.push(...data); this._updateBindData(node); } this.onSelectedChange(node, node.isleaf); }); } } }, updateData(data) { this._treeData = data.treeData; this.selected = data.selected; if (!this._treeData.length) { this.loadData(); } else { this._updateBindData(); } }, onDataChange() { this.$emit("datachange"); }, onSelectedChange(node, isleaf) { if (isleaf) { this._dispatchEvent(); } if (node) { this.$emit("nodeclick", node); } }, _dispatchEvent() { this.$emit("change", this.selected.slice(0)); } } }; function _sfc_render$n(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_load_more = resolveEasycom(vue.resolveDynamicComponent("uni-load-more"), __easycom_0$2); return vue.openBlock(), vue.createElementBlock("view", { class: "uni-data-pickerview" }, [ !_ctx.isCloudDataList ? (vue.openBlock(), vue.createElementBlock("scroll-view", { key: 0, class: "selected-area", "scroll-x": "true" }, [ vue.createElementVNode("view", { class: "selected-list" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(_ctx.selected, (item, index) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ item.text ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: vue.normalizeClass(["selected-item", { "selected-item-active": index == _ctx.selectedIndex }]), onClick: ($event) => $options.handleSelect(index) }, [ vue.createElementVNode( "text", null, vue.toDisplayString(item.text), 1 /* TEXT */ ) ], 10, ["onClick"])) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ ); }), 256 /* UNKEYED_FRAGMENT */ )) ]) ])) : vue.createCommentVNode("v-if", true), vue.createElementVNode("view", { class: "tab-c" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(_ctx.dataList, (child, i2) => { return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ i2 == _ctx.selectedIndex ? (vue.openBlock(), vue.createElementBlock("scroll-view", { class: "list", key: i2, "scroll-y": true }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(child, (item, j2) => { return vue.openBlock(), vue.createElementBlock("view", { class: vue.normalizeClass(["item", { "is-disabled": !!item.disable }]), onClick: ($event) => $options.handleNodeClick(item, i2, j2) }, [ vue.createElementVNode( "text", { class: "item-text" }, vue.toDisplayString(item[_ctx.map.text]), 1 /* TEXT */ ), _ctx.selected.length > i2 && item[_ctx.map.value] == _ctx.selected[i2].value ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "check" })) : vue.createCommentVNode("v-if", true) ], 10, ["onClick"]); }), 256 /* UNKEYED_FRAGMENT */ )) ])) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ ); }), 256 /* UNKEYED_FRAGMENT */ )), _ctx.loading ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "loading-cover" }, [ vue.createVNode(_component_uni_load_more, { class: "load-more", contentText: _ctx.loadMore, status: "loading" }, null, 8, ["contentText"]) ])) : vue.createCommentVNode("v-if", true), _ctx.errorMessage ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "error-message" }, [ vue.createElementVNode( "text", { class: "error-text" }, vue.toDisplayString(_ctx.errorMessage), 1 /* TEXT */ ) ])) : vue.createCommentVNode("v-if", true) ]) ]); } const DataPickerView = /* @__PURE__ */ _export_sfc(_sfc_main$o, [["render", _sfc_render$n], ["__scopeId", "data-v-9bf6d4b8"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-data-pickerview/uni-data-pickerview.vue"]]); const _sfc_main$n = { name: "UniDataPicker", emits: ["popupopened", "popupclosed", "nodeclick", "input", "change", "update:modelValue"], mixins: [dataPicker], components: { DataPickerView }, props: { options: { type: [Object, Array], default() { return {}; } }, popupTitle: { type: String, default: "请选择" }, placeholder: { type: String, default: "请选择" }, heightMobile: { type: String, default: "" }, readonly: { type: Boolean, default: false }, clearIcon: { type: Boolean, default: true }, border: { type: Boolean, default: true }, split: { type: String, default: "/" }, ellipsis: { type: Boolean, default: true } }, data() { return { isOpened: false, inputSelected: [] }; }, created() { this.$nextTick(() => { this.load(); }); }, methods: { clear() { this.modelValue = null; this._dispatchEvent([]); }, onPropsChange() { this._treeData = []; this.selectedIndex = 0; this.load(); }, load() { if (this.readonly) { this._processReadonly(this.localdata, this.dataValue); return; } if (!this.hasValue) { return; } if (this.isLocalData) { this.loadData(); this.inputSelected = this.selected.slice(0); } else if (this.isCloudDataList || this.isCloudDataTree) { this.loading = true; this.getCloudDataValue().then((res) => { this.loading = false; this.inputSelected = res; }).catch((err) => { this.loading = false; this.errorMessage = err; }); } }, show() { this.isOpened = true; setTimeout(() => { this.$refs.pickerView.updateData({ treeData: this._treeData, selected: this.selected, selectedIndex: this.selectedIndex }); }, 200); this.$emit("popupopened"); }, hide() { this.isOpened = false; this.$emit("popupclosed"); }, handleInput() { if (this.readonly) { return; } this.show(); }, handleClose(e2) { this.hide(); }, onnodeclick(e2) { this.$emit("nodeclick", e2); }, ondatachange(e2) { this._treeData = this.$refs.pickerView._treeData; }, onchange(e2) { this.hide(); this.$nextTick(() => { this.inputSelected = e2; }); this._dispatchEvent(e2); }, _processReadonly(dataList, value) { var isTree = dataList.findIndex((item2) => { return item2.children; }); if (isTree > -1) { let inputValue; if (Array.isArray(value)) { inputValue = value[value.length - 1]; if (typeof inputValue === "object" && inputValue.value) { inputValue = inputValue.value; } } else { inputValue = value; } this.inputSelected = this._findNodePath(inputValue, this.localdata); return; } if (!this.hasValue) { this.inputSelected = []; return; } let result = []; for (let i2 = 0; i2 < value.length; i2++) { var val = value[i2]; var item = dataList.find((v2) => { return v2.value == val; }); if (item) { result.push(item); } } if (result.length) { this.inputSelected = result; } }, _filterForArray(data, valueArray) { var result = []; for (let i2 = 0; i2 < valueArray.length; i2++) { var value = valueArray[i2]; var found = data.find((item) => { return item.value == value; }); if (found) { result.push(found); } } return result; }, _dispatchEvent(selected) { let item = {}; if (selected.length) { var value = new Array(selected.length); for (var i2 = 0; i2 < selected.length; i2++) { value[i2] = selected[i2].value; } item = selected[selected.length - 1]; } else { item.value = ""; } if (this.formItem) { this.formItem.setValue(item.value); } this.$emit("input", item.value); this.$emit("update:modelValue", item.value); this.$emit("change", { detail: { value: selected } }); } } }; function _sfc_render$m(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_load_more = resolveEasycom(vue.resolveDynamicComponent("uni-load-more"), __easycom_0$2); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_data_picker_view = vue.resolveComponent("data-picker-view"); return vue.openBlock(), vue.createElementBlock("view", { class: "uni-data-tree" }, [ vue.createElementVNode("view", { class: "uni-data-tree-input", onClick: _cache[1] || (_cache[1] = (...args) => $options.handleInput && $options.handleInput(...args)) }, [ vue.renderSlot(_ctx.$slots, "default", { options: $props.options, data: $data.inputSelected, error: _ctx.errorMessage }, () => [ vue.createElementVNode( "view", { class: vue.normalizeClass(["input-value", { "input-value-border": $props.border }]) }, [ _ctx.errorMessage ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0, class: "selected-area error-text" }, vue.toDisplayString(_ctx.errorMessage), 1 /* TEXT */ )) : _ctx.loading && !$data.isOpened ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "selected-area" }, [ vue.createVNode(_component_uni_load_more, { class: "load-more", contentText: _ctx.loadMore, status: "loading" }, null, 8, ["contentText"]) ])) : $data.inputSelected.length ? (vue.openBlock(), vue.createElementBlock("scroll-view", { key: 2, class: "selected-area", "scroll-x": "true" }, [ vue.createElementVNode("view", { class: "selected-list" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($data.inputSelected, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { class: "selected-item", key: index }, [ vue.createElementVNode( "text", { class: "text-color" }, vue.toDisplayString(item.text), 1 /* TEXT */ ), index < $data.inputSelected.length - 1 ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0, class: "input-split-line" }, vue.toDisplayString($props.split), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true) ]); }), 128 /* KEYED_FRAGMENT */ )) ]) ])) : (vue.openBlock(), vue.createElementBlock( "text", { key: 3, class: "selected-area placeholder" }, vue.toDisplayString($props.placeholder), 1 /* TEXT */ )), $props.clearIcon && !$props.readonly && $data.inputSelected.length ? (vue.openBlock(), vue.createElementBlock("view", { key: 4, class: "icon-clear", onClick: _cache[0] || (_cache[0] = vue.withModifiers((...args) => $options.clear && $options.clear(...args), ["stop"])) }, [ vue.createVNode(_component_uni_icons, { type: "clear", color: "#c0c4cc", size: "24" }) ])) : vue.createCommentVNode("v-if", true), (!$props.clearIcon || !$data.inputSelected.length) && !$props.readonly ? (vue.openBlock(), vue.createElementBlock("view", { key: 5, class: "arrow-area" }, [ vue.createElementVNode("view", { class: "input-arrow" }) ])) : vue.createCommentVNode("v-if", true) ], 2 /* CLASS */ ) ], true) ]), $data.isOpened ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "uni-data-tree-cover", onClick: _cache[2] || (_cache[2] = (...args) => $options.handleClose && $options.handleClose(...args)) })) : vue.createCommentVNode("v-if", true), $data.isOpened ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "uni-data-tree-dialog" }, [ vue.createElementVNode("view", { class: "uni-popper__arrow" }), vue.createElementVNode("view", { class: "dialog-caption" }, [ vue.createElementVNode("view", { class: "title-area" }, [ vue.createElementVNode( "text", { class: "dialog-title" }, vue.toDisplayString($props.popupTitle), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "dialog-close", onClick: _cache[3] || (_cache[3] = (...args) => $options.handleClose && $options.handleClose(...args)) }, [ vue.createElementVNode("view", { class: "dialog-close-plus", "data-id": "close" }), vue.createElementVNode("view", { class: "dialog-close-plus dialog-close-rotate", "data-id": "close" }) ]) ]), vue.createVNode(_component_data_picker_view, { class: "picker-view", ref: "pickerView", modelValue: _ctx.dataValue, "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => _ctx.dataValue = $event), localdata: _ctx.localdata, preload: _ctx.preload, collection: _ctx.collection, field: _ctx.field, orderby: _ctx.orderby, where: _ctx.where, "step-searh": _ctx.stepSearh, "self-field": _ctx.selfField, "parent-field": _ctx.parentField, "managed-mode": true, map: _ctx.map, ellipsis: $props.ellipsis, onChange: $options.onchange, onDatachange: $options.ondatachange, onNodeclick: $options.onnodeclick }, null, 8, ["modelValue", "localdata", "preload", "collection", "field", "orderby", "where", "step-searh", "self-field", "parent-field", "map", "ellipsis", "onChange", "onDatachange", "onNodeclick"]) ])) : vue.createCommentVNode("v-if", true) ]); } const __easycom_1 = /* @__PURE__ */ _export_sfc(_sfc_main$n, [["render", _sfc_render$m], ["__scopeId", "data-v-e10759db"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-data-picker/uni-data-picker.vue"]]); const getBindParams = () => { return http({ method: "GET", url: "/admin/order.scanOrder/getBindParams" }); }; const bindShipping = (data) => { return http({ method: "POST", url: "/admin/order.scanOrder/bindShipping", data }); }; const getWaybills = (data) => { return http({ method: "POST", url: "/admin/order.scanOrder/getWaybills", data }); }; const _sfc_main$m = /* @__PURE__ */ vue.defineComponent({ __name: "scanLotno", setup(__props, { expose: __expose }) { __expose(); const valiFormRef = vue.ref(); const loading = vue.ref(false); const hidePage = vue.ref(false); const focusType = vue.ref(true); const editBatchNum = vue.ref(false); const editPalletNum = vue.ref(false); const scanLotnoHistory = vue.ref([]); const messageRef = vue.ref(); const messageType = vue.ref(); const messageText = vue.ref(); let st2; const valiFormData = vue.ref({ orderNum: "", weight: "", batchNum: "", palletNum: "0" }); const rules = vue.reactive({ orderNum: { rules: [ { required: true, errorMessage: "单号不能为空" } ] } }); const options = vue.reactive({ batch: [], pallet: [] }); const scanInput = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { valiFormData.value.orderNum = res.result; onsubmit(); }, fail: (err) => { } }); }; const reset = () => { loading.value = false; valiFormData.value.orderNum = ""; valiFormData.value.weight = ""; }; const submitBatchNum = () => { if (valiFormData.value.batchNum) { editBatchNum.value = true; } else { messageType.value = "error"; messageText.value = "请选择批次号"; messageRef.value.open(); } }; const batchNum = vue.computed(() => { const res = options.batch.find((item) => item.value === valiFormData.value.batchNum); return res == null ? void 0 : res.text; }); const submitPalletNum = () => { if (valiFormData.value.palletNum) { editPalletNum.value = true; } else { messageType.value = "error"; messageText.value = "请选择托盘号"; messageRef.value.open(); } }; const palletNum = vue.computed(() => { function findTextByValue(arr, targetValue) { for (let item of arr) { if (item.value === targetValue) { return item.text; } if (item.children && item.children.length > 0) { const result = findTextByValue(item.children, targetValue); if (result) { return `${item.text}/${result}`; } } } return null; } const textPath = findTextByValue(options.pallet, valiFormData.value.palletNum); return textPath; }); const checkOrder = async () => { loading.value = true; uni.setStorageSync("waybills", []); const res = await getWaybills({ order_no: valiFormData.value.orderNum, batch_number: valiFormData.value.batchNum, pallet_number: valiFormData.value.palletNum ? findPalletNumIdByValue(options.pallet, valiFormData.value.palletNum) : "" }); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; messageRef.value.open(); uni.setStorageSync("waybills", res.data.waybills); uni.navigateTo({ url: "/pages/scanLotno/waybillsList" }); } else { messageType.value = "error"; messageText.value = res.msg; messageRef.value.open(); } }; const findPalletNumIdByValue = (data, targetValue) => { for (let i2 = 0; i2 < data.length; i2++) { const item = data[i2]; if (item.id === targetValue || item.value === targetValue) { return [item.id]; } else if (item.children && item.children.length > 0) { const childId = findPalletNumIdByValue(item.children, targetValue); if (childId !== null) { return childId; } } } return null; }; const onsubmit = async () => { st2 && clearTimeout(st2); loading.value = true; const res = await bindShipping({ order_no: valiFormData.value.orderNum, reweighting: valiFormData.value.weight, batch_number: valiFormData.value.batchNum, pallet_number: valiFormData.value.palletNum ? findPalletNumIdByValue(options.pallet, valiFormData.value.palletNum) : "" }); loading.value = false; if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; messageRef.value.open(); if (res.data.labels && res.data.labels.length > 0) { formatAppLog("log", "at pages/scanLotno/scanLotno.vue:288", "有打印面单"); } const historyItem = { orderNum: valiFormData.value.orderNum, createTime: /* @__PURE__ */ new Date(), type: valiFormData.value.batchNum ? "绑定批次" : "绑定托盘", status: true }; formatAppLog("log", "at pages/scanLotno/scanLotno.vue:300", "scanLotnoHistory--", scanLotnoHistory); scanLotnoHistory.value.unshift(historyItem); uni.setStorageSync("scanLotnoHistory", scanLotnoHistory.value); getHistory(); } else { messageType.value = "error"; messageText.value = res.msg; messageRef.value.open(); const historyItem = { orderNum: valiFormData.value.orderNum, createTime: /* @__PURE__ */ new Date(), type: valiFormData.value.batchNum ? "绑定批次" : "绑定托盘", status: false }; scanLotnoHistory.value.unshift(historyItem); uni.setStorageSync("scanLotnoHistory", scanLotnoHistory.value); getHistory(); } st2 = setTimeout(() => { reset(); setFocus(); st2 && clearTimeout(st2); }, 1e3); }; const getHistory = () => { scanLotnoHistory.value = uni.getStorageSync("scanLotnoHistory") || []; }; const keypress = (e2) => { if (e2.keyCode === 102 || e2.keyCode === 103 || e2.keyCode === 104) ; if (e2.keyCode == 66) { onsubmit(); } }; onLoad(() => { plus.key.addEventListener("keyup", keypress); }); onUnload(() => { plus.key.removeEventListener("keyup", keypress); }); onHide(() => { hidePage.value = true; plus.key.removeEventListener("keyup", keypress); }); onBackPress(() => { plus.key.removeEventListener("keyup", keypress); }); onShow(() => { hidePage.value = false; _getBindParams(); getHistory(); }); const setFocus = () => { if (hidePage.value) { return; } focusType.value = false; vue.nextTick(() => { focusType.value = true; }); }; const _getBindParams = async () => { const res = await getBindParams(); if (res.code === 1) { let transformData = function(data) { return data.map((item) => { const { id, value, label, ...rest } = item; return { id: id || value, value, text: label, ...rest, children: item.children ? transformData(item.children) : [] }; }); }; options.batch = res.data.batch_number.map((item) => { return { text: item.name, value: item.id }; }); const shipping = transformData(res.data.shipping); formatAppLog("log", "at pages/scanLotno/scanLotno.vue:412", "shipping", shipping); options.pallet = shipping; } }; onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/scanLotno/logList" }); } }); const __returned__ = { valiFormRef, loading, hidePage, focusType, editBatchNum, editPalletNum, scanLotnoHistory, messageRef, messageType, messageText, get st() { return st2; }, set st(v2) { st2 = v2; }, valiFormData, rules, options, scanInput, reset, submitBatchNum, batchNum, submitPalletNum, palletNum, checkOrder, findPalletNumIdByValue, onsubmit, getHistory, keypress, setFocus, _getBindParams }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$l(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_data_select = resolveEasycom(vue.resolveDynamicComponent("uni-data-select"), __easycom_0$3); const _component_uni_data_picker = resolveEasycom(vue.resolveDynamicComponent("uni-data-picker"), __easycom_1); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createVNode(_component_uni_forms, { ref: "valiFormRef", "label-align": "right", "label-width": 80, rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_forms_item, { label: "运单号码", required: "", name: "orderNum" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.orderNum, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.orderNum = $event), placeholder: "请输入单号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scanInput }, null, 8, ["modelValue", "focus"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "复称重量", name: "weight" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.weight, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.valiFormData.weight = $event), placeholder: "请输入复称重量", oninput: "value=value.replace(/[^\\d.]/g,'').replace(/^\\./g, '').replace(/\\.{2,}/g, '').replace('.', '$#$').replace(/\\./g, '').replace('$#$', '.').match(/^\\d*(\\.?\\d{0,2})/g)[0] || null" }, { right: vue.withCtx(() => [ vue.createElementVNode("view", { class: "weight-right" }, "KG") ]), _: 1 /* STABLE */ }, 8, ["modelValue"]) ]), _: 1 /* STABLE */ }), vue.createCommentVNode(" 复称重量作用是确保句惠完整,防止工作人员计费称車后进行的其他操作引起的物品丢失问题 "), vue.createVNode(_component_uni_forms_item, { label: "绑定批次号", name: "batchNum", class: "select-item" }, { default: vue.withCtx(() => [ !$setup.editBatchNum ? (vue.openBlock(), vue.createBlock(_component_uni_data_select, { key: 0, modelValue: $setup.valiFormData.batchNum, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.valiFormData.batchNum = $event), placeholder: "请选择批次号", localdata: $setup.options.batch, clear: false }, null, 8, ["modelValue", "localdata"])) : vue.createCommentVNode("v-if", true), $setup.editBatchNum ? (vue.openBlock(), vue.createBlock(_component_uni_easyinput, { key: 1, value: $setup.batchNum, disabled: $setup.editBatchNum }, null, 8, ["value", "disabled"])) : vue.createCommentVNode("v-if", true), !$setup.editBatchNum ? (vue.openBlock(), vue.createElementBlock("button", { key: 2, type: "primary", onClick: $setup.submitBatchNum }, "确认")) : vue.createCommentVNode("v-if", true), $setup.editBatchNum ? (vue.openBlock(), vue.createElementBlock("button", { key: 3, type: "primary", onClick: _cache[3] || (_cache[3] = ($event) => $setup.editBatchNum = false) }, "修改")) : vue.createCommentVNode("v-if", true) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { label: "绑定托盘号", name: "palletNum", class: "select-item" }, { default: vue.withCtx(() => [ !$setup.editPalletNum ? (vue.openBlock(), vue.createBlock(_component_uni_data_picker, { key: 0, placeholder: "请选择托盘号", "popup-title": "绑定托盘号", localdata: $setup.options.pallet, modelValue: $setup.valiFormData.palletNum, "onUpdate:modelValue": _cache[4] || (_cache[4] = ($event) => $setup.valiFormData.palletNum = $event), "clear-icon": false }, null, 8, ["localdata", "modelValue"])) : vue.createCommentVNode("v-if", true), $setup.editPalletNum ? (vue.openBlock(), vue.createBlock(_component_uni_easyinput, { key: 1, value: $setup.palletNum, disabled: $setup.editPalletNum }, null, 8, ["value", "disabled"])) : vue.createCommentVNode("v-if", true), !$setup.editPalletNum ? (vue.openBlock(), vue.createElementBlock("button", { key: 2, type: "primary", onClick: $setup.submitPalletNum }, "确认")) : vue.createCommentVNode("v-if", true), $setup.editPalletNum ? (vue.openBlock(), vue.createElementBlock("button", { key: 3, type: "primary", onClick: _cache[5] || (_cache[5] = ($event) => $setup.editPalletNum = false) }, "修改")) : vue.createCommentVNode("v-if", true) ]), _: 1 /* STABLE */ }) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "default", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "default", onClick: $setup.checkOrder, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "search", size: "18" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 查看运单 ") ], 8, ["loading"]), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]), $setup.scanLotnoHistory.length > 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "history" }, [ vue.createElementVNode("text", { class: "title" }, "记录(最近5条)") ])) : vue.createCommentVNode("v-if", true), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.scanLotnoHistory.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "type" }, vue.toDisplayString(item.type), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.orderNum), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesScanLotnoScanLotno = /* @__PURE__ */ _export_sfc(_sfc_main$m, [["render", _sfc_render$l], ["__file", "E:/demo/hmrabbit/src/pages/scanLotno/scanLotno.vue"]]); const _sfc_main$l = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const scanLotnoHistory = vue.ref([]); const getHistory = () => { scanLotnoHistory.value = uni.getStorageSync("scanLotnoHistory"); }; onLoad(() => { getHistory(); }); const __returned__ = { scanLotnoHistory, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$k(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.scanLotnoHistory, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "type" }, vue.toDisplayString(item.type), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.orderNum), 5 /* TEXT, STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.scanLotnoHistory.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesScanLotnoLogList = /* @__PURE__ */ _export_sfc(_sfc_main$l, [["render", _sfc_render$k], ["__scopeId", "data-v-01599952"], ["__file", "E:/demo/hmrabbit/src/pages/scanLotno/logList.vue"]]); const _sfc_main$k = { name: "UniSection", emits: ["click"], props: { type: { type: String, default: "" }, title: { type: String, required: true, default: "" }, titleFontSize: { type: String, default: "14px" }, titleColor: { type: String, default: "#333" }, subTitle: { type: String, default: "" }, subTitleFontSize: { type: String, default: "12px" }, subTitleColor: { type: String, default: "#999" }, padding: { type: [Boolean, String], default: false } }, computed: { _padding() { if (typeof this.padding === "string") { return this.padding; } return this.padding ? "10px" : ""; } }, watch: { title(newVal) { if (uni.report && newVal !== "") { uni.report("title", newVal); } } }, methods: { onClick() { this.$emit("click"); } } }; function _sfc_render$j(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-section" }, [ vue.createElementVNode("view", { class: "uni-section-header", onClick: _cache[0] || (_cache[0] = (...args) => $options.onClick && $options.onClick(...args)) }, [ $props.type ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: vue.normalizeClass(["uni-section-header__decoration", $props.type]) }, null, 2 /* CLASS */ )) : vue.renderSlot(_ctx.$slots, "decoration", { key: 1 }, void 0, true), vue.createElementVNode("view", { class: "uni-section-header__content" }, [ vue.createElementVNode( "text", { style: vue.normalizeStyle({ "font-size": $props.titleFontSize, "color": $props.titleColor }), class: vue.normalizeClass(["uni-section__content-title", { "distraction": !$props.subTitle }]) }, vue.toDisplayString($props.title), 7 /* TEXT, CLASS, STYLE */ ), $props.subTitle ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0, style: vue.normalizeStyle({ "font-size": $props.subTitleFontSize, "color": $props.subTitleColor }), class: "uni-section-header__content-sub" }, vue.toDisplayString($props.subTitle), 5 /* TEXT, STYLE */ )) : vue.createCommentVNode("v-if", true) ]), vue.createElementVNode("view", { class: "uni-section-header__slot-right" }, [ vue.renderSlot(_ctx.$slots, "right", {}, void 0, true) ]) ]), vue.createElementVNode( "view", { class: "uni-section-content", style: vue.normalizeStyle({ padding: $options._padding }) }, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ], 4 /* STYLE */ ) ]); } const __easycom_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$k, [["render", _sfc_render$j], ["__scopeId", "data-v-17c33c2a"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-section/uni-section.vue"]]); const _sfc_main$j = /* @__PURE__ */ vue.defineComponent({ __name: "waybillsList", setup(__props, { expose: __expose }) { __expose(); const waybills = vue.ref([]); const getHistory = () => { waybills.value = uni.getStorageSync("waybills"); }; onLoad(() => { getHistory(); }); const __returned__ = { waybills, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$i(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_section = resolveEasycom(vue.resolveDynamicComponent("uni-section"), __easycom_0$1); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ vue.createVNode(_component_uni_section, { title: "数量: " + $setup.waybills.length }, null, 8, ["title"]), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.waybills, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode( "text", { class: "code", style: { color: "#666" } }, vue.toDisplayString(item.order_box_no), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "type" }, "重量: " + vue.toDisplayString(item.weight) + "KG", 1 /* TEXT */ ), vue.createElementVNode("view", { class: "sub-items" }, [ vue.createElementVNode("view", { class: "sub-item" }, [ vue.createElementVNode("text", { class: "type" }, "批次/船航/托盘"), vue.createElementVNode( "text", { class: "type" }, vue.toDisplayString(item.batch_shipping_pallet), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "sub-item" }, [ vue.createElementVNode("text", { class: "type" }, "末公里运单号"), vue.createElementVNode( "text", { class: "type" }, vue.toDisplayString(item.tracking_number || "无"), 1 /* TEXT */ ) ]) ]) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.waybills.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无运单")) : vue.createCommentVNode("v-if", true) ]); } const PagesScanLotnoWaybillsList = /* @__PURE__ */ _export_sfc(_sfc_main$j, [["render", _sfc_render$i], ["__scopeId", "data-v-9aaaa5da"], ["__file", "E:/demo/hmrabbit/src/pages/scanLotno/waybillsList.vue"]]); const waybillNoOptions = () => { return http({ method: "GET", url: "/admin/warehouse.waybillNo/getOptions" }); }; const addWaybillNo = (data) => { return http({ method: "POST", url: "/admin/warehouse.waybillNo/add", data }); }; const _sfc_main$i = /* @__PURE__ */ vue.defineComponent({ __name: "waybillNo", setup(__props, { expose: __expose }) { __expose(); const editSpaceNo = vue.ref(false); const loading = vue.ref(false); const hidePage = vue.ref(false); const focusType = vue.ref(true); const waybillNoHistory = vue.ref([]); const messageRef = vue.ref(); const messageType = vue.ref(); const messageText = vue.ref(); let st2; const valiFormData = vue.ref({ code: "", space_id: "" }); const rules = vue.reactive({ code: { rules: [ { required: true, errorMessage: "单号不能为空" } ] } }); const options = vue.reactive({ space: [] }); const scanInput = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { valiFormData.value.code = res.result; }, fail: (err) => { } }); }; const reset = () => { loading.value = false; valiFormData.value.code = ""; }; const submitSpace = () => { if (valiFormData.value.space_id) { editSpaceNo.value = true; setFocus(); } else { messageType.value = "error"; messageText.value = "请选择库位"; messageRef.value.open(); } }; const space = vue.computed(() => { const res = options.space.find((item) => item.value === valiFormData.value.space_id); return res == null ? void 0 : res.text; }); const findPalletNumIdByValue = (data, targetValue) => { for (let i2 = 0; i2 < data.length; i2++) { const item = data[i2]; if (item.id === targetValue || item.value === targetValue) { return [item.id]; } else if (item.children && item.children.length > 0) { const childId = findPalletNumIdByValue(item.children, targetValue); if (childId !== null) { return childId; } } } return null; }; const onsubmit = async () => { if (valiFormData.value.space_id && valiFormData.value.code) { st2 && clearTimeout(st2); loading.value = true; const res = await addWaybillNo({ code: valiFormData.value.code, space_id: valiFormData.value.space_id }); loading.value = false; const space2 = options.space.find((item) => item.value === valiFormData.value.space_id); if (res.code == 1) { messageType.value = "success"; messageText.value = res.msg; messageRef.value.open(); const historyItem = { code: valiFormData.value.code, createTime: /* @__PURE__ */ new Date(), type: "运单号", space: space2.text, status: true }; waybillNoHistory.value.unshift(historyItem); uni.setStorageSync("waybillNoHistory", waybillNoHistory.value); getHistory(); } else { messageType.value = "error"; messageText.value = res.msg; messageRef.value.open(); const historyItem = { code: valiFormData.value.code, createTime: /* @__PURE__ */ new Date(), type: "运单号", space: space2.text, status: false }; waybillNoHistory.value.unshift(historyItem); uni.setStorageSync("waybillNoHistory", waybillNoHistory.value); getHistory(); } st2 = setTimeout(() => { reset(); setFocus(); st2 && clearTimeout(st2); }, 1e3); } else { if (!valiFormData.value.space_id) { messageType.value = "error"; messageText.value = "请选择库位"; messageRef.value.open(); } if (!valiFormData.value.code) { messageType.value = "error"; messageText.value = "请填写运单号"; messageRef.value.open(); } } }; const getHistory = () => { waybillNoHistory.value = uni.getStorageSync("waybillNoHistory") || []; }; const keypress = (e2) => { if (e2.keyCode === 102 || e2.keyCode === 103 || e2.keyCode === 104) ; if (e2.keyCode == 66) { onsubmit(); } }; onLoad(() => { plus.key.addEventListener("keyup", keypress); }); onUnload(() => { plus.key.removeEventListener("keyup", keypress); }); onHide(() => { hidePage.value = true; plus.key.removeEventListener("keyup", keypress); }); onBackPress(() => { plus.key.removeEventListener("keyup", keypress); }); onShow(() => { hidePage.value = false; getOptions(); getHistory(); }); const getOptions = async () => { const res = await waybillNoOptions(); if (res.code === 1) { for (let key in res.data.space_id) { if (res.data.space_id.hasOwnProperty(key)) { options.space.push({ text: res.data.space_id[key], value: key }); } } } }; const setFocus = () => { if (hidePage.value) { return; } focusType.value = false; vue.nextTick(() => { focusType.value = true; }); }; onNavigationBarButtonTap((event) => { if (event.index === 0) { uni.navigateTo({ url: "/pages/waybillNo/logList" }); } }); const __returned__ = { editSpaceNo, loading, hidePage, focusType, waybillNoHistory, messageRef, messageType, messageText, get st() { return st2; }, set st(v2) { st2 = v2; }, valiFormData, rules, options, scanInput, reset, submitSpace, space, findPalletNumIdByValue, onsubmit, getHistory, keypress, getOptions, setFocus }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$h(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_data_select = resolveEasycom(vue.resolveDynamicComponent("uni-data-select"), __easycom_0$3); const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock("view", { class: "container" }, [ vue.createVNode(_component_uni_forms, { ref: "valiForm", "label-align": "right", "label-width": 80, rules: $setup.rules, modelValue: $setup.valiFormData }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "space-select" }, [ !$setup.editSpaceNo ? (vue.openBlock(), vue.createBlock(_component_uni_data_select, { key: 0, modelValue: $setup.valiFormData.space_id, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.valiFormData.space_id = $event), placeholder: "请选择库位", localdata: $setup.options.space, clear: false }, null, 8, ["modelValue", "localdata"])) : vue.createCommentVNode("v-if", true), $setup.editSpaceNo ? (vue.openBlock(), vue.createBlock(_component_uni_easyinput, { key: 1, value: $setup.space, disabled: $setup.editSpaceNo }, null, 8, ["value", "disabled"])) : vue.createCommentVNode("v-if", true), !$setup.editSpaceNo ? (vue.openBlock(), vue.createElementBlock("button", { key: 2, type: "primary", onClick: $setup.submitSpace }, "确认")) : vue.createCommentVNode("v-if", true), $setup.editSpaceNo ? (vue.openBlock(), vue.createElementBlock("button", { key: 3, type: "primary", onClick: _cache[1] || (_cache[1] = ($event) => $setup.editSpaceNo = false) }, "修改")) : vue.createCommentVNode("v-if", true) ]), vue.createElementVNode("view", null, [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.valiFormData.code, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.valiFormData.code = $event), placeholder: "请输入运单号", suffixIcon: "scan", focus: $setup.focusType, onIconClick: $setup.scanInput }, null, 8, ["modelValue", "focus"]) ]) ]), _: 1 /* STABLE */ }, 8, ["rules", "modelValue"]), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { type: "default", onClick: $setup.reset }, "重置"), vue.createElementVNode("button", { type: "primary", onClick: $setup.onsubmit, loading: $setup.loading }, [ !$setup.loading ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", size: "18", color: "white" })) : vue.createCommentVNode("v-if", true), vue.createTextVNode(" 提交 ") ], 8, ["loading"]) ]), $setup.waybillNoHistory.length > 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "history" }, [ vue.createElementVNode("text", { class: "title" }, "记录(最近5条)") ])) : vue.createCommentVNode("v-if", true), vue.createElementVNode("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.waybillNoHistory.slice(0, 5), (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createElementVNode("view", null, [ vue.createElementVNode("view", null, [ vue.createElementVNode("text", { class: "type" }, "库位"), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.space), 5 /* TEXT, STYLE */ ) ]), vue.createElementVNode("view", null, [ vue.createElementVNode("text", { class: "type" }, "单号"), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, vue.toDisplayString(item.code), 5 /* TEXT, STYLE */ ) ]), vue.createElementVNode("view", { class: "space-time" }, [ vue.createElementVNode( "text", null, vue.toDisplayString(item.createTime), 1 /* TEXT */ ) ]) ]), vue.createElementVNode("view", null, [ item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")) ]) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesWaybillNoWaybillNo = /* @__PURE__ */ _export_sfc(_sfc_main$i, [["render", _sfc_render$h], ["__file", "E:/demo/hmrabbit/src/pages/waybillNo/waybillNo.vue"]]); const _sfc_main$h = /* @__PURE__ */ vue.defineComponent({ __name: "logList", setup(__props, { expose: __expose }) { __expose(); const waybillNoHistory = vue.ref([]); const getHistory = async () => { waybillNoHistory.value = uni.getStorageSync("waybillNoHistory"); }; onLoad(async () => { await getHistory(); }); const __returned__ = { waybillNoHistory, getHistory }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$g(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); return vue.openBlock(), vue.createElementBlock("view", { class: "history" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.waybillNoHistory, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2 }, [ vue.createCommentVNode(` 库位\r {{ item.space }}\r \r 单号\r {{ item.code }}\r \r \r \r {{ item.createTime }}\r \r \r \r \r \r 暂无历史\r \r 历史运单号\r \r 运单号:\r {{ item }}\r \r 已失效\r -`), vue.createElementVNode( "text", { class: "code", style: vue.normalizeStyle({ color: item.status ? "green" : "#666" }) }, [ vue.createTextVNode( vue.toDisplayString(item.orderNum) + " ", 1 /* TEXT */ ), item.batch_text ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0 }, " 单号 " + vue.toDisplayString(item.batch_text), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), item.space ? (vue.openBlock(), vue.createElementBlock( "text", { key: 1 }, " 库位 " + vue.toDisplayString(item.space), 1 /* TEXT */ )) : vue.createCommentVNode("v-if", true), vue.createTextVNode( " " + vue.toDisplayString(item.type), 1 /* TEXT */ ) ], 4 /* STYLE */ ), item.status ? (vue.openBlock(), vue.createBlock(_component_uni_icons, { key: 0, type: "checkmarkempty", class: "status", size: "16", color: "green" })) : (vue.openBlock(), vue.createElementBlock("text", { key: 1, class: "status fail" }, "F")), vue.createElementVNode( "text", { style: { "margin-left": "10rpx", "font-weight": "300" } }, vue.toDisplayString("\r\n" + item.createTime), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), $setup.waybillNoHistory.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无历史")) : vue.createCommentVNode("v-if", true) ]); } const PagesWaybillNoLogList = /* @__PURE__ */ _export_sfc(_sfc_main$h, [["render", _sfc_render$g], ["__scopeId", "data-v-c93ee9b5"], ["__file", "E:/demo/hmrabbit/src/pages/waybillNo/logList.vue"]]); const waybillPickUpOrders = (params) => { return http({ method: "GET", url: "/admin/pickup.waybillPickUpOrder/index", data: params }); }; const getPickUpById = (pick_up_order_id) => { return http({ method: "GET", url: "/admin/pickup.waybillPickUpOrder/detail", data: { pick_up_order_id } }); }; const getPickUpByWaybillNo = (waybill_no) => { return http({ method: "GET", url: "/admin/pickup.waybillPickUpOrder/getByWaybillNo", data: { waybill_no } }); }; const startOff = (data) => { return http({ method: "POST", url: "/admin/pickup.waybillPickUpOrder/startOff", data }); }; function collect(data) { return http({ method: "POST", url: "/admin/pickup.waybillPickUpOrder/collect", data }); } function pickupDelivered(data) { return http({ method: "POST", url: "/admin/pickup.waybillPickUpOrder/delivered", data }); } function deliveryToTheCourierPoint(data) { return http({ method: "POST", url: "/admin/pickup.waybillPickUpOrder/deliveryToTheCourierPoint", data }); } const _sfc_main$g = /* @__PURE__ */ vue.defineComponent({ __name: "waybillPickUpOrder", setup(__props, { expose: __expose }) { __expose(); let sendOutURL = ""; let deliveredURL = ""; let refuseURL = ""; let createTrackPodURL = ""; let cancelFedExPickUpURL = ""; const loading = vue.ref(false); const loadingBtn = vue.ref(false); const searchValue = vue.ref(); const waybillDelivery = vue.ref([]); const total = vue.ref(); const messageType = vue.ref(); const messageText = vue.ref(); const messageRef = vue.ref(); const showRightRef = vue.ref(); const params = vue.reactive({ page: 1, limit: 10 }); const scrollLeft = vue.ref(0); const contentScrollW = vue.ref(0); const activeIndex = vue.ref(0); const statusItems = vue.ref([ { id: 1, title: "全部", value: 0 }, { id: 2, title: "待取件", value: 2 }, { id: 3, title: "取件中", value: 3 }, { id: 4, title: "部分取件", value: 4 }, { id: 5, title: "全部取件", value: 5 }, { id: 6, title: "部分投递", value: 6 }, { id: 7, title: "全部投递", value: 7 } ]); const changeMenu = (index) => { activeIndex.value = index; scrollLeft.value = statusItems.value[index].left - contentScrollW.value / 2 + statusItems.value[index].width / 2; }; const resetForm = () => { }; const confirmForm = () => { showRightRef.value.close(); }; const copyOrderNo = (order_no) => { uni.setClipboardData({ data: order_no, success: function() { uni.showToast({ title: "复制成功", icon: "success", duration: 2e3 }); }, fail: function() { formatAppLog("log", "at pages/pickup/waybillPickUpOrder.vue:188", "复制失败"); } }); }; const callPhone = (phoneNumber) => { formatAppLog("log", "at pages/pickup/waybillPickUpOrder.vue:194", phoneNumber); uni.makePhoneCall({ phoneNumber, success: function() { formatAppLog("log", "at pages/pickup/waybillPickUpOrder.vue:199", "拨打电话成功!"); }, fail: function() { formatAppLog("log", "at pages/pickup/waybillPickUpOrder.vue:202", "拨打电话失败!"); } }); }; const scanInput = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { formatAppLog("log", "at pages/pickup/waybillPickUpOrder.vue:229", "res---", res.result); }, fail: (err) => { } }); }; const getList = async () => { loading.value = true; params.page = 1; const res = await waybillPickUpOrders(params); loading.value = false; if (res.code == 1) { waybillDelivery.value = res.data.list; total.value = res.data.total; } else { messageType.value = "error"; messageText.value = res.msg; messageRef.value.open(); } }; onShow(() => { getList(); }); vue.onMounted(() => { getScrollW(); }); onNavigationBarButtonTap(async (event) => { if (event.index === 0) { const res = await getPickUpByWaybillNo("YTSEA2412080001GB01"); if (res.code == 1 && res.data.id) { uni.navigateTo({ url: `/pages/pickup/waybillPickUpDetail?waybill_no=${res.data.waybill_no}` }); } else { messageType.value = "error"; messageText.value = "面单不存在"; messageRef.value.open(); } } }); const getScrollW = () => { const instance = vue.getCurrentInstance(); const query = uni.createSelectorQuery().in(instance.proxy); query.select(".scroll-view").boundingClientRect((data) => { contentScrollW.value = data.width; }).exec(); query.selectAll(".scroll-item").boundingClientRect((data) => { let dataLen = data.length - 1; for (let i2 = 0; i2 < dataLen; i2++) { statusItems.value[i2].left = data[i2].left || 0; statusItems.value[i2].width = data[i2].width; } }).exec(); }; const onScrolltolower = async () => { if (waybillDelivery.value.length < total.value) { params.page++; } else { return uni.showToast({ icon: "none", title: "没有更多数据了~" }); } const res = await waybillPickUpOrders(params); if (res.code == 1) { waybillDelivery.value.push(...res.data.list); total.value = res.data.total; } }; const __returned__ = { get sendOutURL() { return sendOutURL; }, set sendOutURL(v2) { sendOutURL = v2; }, get deliveredURL() { return deliveredURL; }, set deliveredURL(v2) { deliveredURL = v2; }, get refuseURL() { return refuseURL; }, set refuseURL(v2) { refuseURL = v2; }, get createTrackPodURL() { return createTrackPodURL; }, set createTrackPodURL(v2) { createTrackPodURL = v2; }, get cancelFedExPickUpURL() { return cancelFedExPickUpURL; }, set cancelFedExPickUpURL(v2) { cancelFedExPickUpURL = v2; }, loading, loadingBtn, searchValue, waybillDelivery, total, messageType, messageText, messageRef, showRightRef, params, scrollLeft, contentScrollW, activeIndex, statusItems, changeMenu, resetForm, confirmForm, copyOrderNo, callPhone, scanInput, getList, getScrollW, onScrolltolower }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$f(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 输入框和筛选按钮 "), vue.createElementVNode("view", { class: "inputfilter" }, [ vue.createVNode(_component_uni_easyinput, { modelValue: $setup.searchValue, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.searchValue = $event), placeholder: "请输入单号", inputBorder: false }, null, 8, ["modelValue"]), vue.createElementVNode("view", { class: "filter" }, [ vue.createElementVNode("text", null, "筛选") ]) ]), vue.createCommentVNode(" 状态选项 "), vue.createElementVNode("view", { class: "center-cut-menu" }, [ vue.createElementVNode("scroll-view", { "scroll-x": true, "scroll-with-animation": true, "show-scrollbar": false, class: "scroll-view", "scroll-left": $setup.scrollLeft }, [ vue.createElementVNode("view", { class: "scroll-item" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.statusItems, (item, index) => { return vue.openBlock(), vue.createElementBlock("view", { class: "scroll-item", key: item.id, onClick: ($event) => $setup.changeMenu(index) }, [ vue.createElementVNode( "text", { class: vue.normalizeClass(["item-text", $setup.activeIndex == index ? "active" : ""]) }, vue.toDisplayString(item.title), 3 /* TEXT, CLASS */ ) ], 8, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ], 8, ["scroll-left"]) ]), vue.createCommentVNode(" 列表 "), vue.createElementVNode( "scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "scroll-view", onScrolltolower: $setup.onScrolltolower }, [ vue.createElementVNode("view", { class: "orders" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.waybillDelivery, (item, i2) => { var _a, _b, _c, _d, _e2, _f; return vue.openBlock(), vue.createElementBlock("navigator", { "hover-class": "none", class: "navigator", key: i2, url: `/pages/pickup/waybillPickUpDetails?id=${item.id}` }, [ vue.createElementVNode("view", { class: "order_no_state" }, [ vue.createElementVNode("view", { class: "order_no" }, [ vue.createElementVNode("text", { class: "title" }, "订单号"), vue.createElementVNode( "text", { class: "content" }, vue.toDisplayString(item.order_no), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "order_state" }, [ vue.createElementVNode( "text", { class: vue.normalizeClass(`state-${item.status}`) }, vue.toDisplayString(item.status_text), 3 /* TEXT, CLASS */ ) ]) ]), vue.createElementVNode("view", { class: "pick_up_date" }, [ vue.createElementVNode( "text", null, vue.toDisplayString(item.pick_up_date), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "segmentation-line" }), vue.createElementVNode("view", { class: "address" }, [ vue.createElementVNode("view", { class: "user-info" }, [ vue.createElementVNode( "text", { class: "user" }, vue.toDisplayString(((_a = item.address) == null ? void 0 : _a.first_name) + " " + ((_b = item.address) == null ? void 0 : _b.last_name)), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "mobile" }, "+" + vue.toDisplayString(((_c = item.address) == null ? void 0 : _c.mobile_code) + " " + ((_d = item.address) == null ? void 0 : _d.mobile)), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "address-info" }, [ vue.createElementVNode( "text", null, vue.toDisplayString((_e2 = item.address) == null ? void 0 : _e2.city), 1 /* TEXT */ ), vue.createElementVNode( "text", null, vue.toDisplayString((_f = item.address) == null ? void 0 : _f.zip_code), 1 /* TEXT */ ) ]) ]), vue.createElementVNode("view", null, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.goods, (good) => { return vue.openBlock(), vue.createElementBlock("view", { key: good.id, class: "goods" }, [ vue.createElementVNode("text", { class: "item" }, [ vue.createTextVNode( vue.toDisplayString(good.name) + " ", 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "qty" }, " x" + vue.toDisplayString(good.qty), 1 /* TEXT */ ) ]) ]); }), 128 /* KEYED_FRAGMENT */ )) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createElementVNode( "view", { class: "loading-text" }, vue.toDisplayString($setup.total === $setup.waybillDelivery.length ? "没有更多数据了~" : "正在加载..."), 1 /* TEXT */ ) ], 32 /* NEED_HYDRATION */ ), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesPickupWaybillPickUpOrder = /* @__PURE__ */ _export_sfc(_sfc_main$g, [["render", _sfc_render$f], ["__scopeId", "data-v-cb3c2bb0"], ["__file", "E:/demo/hmrabbit/src/pages/pickup/waybillPickUpOrder.vue"]]); const _sfc_main$f = /* @__PURE__ */ vue.defineComponent({ __name: "waybillPickUpDetails", props: { id: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const query = __props; const messageRef = vue.ref(); const message = vue.ref({ type: "success", text: "" }); const details = vue.ref(); const getOrderByIdData = async () => { const res = await getPickUpById(query.id); details.value = res.data.details; }; onShow(() => { getOrderByIdData(); }); const onTapImage = (url) => { uni.previewImage({ current: url, urls: goods.value.mainPictures }); }; const onButtonClick = async (id, value) => { switch (value) { case "start_off": startOff({ id }).then((res) => { getOrderByIdData(); message.value.text = "发出成功"; message.value.type = "success"; messageRef.value.open(); }).catch(() => { message.value.text = "发出失败,请稍后重试"; message.value.type = "error"; messageRef.value.open(); }); break; case "collect": collect({ id }).then((res) => { getOrderByIdData(); message.value.text = "揽收成功"; message.value.type = "success"; messageRef.value.open(); }).catch(() => { message.value.text = "揽收失败,请稍后重试"; message.value.type = "error"; messageRef.value.open(); }); break; case "arrive": pickupDelivered({ id }).then((res) => { getOrderByIdData(); message.value.text = "修改成功"; message.value.type = "success"; messageRef.value.open(); }).catch(() => { message.value.text = "修改失败,请稍后重试"; message.value.type = "error"; messageRef.value.open(); }); break; case "delivery_to_the_courier_point": deliveryToTheCourierPoint({ id, courier_point: "", images: [""] }).then((res) => { getOrderByIdData(); message.value.text = "修改成功"; message.value.type = "success"; messageRef.value.open(); }).catch(() => { message.value.text = "修改失败,请稍后重试"; message.value.type = "error"; messageRef.value.open(); }); break; } }; const contactClient = () => { uni.makePhoneCall({ phoneNumber: "13200000000" }); }; const __returned__ = { safeAreaInsets, query, messageRef, message, details, getOrderByIdData, onTapImage, onButtonClick, contactClient }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$e(_ctx, _cache, $props, $setup, $data, $options) { var _a; const _component_uni_icons = resolveEasycom(vue.resolveDynamicComponent("uni-icons"), __easycom_0$8); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createElementVNode("scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "viewport" }, [ vue.createElementVNode("view", { class: "detail panel" }, [ vue.createElementVNode("view", { class: "title" }, [ vue.createElementVNode("text", null, "运单列表") ]), vue.createElementVNode("view", { class: "content" }, [ vue.createElementVNode("view", { class: "properties" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.details, (item) => { return vue.openBlock(), vue.createElementBlock("view", { key: item.id, class: "item" }, [ vue.createElementVNode("navigator", { url: `/pages/pickup/waybillPickUpDetail?waybill_no=${item.waybill_no}` }, [ vue.createElementVNode("view", { class: "order_no_state" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( "text", null, vue.toDisplayString(item.waybill_no), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "order_state" }, [ vue.createElementVNode( "text", { class: vue.normalizeClass("state-" + item.status) }, vue.toDisplayString(item.status_text), 3 /* TEXT, CLASS */ ) ]) ]) ], 8, ["url"]), vue.createElementVNode("view", { class: "info" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode(" 预估重量: "), vue.createElementVNode( "text", null, vue.toDisplayString(item.estimated_weight) + "KG", 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 取件码: "), vue.createElementVNode( "text", null, vue.toDisplayString(item.ups_prn || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 准备时间: "), vue.createElementVNode( "text", null, vue.toDisplayString(item.ups_ready_time || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 截止时间: "), vue.createElementVNode( "text", null, vue.toDisplayString(item.ups_close_time || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "label-info" }, [ vue.createElementVNode("text", null, "面单"), item.labels.length === 0 ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "empty" }, "暂未生成")) : (vue.openBlock(), vue.createElementBlock("text", { key: 1 }, [ vue.createTextVNode( "(" + vue.toDisplayString(item.labels.length) + ") ", 1 /* TEXT */ ), vue.createVNode(_component_uni_icons, { type: "search", size: "16", color: "#007bff" }) ])) ]) ]), vue.createCommentVNode(" 操作按钮 "), vue.createElementVNode("view", { class: "operations" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.operations, (operation) => { return vue.openBlock(), vue.createElementBlock("view", { key: operation.value }, [ vue.createElementVNode("button", { class: "mini-btn", type: "primary", size: "mini", onClick: ($event) => $setup.onButtonClick(item.id, operation.value) }, vue.toDisplayString(operation.text), 9, ["onClick"]) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createElementVNode("view", { class: "title label" }, [ vue.createElementVNode("text", null, [ vue.createTextVNode("物品清单 "), !item.goods.length ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "bln" }, "无")) : vue.createCommentVNode("v-if", true) ]) ]), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.goods, (good, g2) => { return vue.openBlock(), vue.createElementBlock("view", { key: g2, class: "goods" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode("类型: "), vue.createElementVNode( "text", null, vue.toDisplayString(good.category_name), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("名称: "), vue.createElementVNode( "text", null, vue.toDisplayString(good.goods_name), 1 /* TEXT */ ), vue.createElementVNode( "text", { style: { "color": "#666666", "font-size": "22rpx" } }, vue.toDisplayString(" x" + good.qty), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("价格: "), vue.createElementVNode( "text", null, "£" + vue.toDisplayString(good.price), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("合计: "), vue.createElementVNode( "text", null, "£" + vue.toDisplayString(good.amount), 1 /* TEXT */ ) ]), vue.createCommentVNode(' ') ]); }), 128 /* KEYED_FRAGMENT */ )) ]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createCommentVNode(" 图片详情 ") ]), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.message.type, message: $setup.message.text, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]) ]), vue.createCommentVNode(" 用户操作 "), $setup.details ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "contact-client", style: vue.normalizeStyle({ paddingBottom: ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.bottom) + "px" }) }, [ vue.createElementVNode("view", { class: "buttons" }, [ vue.createElementVNode("view", { onClick: $setup.contactClient, class: "payment" }, " 联系客户 ") ]) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ ); } const PagesPickupWaybillPickUpDetails = /* @__PURE__ */ _export_sfc(_sfc_main$f, [["render", _sfc_render$e], ["__file", "E:/demo/hmrabbit/src/pages/pickup/waybillPickUpDetails.vue"]]); const _sfc_main$e = /* @__PURE__ */ vue.defineComponent({ __name: "waybillPickUpDetail", props: { waybill_no: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const query = __props; const detail = vue.ref(); const getOrderByIdData = async () => { const res = await getPickUpByWaybillNo(query.waybill_no); detail.value = res.data; }; onLoad(() => { getOrderByIdData(); }); const onTapImage = (url) => { uni.previewImage({ current: url, urls: goods.value.mainPictures }); }; const contactClient = () => { uni.makePhoneCall({ phoneNumber: "13200000000" }); }; const __returned__ = { safeAreaInsets, query, detail, getOrderByIdData, onTapImage, contactClient }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$d(_ctx, _cache, $props, $setup, $data, $options) { var _a; return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createElementVNode("scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "viewport" }, [ vue.createElementVNode("view", { class: "detail panel" }, [ vue.createElementVNode("view", { class: "content" }, [ vue.createElementVNode("view", { class: "properties" }, [ $setup.detail ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "item" }, [ vue.createElementVNode("view", { class: "order_no_state" }, [ vue.createElementVNode("view", null, [ vue.createElementVNode( "text", null, vue.toDisplayString($setup.detail.waybill_no), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "order_state" }, [ vue.createElementVNode( "text", { class: vue.normalizeClass("state-" + $setup.detail.status) }, vue.toDisplayString($setup.detail.status_text), 3 /* TEXT, CLASS */ ) ]) ]), vue.createElementVNode("view", { class: "info" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode(" 预估重量: "), vue.createElementVNode( "text", null, vue.toDisplayString($setup.detail.estimated_weight) + "KG", 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 取件码: "), vue.createElementVNode( "text", null, vue.toDisplayString($setup.detail.ups_prn || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 准备时间: "), vue.createElementVNode( "text", null, vue.toDisplayString($setup.detail.ups_ready_time || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode(" Ups 截止时间: "), vue.createElementVNode( "text", null, vue.toDisplayString($setup.detail.ups_close_time || "无"), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, " 面单 ") ]), vue.createElementVNode("view", { class: "title label" }, [ vue.createElementVNode("text", null, [ vue.createTextVNode("物品清单 "), !$setup.detail.goods.length ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "bln" }, "无")) : vue.createCommentVNode("v-if", true) ]) ]), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.detail.goods, (good, g2) => { return vue.openBlock(), vue.createElementBlock("view", { key: g2, class: "goods" }, [ vue.createElementVNode("view", null, [ vue.createTextVNode("类型: "), vue.createElementVNode( "text", null, vue.toDisplayString(good.category_name), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("名称: "), vue.createElementVNode( "text", null, vue.toDisplayString(good.goods_name), 1 /* TEXT */ ), vue.createElementVNode( "text", { style: { "color": "#666666", "font-size": "22rpx" } }, vue.toDisplayString(" x" + good.qty), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("价格: "), vue.createElementVNode( "text", null, "£" + vue.toDisplayString(good.price), 1 /* TEXT */ ) ]), vue.createElementVNode("view", null, [ vue.createTextVNode("合计: "), vue.createElementVNode( "text", null, "£" + vue.toDisplayString(good.amount), 1 /* TEXT */ ) ]), vue.createCommentVNode(' ') ]); }), 128 /* KEYED_FRAGMENT */ )) ])) : vue.createCommentVNode("v-if", true) ]), vue.createCommentVNode(" 图片详情 ") ]) ]) ]), vue.createCommentVNode(" 用户操作 "), _ctx.details ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: "contact-client", style: vue.normalizeStyle({ paddingBottom: ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.bottom) + "px" }) }, [ vue.createElementVNode("view", { class: "buttons" }, [ vue.createElementVNode("view", { onClick: $setup.contactClient, class: "payment" }, " 联系客户 ") ]) ], 4 /* STYLE */ )) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ ); } const PagesPickupWaybillPickUpDetail = /* @__PURE__ */ _export_sfc(_sfc_main$e, [["render", _sfc_render$d], ["__file", "E:/demo/hmrabbit/src/pages/pickup/waybillPickUpDetail.vue"]]); const _sfc_main$d = { name: "UniDrawer", components: {}, emits: ["change"], props: { /** * 显示模式(左、右),只在初始化生效 */ mode: { type: String, default: "" }, /** * 蒙层显示状态 */ mask: { type: Boolean, default: true }, /** * 遮罩是否可点击关闭 */ maskClick: { type: Boolean, default: true }, /** * 抽屉宽度 */ width: { type: Number, default: 220 } }, data() { return { visibleSync: false, showDrawer: false, rightMode: false, watchTimer: null, drawerWidth: 220 }; }, created() { this.drawerWidth = this.width; this.rightMode = this.mode === "right"; }, methods: { clear() { }, close(type) { if (type === "mask" && !this.maskClick || !this.visibleSync) return; this._change("showDrawer", "visibleSync", false); }, open() { if (this.visibleSync) return; this._change("visibleSync", "showDrawer", true); }, _change(param1, param2, status) { this[param1] = status; if (this.watchTimer) { clearTimeout(this.watchTimer); } this.watchTimer = setTimeout(() => { this[param2] = status; this.$emit("change", status); }, status ? 50 : 300); } } }; function _sfc_render$c(_ctx, _cache, $props, $setup, $data, $options) { return $data.visibleSync ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0, class: vue.normalizeClass([{ "uni-drawer--visible": $data.showDrawer }, "uni-drawer"]), onTouchmove: _cache[1] || (_cache[1] = vue.withModifiers((...args) => $options.clear && $options.clear(...args), ["stop", "prevent"])) }, [ vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-drawer__mask", { "uni-drawer__mask--visible": $data.showDrawer && $props.mask }]), onClick: _cache[0] || (_cache[0] = ($event) => $options.close("mask")) }, null, 2 /* CLASS */ ), vue.createElementVNode( "view", { class: vue.normalizeClass(["uni-drawer__content", { "uni-drawer--right": $data.rightMode, "uni-drawer--left": !$data.rightMode, "uni-drawer__content--visible": $data.showDrawer }]), style: vue.normalizeStyle({ width: $data.drawerWidth + "px" }) }, [ vue.renderSlot(_ctx.$slots, "default", {}, void 0, true) ], 6 /* CLASS, STYLE */ ) ], 34 /* CLASS, NEED_HYDRATION */ )) : vue.createCommentVNode("v-if", true); } const __easycom_3 = /* @__PURE__ */ _export_sfc(_sfc_main$d, [["render", _sfc_render$c], ["__scopeId", "data-v-183a7e94"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-drawer/uni-drawer.vue"]]); const _sfc_main$c = /* @__PURE__ */ vue.defineComponent({ __name: "waybillDeliveryOrder", setup(__props, { expose: __expose }) { __expose(); let pickupWaybillDeliveryOrderURL = ""; let sendOutURL = ""; let deliveredURL = ""; let refuseURL = ""; let createTrackPodURL = ""; let cancelFedExPickUpURL = ""; const loading = vue.ref(false); const loadingBtn = vue.ref(false); const token = vue.ref(); const searchValue = vue.ref(); const waybillDelivery = vue.ref([]); const messageType = vue.ref(); const messageText = vue.ref(); const messageRef = vue.ref(); const showRightRef = vue.ref(); const resetForm = () => { }; const confirmForm = () => { showRightRef.value.close(); }; const copyOrderNo = (order_no) => { uni.setClipboardData({ data: order_no, success: function() { uni.showToast({ title: "复制成功", icon: "success", duration: 2e3 }); }, fail: function() { formatAppLog("log", "at pages/waybillDeliveryOrder/waybillDeliveryOrder.vue:121", "复制失败"); } }); }; const callPhone = (phoneNumber) => { formatAppLog("log", "at pages/waybillDeliveryOrder/waybillDeliveryOrder.vue:127", phoneNumber); uni.makePhoneCall({ phoneNumber, success: function() { formatAppLog("log", "at pages/waybillDeliveryOrder/waybillDeliveryOrder.vue:132", "拨打电话成功!"); }, fail: function() { formatAppLog("log", "at pages/waybillDeliveryOrder/waybillDeliveryOrder.vue:135", "拨打电话失败!"); } }); }; const scanInput = async () => { let status = await checkPermission(); if (status !== 1) { return; } uni.scanCode({ success: (res) => { }, fail: (err) => { } }); }; const itemClick = (item) => { uni.setStorageSync("selectItem", item); uni.navigateTo({ url: "/pages/waybillDeliveryOrder/orderInfo?id=" + item.id }); }; const onButtonClick = async (row, value) => { if (value === "send_out") { sendOut({ id: row.id }); } else if (value === "delivered") { updateDelivered({ id: row.id }); } else if (value === "refuse") { updateRefuse({ id: row.id }); } else if (value === "create_track_pod") { createTrackPod({ id: row.id }); } else if (value === "edit") ; else if (value === "generate_label") ; else if (value === "fedex_appointment_pick_up") ; else if (value === "print_get_back_label") ; else if (value === "fedex_cancel_pick_up") { cancelFedExPickUp({ id: row.id }); } }; const sendOut = (data) => { loadingBtn.value = true; uni.request({ url: sendOutURL, method: "POST", header: { batoken: token.value }, data, success: ({ data: data2 }) => { loadingBtn.value = false; messageType.value = "success"; messageText.value = "发出成功"; messageRef.value.open(); }, fail: (err) => { loadingBtn.value = false; messageType.value = "error"; messageText.value = "发出失败,请稍后重试"; messageRef.value.open(); } }); }; const updateDelivered = (data) => { loadingBtn.value = true; uni.request({ url: deliveredURL, method: "POST", header: { batoken: token.value }, data, success: ({ data: data2 }) => { loadingBtn.value = false; messageType.value = "success"; messageText.value = "确认送达成功"; messageRef.value.open(); }, fail: (err) => { loadingBtn.value = false; messageType.value = "error"; messageText.value = "确认送达失败,请稍后重试"; messageRef.value.open(); } }); }; const updateRefuse = (data) => { loadingBtn.value = true; uni.request({ url: refuseURL, method: "POST", header: { batoken: token.value }, data, success: ({ data: data2 }) => { loadingBtn.value = false; messageType.value = "success"; messageText.value = "已拒绝签收"; messageRef.value.open(); }, fail: (err) => { loadingBtn.value = false; messageType.value = "error"; messageText.value = "修改失败,请稍后重试"; messageRef.value.open(); } }); }; const createTrackPod = (data) => { loadingBtn.value = true; uni.request({ url: createTrackPodURL, method: "POST", header: { batoken: token.value }, data, success: ({ data: data2 }) => { loadingBtn.value = false; messageType.value = "success"; messageText.value = "同步成功"; messageRef.value.open(); }, fail: (err) => { loadingBtn.value = false; messageType.value = "error"; messageText.value = "同步失败,请稍后重试"; messageRef.value.open(); } }); }; const cancelFedExPickUp = (data) => { loadingBtn.value = true; uni.request({ url: cancelFedExPickUpURL, method: "POST", header: { batoken: token.value }, data, success: ({ data: data2 }) => { loadingBtn.value = false; messageType.value = "success"; messageText.value = "操作成功"; messageRef.value.open(); }, fail: (err) => { loadingBtn.value = false; messageType.value = "error"; messageText.value = "操作失败,请稍后重试"; messageRef.value.open(); } }); }; const getList = () => { loading.value = true; uni.request({ url: pickupWaybillDeliveryOrderURL + "/index", method: "GET", header: { batoken: token.value }, success: ({ data }) => { loading.value = false; formatAppLog("log", "at pages/waybillDeliveryOrder/waybillDeliveryOrder.vue:336", data); if (data.code == 1) { waybillDelivery.value = data.data.list; } else { messageType.value = "error"; messageText.value = data.msg; messageRef.value.open(); } }, fail: (err) => { loading.value = false; } }); }; onLoad(() => { token.value = uni.getStorageSync("token"); getList(); }); onNavigationBarButtonTap((event) => { if (event.index === 0) { showRightRef.value.open(); } }); const __returned__ = { get pickupWaybillDeliveryOrderURL() { return pickupWaybillDeliveryOrderURL; }, set pickupWaybillDeliveryOrderURL(v2) { pickupWaybillDeliveryOrderURL = v2; }, get sendOutURL() { return sendOutURL; }, set sendOutURL(v2) { sendOutURL = v2; }, get deliveredURL() { return deliveredURL; }, set deliveredURL(v2) { deliveredURL = v2; }, get refuseURL() { return refuseURL; }, set refuseURL(v2) { refuseURL = v2; }, get createTrackPodURL() { return createTrackPodURL; }, set createTrackPodURL(v2) { createTrackPodURL = v2; }, get cancelFedExPickUpURL() { return cancelFedExPickUpURL; }, set cancelFedExPickUpURL(v2) { cancelFedExPickUpURL = v2; }, loading, loadingBtn, token, searchValue, waybillDelivery, messageType, messageText, messageRef, showRightRef, resetForm, confirmForm, copyOrderNo, callPhone, scanInput, itemClick, onButtonClick, sendOut, updateDelivered, updateRefuse, createTrackPod, cancelFedExPickUp, getList }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); const _imports_0 = "/static/copy.png"; const _imports_1 = "/static/call.png"; function _sfc_render$b(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_easyinput = resolveEasycom(vue.resolveDynamicComponent("uni-easyinput"), __easycom_0$7); const _component_uni_popup_message = resolveEasycom(vue.resolveDynamicComponent("uni-popup-message"), __easycom_1$1); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); const _component_uni_drawer = resolveEasycom(vue.resolveDynamicComponent("uni-drawer"), __easycom_3); return vue.openBlock(), vue.createElementBlock("view", { class: "list" }, [ vue.createCommentVNode(' '), vue.createVNode(_component_uni_easyinput, { modelValue: $setup.searchValue, "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.searchValue = $event), placeholder: "请输入单号", suffixIcon: "scan", onIconClick: $setup.scanInput }, null, 8, ["modelValue"]), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.waybillDelivery, (item, i2) => { return vue.openBlock(), vue.createElementBlock("view", { class: "item", key: i2, onClick: ($event) => $setup.itemClick(item) }, [ vue.createElementVNode("view", { class: "order-no" }, [ vue.createElementVNode( "text", null, " 派送单号: " + vue.toDisplayString(item.order_no), 1 /* TEXT */ ), vue.createElementVNode("image", { onClick: ($event) => $setup.copyOrderNo(item.order_no), class: "icon", src: _imports_0, mode: "aspectFill" }, null, 8, ["onClick"]) ]), vue.createElementVNode("view", { class: "address-info" }, [ vue.createElementVNode("view", { class: "info" }, [ vue.createElementVNode("view", { class: "user" }, [ vue.createElementVNode( "text", null, vue.toDisplayString(item.address.first_name + " " + item.address.last_name) + " " + vue.toDisplayString("+" + item.address.mobile_code + " " + item.address.mobile), 1 /* TEXT */ ), vue.createElementVNode("image", { onClick: ($event) => $setup.callPhone(item.address.mobile_code + " " + item.address.mobile), class: "icon", src: _imports_1, mode: "aspectFill" }, null, 8, ["onClick"]) ]), vue.createElementVNode("view", null, [ vue.createElementVNode("text", { class: "address" }, [ vue.createElementVNode( "text", { class: "city" }, vue.toDisplayString(item.address.city), 1 /* TEXT */ ), vue.createTextVNode( " " + vue.toDisplayString(item.address.zip_code), 1 /* TEXT */ ) ]), vue.createElementVNode("image", { onClick: ($event) => $setup.copyOrderNo(item.address.zip_code), class: "icon", src: _imports_0, mode: "aspectFill" }, null, 8, ["onClick"]) ]) ]), vue.createElementVNode("view", { class: "info" }) ]), vue.createElementVNode("view"), vue.createElementVNode("view", { class: "operations" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(item.operations, (operation, i22) => { return vue.openBlock(), vue.createElementBlock("button", { key: i22, onClick: ($event) => $setup.onButtonClick(item, operation.value), type: "info", size: "mini" }, vue.toDisplayString(operation.text), 9, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]) ], 8, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )), $setup.waybillDelivery.length === 0 ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "is-empty" }, "暂无派送单")) : vue.createCommentVNode("v-if", true), vue.createVNode( _component_uni_popup, { ref: "messageRef", type: "message" }, { default: vue.withCtx(() => [ vue.createVNode(_component_uni_popup_message, { type: $setup.messageType, message: $setup.messageText, duration: 2e3 }, null, 8, ["type", "message"]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ), vue.createVNode( _component_uni_drawer, { ref: "showRightRef", mode: "right", "mask-click": true }, { default: vue.withCtx(() => [ vue.createElementVNode("scroll-view", { style: { "height": "100%" }, "scroll-y": "true" }, [ vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("button", { onClick: $setup.resetForm, type: "info" }, "重置"), vue.createElementVNode("button", { onClick: $setup.confirmForm, type: "primary" }, "确认") ]) ]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ]); } const PagesWaybillDeliveryOrderWaybillDeliveryOrder = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["render", _sfc_render$b], ["__scopeId", "data-v-b53c540c"], ["__file", "E:/demo/hmrabbit/src/pages/waybillDeliveryOrder/waybillDeliveryOrder.vue"]]); const _sfc_main$b = /* @__PURE__ */ vue.defineComponent({ __name: "settings", setup(__props, { expose: __expose }) { __expose(); const memberStore = useMemberStore(); const onLogout = () => { uni.showModal({ content: "是否退出登录?", confirmColor: "#27BA9B", success: (res) => { if (res.confirm) { memberStore.clearProfile(); uni.navigateBack(); } } }); }; const __returned__ = { memberStore, onLogout }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$a(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 列表1 "), $setup.memberStore.profile ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "list" }, [ vue.createElementVNode("navigator", { url: "/pagesMember/address/address", "hover-class": "none", class: "item arrow" }, " 我的收货地址 ") ])) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 列表3 "), vue.createElementVNode("view", { class: "list" }, [ vue.createElementVNode("button", { "hover-class": "none", class: "item arrow" }, "关于英途仓库") ]), vue.createCommentVNode(" 操作按钮 "), $setup.memberStore.profile ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "action" }, [ vue.createElementVNode("view", { onClick: $setup.onLogout, class: "button" }, "退出登录") ])) : vue.createCommentVNode("v-if", true) ]); } const PagesMemberSettingsSettings = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["render", _sfc_render$a], ["__file", "E:/demo/hmrabbit/src/pagesMember/settings/settings.vue"]]); const getMemberProfileAPI = () => { return http({ method: "GET", url: "/member/profile" }); }; const putMemberProfileAPI = (data) => { return http({ method: "PUT", url: "/member/profile", data }); }; const _sfc_main$a = /* @__PURE__ */ vue.defineComponent({ __name: "profile", setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const profile = vue.ref({}); const getMemberProfileData = async () => { const res = await getMemberProfileAPI(); profile.value = res.result; memberStore.profile.avatar = res.result.avatar; memberStore.profile.nickname = res.result.nickname; }; onLoad(() => { getMemberProfileData(); }); const memberStore = useMemberStore(); const onAvatarChange = () => { uni.chooseImage({ count: 1, success: (res) => { const tempFilePaths = res.tempFilePaths; uploadFile(tempFilePaths[0]); } }); }; const uploadFile = (file) => { uni.uploadFile({ url: "/member/profile/avatar", name: "file", filePath: file, success: (res) => { if (res.statusCode === 200) { const avatar = JSON.parse(res.data).result.avatar; profile.value.avatar = avatar; memberStore.profile.avatar = avatar; uni.showToast({ icon: "success", title: "更新成功" }); } else { uni.showToast({ icon: "error", title: "出现错误" }); } } }); }; const onGenderChange = (ev) => { profile.value.gender = ev.detail.value; }; const onBirthdayChange = (ev) => { profile.value.birthday = ev.detail.value; }; let fullLocationCode = ["", "", ""]; const onFullLocationChange = (ev) => { profile.value.fullLocation = ev.detail.value.join(" "); fullLocationCode = ev.detail.code; }; const onSubmit = async () => { const { nickname, gender, birthday } = profile.value; const res = await putMemberProfileAPI({ nickname, gender, birthday, provinceCode: fullLocationCode[0], cityCode: fullLocationCode[1], countyCode: fullLocationCode[2] }); memberStore.profile.nickname = res.result.nickname; uni.showToast({ icon: "success", title: "保存成功" }); setTimeout(() => { uni.navigateBack(); }, 400); }; const __returned__ = { safeAreaInsets, profile, getMemberProfileData, memberStore, onAvatarChange, uploadFile, onGenderChange, onBirthdayChange, get fullLocationCode() { return fullLocationCode; }, set fullLocationCode(v2) { fullLocationCode = v2; }, onFullLocationChange, onSubmit, get formatDate() { return formatDate; } }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$9(_ctx, _cache, $props, $setup, $data, $options) { var _a, _b, _c, _d, _e2, _f, _g, _h, _i; return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 导航栏 "), vue.createElementVNode( "view", { class: "navbar", style: vue.normalizeStyle({ paddingTop: ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.top) + "px" }) }, [ vue.createElementVNode("navigator", { "open-type": "navigateBack", class: "back icon-left", "hover-class": "none" }), vue.createElementVNode("view", { class: "title" }, "个人信息") ], 4 /* STYLE */ ), vue.createCommentVNode(" 头像 "), vue.createElementVNode("view", { class: "avatar" }, [ vue.createElementVNode("view", { onClick: $setup.onAvatarChange, class: "avatar-content" }, [ vue.createElementVNode("image", { class: "image", src: (_b = $setup.profile) == null ? void 0 : _b.avatar, mode: "aspectFill" }, null, 8, ["src"]), vue.createElementVNode("text", { class: "text" }, "点击修改头像") ]) ]), vue.createCommentVNode(" 表单 "), vue.createElementVNode("view", { class: "form" }, [ vue.createCommentVNode(" 表单内容 "), vue.createElementVNode("view", { class: "form-content" }, [ vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("text", { class: "label" }, "账号"), vue.createElementVNode( "text", { class: "account placeholder" }, vue.toDisplayString((_c = $setup.profile) == null ? void 0 : _c.account), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("text", { class: "label" }, "昵称"), vue.withDirectives(vue.createElementVNode( "input", { class: "input", type: "text", placeholder: "请填写昵称", "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.profile.nickname = $event) }, null, 512 /* NEED_PATCH */ ), [ [vue.vModelText, $setup.profile.nickname] ]) ]), vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("text", { class: "label" }, "性别"), vue.createElementVNode( "radio-group", { onChange: $setup.onGenderChange }, [ vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "男", color: "#27ba9b", checked: ((_d = $setup.profile) == null ? void 0 : _d.gender) === "男" }, null, 8, ["checked"]), vue.createTextVNode(" 男 ") ]), vue.createElementVNode("label", { class: "radio" }, [ vue.createElementVNode("radio", { value: "女", color: "#27ba9b", checked: ((_e2 = $setup.profile) == null ? void 0 : _e2.gender) === "女" }, null, 8, ["checked"]), vue.createTextVNode(" 女 ") ]) ], 32 /* NEED_HYDRATION */ ) ]), vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("text", { class: "label" }, "生日"), vue.createElementVNode("picker", { onChange: $setup.onBirthdayChange, mode: "date", class: "picker", value: (_f = $setup.profile) == null ? void 0 : _f.birthday, start: "1900-01-01", end: $setup.formatDate(/* @__PURE__ */ new Date()) }, [ ((_g = $setup.profile) == null ? void 0 : _g.birthday) ? (vue.openBlock(), vue.createElementBlock( "view", { key: 0 }, vue.toDisplayString((_h = $setup.profile) == null ? void 0 : _h.birthday), 1 /* TEXT */ )) : (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "placeholder" }, "请选择日期")) ], 40, ["value", "end"]) ]), vue.createCommentVNode(" 只有微信小程序端内置了省市区数据 "), vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("text", { class: "label" }, "职业"), vue.createElementVNode("input", { class: "input", type: "text", placeholder: "请填写职业", value: (_i = $setup.profile) == null ? void 0 : _i.profession }, null, 8, ["value"]) ]) ]), vue.createCommentVNode(" 提交按钮 "), vue.createElementVNode("button", { onClick: $setup.onSubmit, class: "form-button" }, "保 存") ]) ]); } const PagesMemberProfileProfile = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["render", _sfc_render$9], ["__file", "E:/demo/hmrabbit/src/pagesMember/profile/profile.vue"]]); const postMemberAddressAPI = (data) => { return http({ method: "POST", url: "/member/address", data }); }; const getMemberAddressAPI = () => { return http({ method: "GET", url: "/member/address" }); }; const getMemberAddressByIdAPI = (id) => { return http({ method: "GET", url: `/member/address/${id}` }); }; const putMemberAddressByIdAPI = (id, data) => { return http({ method: "PUT", url: `/member/address/${id}`, data }); }; const deleteMemberAddressByIdAPI = (id) => { return http({ method: "DELETE", url: `/member/address/${id}` }); }; const useAddressStore = defineStore("address", () => { const selectedAddress = vue.ref(); const changeSelectedAddress = (val) => { selectedAddress.value = val; }; return { selectedAddress, changeSelectedAddress }; }); const _sfc_main$9 = /* @__PURE__ */ vue.defineComponent({ __name: "address", setup(__props, { expose: __expose }) { __expose(); const addressList = vue.ref([]); const getMemberAddressData = async () => { const res = await getMemberAddressAPI(); addressList.value = res.result; }; onShow(() => { getMemberAddressData(); }); const onDeleteAddress = (id) => { uni.showModal({ content: "删除地址?", confirmColor: "#27BA9B", success: async (res) => { if (res.confirm) { await deleteMemberAddressByIdAPI(id); getMemberAddressData(); } } }); }; const onChangeAddress = (item) => { const addressStore = useAddressStore(); addressStore.changeSelectedAddress(item); uni.navigateBack(); }; const __returned__ = { addressList, getMemberAddressData, onDeleteAddress, onChangeAddress }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$8(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_swipe_action_item = resolveEasycom(vue.resolveDynamicComponent("uni-swipe-action-item"), __easycom_0$a); const _component_uni_swipe_action = resolveEasycom(vue.resolveDynamicComponent("uni-swipe-action"), __easycom_1$2); return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" 地址列表 "), vue.createElementVNode("scroll-view", { "enable-back-to-top": "", class: "scroll-view", "scroll-y": "" }, [ $setup.addressList.length ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "address" }, [ vue.createVNode(_component_uni_swipe_action, { class: "address-list" }, { default: vue.withCtx(() => [ vue.createCommentVNode(" 收货地址项 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.addressList, (item) => { return vue.openBlock(), vue.createBlock( _component_uni_swipe_action_item, { class: "item", key: item.id }, { right: vue.withCtx(() => [ vue.createElementVNode("button", { onClick: ($event) => $setup.onDeleteAddress(item.id), class: "delete-button" }, "删除", 8, ["onClick"]) ]), default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "item-content", onClick: ($event) => $setup.onChangeAddress(item) }, [ vue.createElementVNode("view", { class: "user" }, [ vue.createTextVNode( vue.toDisplayString(item.receiver) + " ", 1 /* TEXT */ ), vue.createElementVNode( "text", { class: "contact" }, vue.toDisplayString(item.contact), 1 /* TEXT */ ), item.isDefault ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "badge" }, "默认")) : vue.createCommentVNode("v-if", true) ]), vue.createElementVNode( "view", { class: "locate" }, vue.toDisplayString(item.fullLocation) + " " + vue.toDisplayString(item.address), 1 /* TEXT */ ), vue.createCommentVNode(" H5 端需添加 .prevent 阻止链接的默认行为 "), vue.createElementVNode("navigator", { class: "edit", "hover-class": "none", url: `/pagesMember/address-form/address-form?id=${item.id}`, onClick: [ vue.withModifiers(() => { }, ["stop"]), vue.withModifiers(() => { }, ["prevent"]) ] }, " 修改 ", 8, ["url"]) ], 8, ["onClick"]) ]), _: 2 /* DYNAMIC */ }, 1024 /* DYNAMIC_SLOTS */ ); }), 128 /* KEYED_FRAGMENT */ )) ]), _: 1 /* STABLE */ }) ])) : (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "blank" }, "暂无收货地址")) ]), vue.createCommentVNode(" 添加按钮 "), vue.createElementVNode("view", { class: "add-btn" }, [ vue.createElementVNode("navigator", { "hover-class": "none", url: "/pagesMember/address-form/address-form" }, " 新建地址 ") ]) ]); } const PagesMemberAddressAddress = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["render", _sfc_render$8], ["__file", "E:/demo/hmrabbit/src/pagesMember/address/address.vue"]]); const _sfc_main$8 = /* @__PURE__ */ vue.defineComponent({ __name: "address-form", props: { id: { type: String, required: false } }, setup(__props, { expose: __expose }) { __expose(); const form = vue.ref({ receiver: "", // 收货人 contact: "", // 联系方式 fullLocation: "", // 省市区(前端展示) provinceCode: "", // 省份编码(后端参数) cityCode: "", // 城市编码(后端参数) countyCode: "", // 区/县编码(后端参数) address: "", // 详细地址 isDefault: 0 // 默认地址,1为是,0为否 }); const query = __props; const getMemberAddressByIdData = async () => { if (query.id) { const res = await getMemberAddressByIdAPI(query.id); Object.assign(form.value, res.result); } }; onLoad(() => { getMemberAddressByIdData(); }); uni.setNavigationBarTitle({ title: query.id ? "修改地址" : "新建地址" }); const onRegionChange = (ev) => { form.value.fullLocation = ev.detail.value.join(" "); const [provinceCode, cityCode, countyCode] = ev.detail.code; Object.assign(form.value, { provinceCode, cityCode, countyCode }); }; const onSwitchChange = (ev) => { form.value.isDefault = ev.detail.value ? 1 : 0; }; const rules = { receiver: { rules: [{ required: true, errorMessage: "请输入收货人姓名" }] }, contact: { rules: [ { required: true, errorMessage: "请输入联系方式" }, { pattern: /^1[3-9]\d{9}$/, errorMessage: "手机号格式不正确" } ] }, countyCode: { rules: [{ required: true, errorMessage: "请选择所在地区" }] }, address: { rules: [{ required: true, errorMessage: "请选择详细地址" }] } }; const formRef = vue.ref(); const onSubmit = async () => { var _a, _b; try { await ((_b = (_a = formRef.value) == null ? void 0 : _a.validate) == null ? void 0 : _b.call(_a)); if (query.id) { await putMemberAddressByIdAPI(query.id, form.value); } else { await postMemberAddressAPI(form.value); } uni.showToast({ icon: "success", title: query.id ? "修改成功" : "添加成功" }); setTimeout(() => { uni.navigateBack(); }, 400); } catch (error) { uni.showToast({ icon: "error", title: "请填写完整信息" }); } }; const onCityChange = (ev) => { const [province, city, county] = ev.detail.value; Object.assign(form.value, { provinceCode: province.value, cityCode: city.value, countyCode: county.value }); }; const __returned__ = { form, query, getMemberAddressByIdData, onRegionChange, onSwitchChange, rules, formRef, onSubmit, onCityChange }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$7(_ctx, _cache, $props, $setup, $data, $options) { const _component_uni_forms_item = resolveEasycom(vue.resolveDynamicComponent("uni-forms-item"), __easycom_0$4); const _component_uni_data_picker = resolveEasycom(vue.resolveDynamicComponent("uni-data-picker"), __easycom_1); const _component_uni_forms = resolveEasycom(vue.resolveDynamicComponent("uni-forms"), __easycom_2$1); return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createElementVNode("view", { class: "content" }, [ vue.createVNode(_component_uni_forms, { rules: $setup.rules, model: $setup.form, ref: "formRef" }, { default: vue.withCtx(() => [ vue.createCommentVNode(" 表单内容 "), vue.createVNode(_component_uni_forms_item, { name: "receiver", class: "form-item" }, { default: vue.withCtx(() => [ vue.createElementVNode("text", { class: "label" }, "收货人"), vue.withDirectives(vue.createElementVNode( "input", { class: "input", placeholder: "请填写收货人姓名", "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.form.receiver = $event) }, null, 512 /* NEED_PATCH */ ), [ [vue.vModelText, $setup.form.receiver] ]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { name: "contact", class: "form-item" }, { default: vue.withCtx(() => [ vue.createElementVNode("text", { class: "label" }, "手机号码"), vue.withDirectives(vue.createElementVNode( "input", { class: "input", placeholder: "请填写收货人手机号码", maxlength: 11, "onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => $setup.form.contact = $event) }, null, 512 /* NEED_PATCH */ ), [ [vue.vModelText, $setup.form.contact] ]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { name: "countyCode", class: "form-item" }, { default: vue.withCtx(() => [ vue.createElementVNode("text", { class: "label" }, "所在地区"), vue.createVNode(_component_uni_data_picker, { placeholder: "请选择地址", "popup-title": "请选择城市", collection: "opendb-city-china", field: "code as value, name as text", orderby: "value asc", "step-searh": true, "self-field": "code", "parent-field": "parent_code", onChange: $setup.onCityChange, "clear-icon": false, modelValue: $setup.form.countyCode, "onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => $setup.form.countyCode = $event) }, null, 8, ["modelValue"]) ]), _: 1 /* STABLE */ }), vue.createVNode(_component_uni_forms_item, { name: "address", class: "form-item" }, { default: vue.withCtx(() => [ vue.createElementVNode("text", { class: "label" }, "详细地址"), vue.withDirectives(vue.createElementVNode( "input", { class: "input", placeholder: "街道、楼牌号等信息", "onUpdate:modelValue": _cache[3] || (_cache[3] = ($event) => $setup.form.address = $event) }, null, 512 /* NEED_PATCH */ ), [ [vue.vModelText, $setup.form.address] ]) ]), _: 1 /* STABLE */ }), vue.createElementVNode("view", { class: "form-item" }, [ vue.createElementVNode("label", { class: "label" }, "设为默认地址"), vue.createElementVNode("switch", { onChange: $setup.onSwitchChange, class: "switch", color: "#27ba9b", checked: $setup.form.isDefault === 1 }, null, 40, ["checked"]) ]) ]), _: 1 /* STABLE */ }, 8, ["model"]) ]), vue.createCommentVNode(" 提交按钮 "), vue.createElementVNode("button", { onClick: $setup.onSubmit, class: "button" }, "保存并使用") ], 64 /* STABLE_FRAGMENT */ ); } const PagesMemberAddressFormAddressForm = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["render", _sfc_render$7], ["__file", "E:/demo/hmrabbit/src/pagesMember/address-form/address-form.vue"]]); const getMemberOrderPreAPI = () => { return http({ method: "GET", url: "/member/order/pre" }); }; const getMemberOrderPreNowAPI = (data) => { return http({ method: "GET", url: "/member/order/pre/now", data }); }; const getMemberOrderRepurchaseByIdAPI = (id) => { return http({ method: "GET", url: `/member/order/repurchase/${id}` }); }; const postMemberOrderAPI = (data) => { return http({ method: "POST", url: "/member/order", data }); }; const getMemberOrderByIdAPI = (id) => { return http({ method: "GET", url: `/member/order/${id}` }); }; const getMemberOrderConsignmentByIdAPI = (id) => { return http({ method: "GET", url: `/member/order/consignment/${id}` }); }; const putMemberOrderReceiptByIdAPI = (id) => { return http({ method: "PUT", url: `/member/order/${id}/receipt` }); }; const getMemberOrderLogisticsByIdAPI = (id) => { return http({ method: "GET", url: `/member/order/${id}/logistics` }); }; const deleteMemberOrderAPI = (data) => { return http({ method: "DELETE", url: `/member/order`, data }); }; const getMemberOrderCancelByIdAPI = (id, data) => { return http({ method: "PUT", url: `/member/order/${id}/cancel`, data }); }; const getMemberOrderAPI = (data) => { return http({ method: "GET", url: `/member/order`, data }); }; const _sfc_main$7 = /* @__PURE__ */ vue.defineComponent({ __name: "create", props: { skuId: { type: String, required: false }, count: { type: String, required: false }, orderId: { type: String, required: false } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const buyerMessage = vue.ref(""); const deliveryList = vue.ref([ { type: 1, text: "时间不限 (周一至周日)" }, { type: 2, text: "工作日送 (周一至周五)" }, { type: 3, text: "周末配送 (周六至周日)" } ]); const activeIndex = vue.ref(0); const activeDelivery = vue.computed(() => deliveryList.value[activeIndex.value]); const onChangeDelivery = (ev) => { activeIndex.value = ev.detail.value; }; const query = __props; const orderPre = vue.ref(); const getMemberOrderPreData = async () => { if (query.count && query.skuId) { const res = await getMemberOrderPreNowAPI({ count: query.count, skuId: query.skuId }); orderPre.value = res.result; } else if (query.orderId) { const res = await getMemberOrderRepurchaseByIdAPI(query.orderId); orderPre.value = res.result; } else { const res = await getMemberOrderPreAPI(); orderPre.value = res.result; } }; onLoad(() => { getMemberOrderPreData(); }); const addressStore = useAddressStore(); const selecteAddress = vue.computed(() => { var _a; return addressStore.selectedAddress || ((_a = orderPre.value) == null ? void 0 : _a.userAddresses.find((v2) => v2.isDefault)); }); const onOrderSubmit = async () => { var _a, _b; if (!((_a = selecteAddress.value) == null ? void 0 : _a.id)) { return uni.showToast({ icon: "none", title: "请选择收货地址" }); } const res = await postMemberOrderAPI({ addressId: (_b = selecteAddress.value) == null ? void 0 : _b.id, buyerMessage: buyerMessage.value, deliveryTimeType: activeDelivery.value.type, goods: orderPre.value.goods.map((v2) => ({ count: v2.count, skuId: v2.skuId })), payChannel: 2, payType: 1 }); uni.redirectTo({ url: `/pagesOrder/detail/detail?id=${res.result.id}` }); }; const __returned__ = { safeAreaInsets, buyerMessage, deliveryList, activeIndex, activeDelivery, onChangeDelivery, query, orderPre, getMemberOrderPreData, addressStore, selecteAddress, onOrderSubmit }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$6(_ctx, _cache, $props, $setup, $data, $options) { var _a, _b, _c, _d, _e2, _f; return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createElementVNode("scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "viewport" }, [ vue.createCommentVNode(" 收货地址 "), $setup.selecteAddress ? (vue.openBlock(), vue.createElementBlock("navigator", { key: 0, class: "shipment", "hover-class": "none", url: "/pagesMember/address/address?from=order" }, [ vue.createElementVNode( "view", { class: "user" }, vue.toDisplayString($setup.selecteAddress.receiver) + " " + vue.toDisplayString($setup.selecteAddress.contact), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "address" }, vue.toDisplayString($setup.selecteAddress.fullLocation) + " " + vue.toDisplayString($setup.selecteAddress.address), 1 /* TEXT */ ), vue.createElementVNode("text", { class: "icon icon-right" }) ])) : (vue.openBlock(), vue.createElementBlock("navigator", { key: 1, class: "shipment", "hover-class": "none", url: "/pagesMember/address/address?from=order" }, [ vue.createElementVNode("view", { class: "address" }, " 请选择收货地址 "), vue.createElementVNode("text", { class: "icon icon-right" }) ])), vue.createCommentVNode(" 商品信息 "), vue.createElementVNode("view", { class: "goods" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList((_a = $setup.orderPre) == null ? void 0 : _a.goods, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { key: item.skuId, url: `/pages/goods/goods?id=${item.id}`, class: "item", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "picture", src: item.picture }, null, 8, ["src"]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "attrs" }, vue.toDisplayString(item.attrsText), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "prices" }, [ vue.createElementVNode( "view", { class: "pay-price symbol" }, vue.toDisplayString(item.payPrice), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "price symbol" }, vue.toDisplayString(item.price), 1 /* TEXT */ ) ]), vue.createElementVNode( "view", { class: "count" }, "x" + vue.toDisplayString(item.count), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createCommentVNode(" 配送及支付方式 "), vue.createElementVNode("view", { class: "related" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("text", { class: "text" }, "配送时间"), vue.createElementVNode("picker", { range: $setup.deliveryList, "range-key": "text", onChange: $setup.onChangeDelivery }, [ vue.createElementVNode( "view", { class: "icon-fonts picker" }, vue.toDisplayString($setup.activeDelivery.text), 1 /* TEXT */ ) ], 40, ["range"]) ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("text", { class: "text" }, "订单备注"), vue.withDirectives(vue.createElementVNode( "input", { class: "input", "cursor-spacing": 30, placeholder: "选题,建议留言前先与商家沟通确认", "onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => $setup.buyerMessage = $event) }, null, 512 /* NEED_PATCH */ ), [ [vue.vModelText, $setup.buyerMessage] ]) ]) ]), vue.createCommentVNode(" 支付金额 "), vue.createElementVNode("view", { class: "settlement" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("text", { class: "text" }, "商品总价: "), vue.createElementVNode( "text", { class: "number symbol" }, vue.toDisplayString((_b = $setup.orderPre) == null ? void 0 : _b.summary.totalPrice.toFixed(2)), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("text", { class: "text" }, "运费: "), vue.createElementVNode( "text", { class: "number symbol" }, vue.toDisplayString((_c = $setup.orderPre) == null ? void 0 : _c.summary.postFee.toFixed(2)), 1 /* TEXT */ ) ]) ]) ]), vue.createCommentVNode(" 吸底工具栏 "), vue.createElementVNode( "view", { class: "toolbar", style: vue.normalizeStyle({ paddingBottom: ((_d = $setup.safeAreaInsets) == null ? void 0 : _d.bottom) + "px" }) }, [ vue.createElementVNode("view", { class: "total-pay symbol" }, [ vue.createElementVNode( "text", { class: "number" }, vue.toDisplayString((_e2 = $setup.orderPre) == null ? void 0 : _e2.summary.totalPayPrice.toFixed(2)), 1 /* TEXT */ ) ]), vue.createElementVNode( "view", { class: vue.normalizeClass(["button", { disabled: !((_f = $setup.selecteAddress) == null ? void 0 : _f.id) }]), onClick: $setup.onOrderSubmit }, " 提交订单 ", 2 /* CLASS */ ) ], 4 /* STYLE */ ) ], 64 /* STABLE_FRAGMENT */ ); } const PagesOrderCreateCreate = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["render", _sfc_render$6], ["__file", "E:/demo/hmrabbit/src/pagesOrder/create/create.vue"]]); const en = { "uni-countdown.day": "day", "uni-countdown.h": "h", "uni-countdown.m": "m", "uni-countdown.s": "s" }; const zhHans = { "uni-countdown.day": "天", "uni-countdown.h": "时", "uni-countdown.m": "分", "uni-countdown.s": "秒" }; const zhHant = { "uni-countdown.day": "天", "uni-countdown.h": "時", "uni-countdown.m": "分", "uni-countdown.s": "秒" }; const messages = { en, "zh-Hans": zhHans, "zh-Hant": zhHant }; const { t } = initVueI18n(messages); const _sfc_main$6 = { name: "UniCountdown", emits: ["timeup"], props: { showDay: { type: Boolean, default: true }, showColon: { type: Boolean, default: true }, start: { type: Boolean, default: true }, backgroundColor: { type: String, default: "" }, color: { type: String, default: "#333" }, fontSize: { type: Number, default: 14 }, splitorColor: { type: String, default: "#333" }, day: { type: Number, default: 0 }, hour: { type: Number, default: 0 }, minute: { type: Number, default: 0 }, second: { type: Number, default: 0 }, timestamp: { type: Number, default: 0 } }, data() { return { timer: null, syncFlag: false, d: "00", h: "00", i: "00", s: "00", leftTime: 0, seconds: 0 }; }, computed: { dayText() { return t("uni-countdown.day"); }, hourText(val) { return t("uni-countdown.h"); }, minuteText(val) { return t("uni-countdown.m"); }, secondText(val) { return t("uni-countdown.s"); }, timeStyle() { const { color, backgroundColor, fontSize } = this; return { color, backgroundColor, fontSize: `${fontSize}px`, width: `${fontSize * 22 / 14}px`, // 按字体大小为 14px 时的比例缩放 lineHeight: `${fontSize * 20 / 14}px`, borderRadius: `${fontSize * 3 / 14}px` }; }, splitorStyle() { const { splitorColor, fontSize, backgroundColor } = this; return { color: splitorColor, fontSize: `${fontSize * 12 / 14}px`, margin: backgroundColor ? `${fontSize * 4 / 14}px` : "" }; } }, watch: { day(val) { this.changeFlag(); }, hour(val) { this.changeFlag(); }, minute(val) { this.changeFlag(); }, second(val) { this.changeFlag(); }, start: { immediate: true, handler(newVal, oldVal) { if (newVal) { this.startData(); } else { if (!oldVal) return; clearInterval(this.timer); } } } }, created: function(e2) { this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second); this.countDown(); }, unmounted() { clearInterval(this.timer); }, methods: { toSeconds(timestamp, day, hours, minutes, seconds) { if (timestamp) { return timestamp - parseInt((/* @__PURE__ */ new Date()).getTime() / 1e3, 10); } return day * 60 * 60 * 24 + hours * 60 * 60 + minutes * 60 + seconds; }, timeUp() { clearInterval(this.timer); this.$emit("timeup"); }, countDown() { let seconds = this.seconds; let [day, hour, minute, second] = [0, 0, 0, 0]; if (seconds > 0) { day = Math.floor(seconds / (60 * 60 * 24)); hour = Math.floor(seconds / (60 * 60)) - day * 24; minute = Math.floor(seconds / 60) - day * 24 * 60 - hour * 60; second = Math.floor(seconds) - day * 24 * 60 * 60 - hour * 60 * 60 - minute * 60; } else { this.timeUp(); } if (day < 10) { day = "0" + day; } if (hour < 10) { hour = "0" + hour; } if (minute < 10) { minute = "0" + minute; } if (second < 10) { second = "0" + second; } this.d = day; this.h = hour; this.i = minute; this.s = second; }, startData() { this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second); if (this.seconds <= 0) { this.seconds = this.toSeconds(0, 0, 0, 0, 0); this.countDown(); return; } clearInterval(this.timer); this.countDown(); this.timer = setInterval(() => { this.seconds--; if (this.seconds < 0) { this.timeUp(); return; } this.countDown(); }, 1e3); }, update() { this.startData(); }, changeFlag() { if (!this.syncFlag) { this.seconds = this.toSeconds(this.timestamp, this.day, this.hour, this.minute, this.second); this.startData(); this.syncFlag = true; } } } }; function _sfc_render$5(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "uni-countdown" }, [ $props.showDay ? (vue.openBlock(), vue.createElementBlock( "text", { key: 0, style: vue.normalizeStyle([$options.timeStyle]), class: "uni-countdown__number" }, vue.toDisplayString($data.d), 5 /* TEXT, STYLE */ )) : vue.createCommentVNode("v-if", true), $props.showDay ? (vue.openBlock(), vue.createElementBlock( "text", { key: 1, style: vue.normalizeStyle([$options.splitorStyle]), class: "uni-countdown__splitor" }, vue.toDisplayString($options.dayText), 5 /* TEXT, STYLE */ )) : vue.createCommentVNode("v-if", true), vue.createElementVNode( "text", { style: vue.normalizeStyle([$options.timeStyle]), class: "uni-countdown__number" }, vue.toDisplayString($data.h), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "text", { style: vue.normalizeStyle([$options.splitorStyle]), class: "uni-countdown__splitor" }, vue.toDisplayString($props.showColon ? ":" : $options.hourText), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "text", { style: vue.normalizeStyle([$options.timeStyle]), class: "uni-countdown__number" }, vue.toDisplayString($data.i), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "text", { style: vue.normalizeStyle([$options.splitorStyle]), class: "uni-countdown__splitor" }, vue.toDisplayString($props.showColon ? ":" : $options.minuteText), 5 /* TEXT, STYLE */ ), vue.createElementVNode( "text", { style: vue.normalizeStyle([$options.timeStyle]), class: "uni-countdown__number" }, vue.toDisplayString($data.s), 5 /* TEXT, STYLE */ ), !$props.showColon ? (vue.openBlock(), vue.createElementBlock( "text", { key: 2, style: vue.normalizeStyle([$options.splitorStyle]), class: "uni-countdown__splitor" }, vue.toDisplayString($options.secondText), 5 /* TEXT, STYLE */ )) : vue.createCommentVNode("v-if", true) ]); } const __easycom_0 = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["render", _sfc_render$5], ["__scopeId", "data-v-342c352a"], ["__file", "E:/demo/hmrabbit/node_modules/@dcloudio/uni-ui/lib/uni-countdown/uni-countdown.vue"]]); var OrderState = /* @__PURE__ */ ((OrderState2) => { OrderState2[OrderState2["DaiFuKuan"] = 1] = "DaiFuKuan"; OrderState2[OrderState2["DaiFaHuo"] = 2] = "DaiFaHuo"; OrderState2[OrderState2["DaiShouHuo"] = 3] = "DaiShouHuo"; OrderState2[OrderState2["DaiPingJia"] = 4] = "DaiPingJia"; OrderState2[OrderState2["YiWanCheng"] = 5] = "YiWanCheng"; OrderState2[OrderState2["YiQuXiao"] = 6] = "YiQuXiao"; return OrderState2; })(OrderState || {}); const orderStateList = [ { id: 0, text: "" }, { id: 1, text: "待付款" }, { id: 2, text: "待发货" }, { id: 3, text: "待收货" }, { id: 4, text: "待评价" }, { id: 5, text: "已完成" }, { id: 6, text: "已取消" } ]; const _sfc_main$5 = {}; function _sfc_render$4(_ctx, _cache) { return vue.openBlock(), vue.createElementBlock("view", { class: "sk-container" }, [ vue.createElementVNode("scroll-view", { "scroll-y": true, class: "viewport sk-transparent", id: "scroller", "enable-back-to-top": true }, [ vue.createElementVNode("view", { class: "overview sk-image", style: { "padding-top": "64px" } }, [ vue.createElementVNode("view", { class: "status sk-transparent sk-text-0-0000-826 sk-text" }, "待收货") ]), vue.createElementVNode("view", { class: "shipment" }, [ vue.createElementVNode("navigator", { class: "logistics sk-image sk-pseudo sk-pseudo-circle", "hover-class": "none" }, [ vue.createElementVNode("view", { class: "message sk-transparent sk-text-14-2857-512 sk-text" }, "小兔兔到了小福家里,请签收"), vue.createElementVNode("view", { class: "date sk-transparent sk-text-14-2857-990 sk-text" }, "2023-04-15 23:23:04") ]), vue.createElementVNode("view", { class: "locate sk-image" }, [ vue.createElementVNode("view", { class: "user sk-transparent sk-text-14-2857-630 sk-text" }, "苏东坡 13633336666"), vue.createElementVNode("view", { class: "address sk-transparent sk-text-14-2857-606 sk-text" }, "广东省 广州市 天河区吉山幼儿园") ]) ]), vue.createElementVNode("view", { class: "goods" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createElementVNode("navigator", { class: "navigator", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "cover sk-image" }), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-474 sk-text" }, "厚厚一按就干爽,埃及进口长绒棉毛巾"), vue.createElementVNode("view", { class: "type sk-transparent sk-text-22-2222-237 sk-text" }, "超值4条装(灰蓝色+粉色+银灰+嫩黄)"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("view", { class: "actual" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "sk-transparent sk-text-14-2857-102 sk-text" }, "68") ]) ]), vue.createElementVNode("view", { class: "quantity sk-transparent sk-opacity" }, "x1") ]) ]), vue.createElementVNode("navigator", { class: "navigator", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "cover sk-image" }), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-969 sk-text" }, "KJE金属色系轻量电动车骑行盔男女通用"), vue.createElementVNode("view", { class: "type sk-transparent sk-text-22-2222-510 sk-text" }, "玫瑰金L"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("view", { class: "actual" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "sk-transparent sk-text-14-2857-431 sk-text" }, "120") ]) ]), vue.createElementVNode("view", { class: "quantity sk-transparent sk-opacity" }, "x1") ]) ]), vue.createElementVNode("navigator", { class: "navigator", "hover-class": "none" }, [ vue.createElementVNode("image", { class: "cover sk-image" }), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode("view", { class: "name ellipsis sk-transparent sk-text-14-2857-130 sk-text" }, "源自澳洲进口羊毛,儿童奢暖羊毛被升级款"), vue.createElementVNode("view", { class: "type sk-transparent sk-text-22-2222-110 sk-text" }, "春秋款, 100%羊毛款:150x200cm,适合1.2米/1.35米床"), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("view", { class: "actual" }, [ vue.createElementVNode("text", { class: "symbol sk-transparent sk-opacity" }, "¥"), vue.createElementVNode("text", { class: "sk-transparent sk-text-14-2857-273 sk-text" }, "289") ]) ]), vue.createElementVNode("view", { class: "quantity sk-transparent sk-opacity" }, "x1") ]) ]) ]), vue.createElementVNode("view", { class: "total" }, [ vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text sk-transparent sk-text-0-0000-302 sk-text" }, "商品总价: "), vue.createElementVNode("view", { class: "symbol sk-transparent sk-text-0-0000-998 sk-text sk-pseudo sk-pseudo-circle" }, "477") ]), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text sk-transparent sk-text-0-0000-912 sk-text" }, "运费: "), vue.createElementVNode("view", { class: "symbol sk-transparent sk-text-0-0000-208 sk-text sk-pseudo sk-pseudo-circle" }, "2") ]), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text sk-transparent sk-text-0-0000-538 sk-text" }, "应付金额: "), vue.createElementVNode("view", { class: "symbol primary sk-transparent sk-text-0-0000-858 sk-text sk-pseudo sk-pseudo-circle" }, "479") ]) ]) ]), vue.createElementVNode("view", { class: "detail" }, [ vue.createElementVNode("view", { class: "title sk-transparent sk-text-0-0000-66 sk-text" }, "订单信息"), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "item sk-transparent" }, [ vue.createTextVNode(" 订单编号: 1645809639951962113 "), vue.createElementVNode("text", { class: "copy sk-transparent sk-text-0-0000-522 sk-text" }, "复制") ]), vue.createElementVNode("view", { class: "item sk-transparent sk-text-0-0000-353 sk-text" }, "下单时间: 2023-04-11 23:22:50") ]) ]), vue.createElementVNode("view", { class: "toolbar", style: { "padding-bottom": "34px" } }, [ vue.createElementVNode("view", { class: "button primary sk-transparent sk-text-31-9444-411 sk-text", style: { "background-position-x": "50%" } }, "再次购买") ]) ]) ]); } const PageSkeleton = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["render", _sfc_render$4], ["__scopeId", "data-v-b1ebad5e"], ["__file", "E:/demo/hmrabbit/src/pagesOrder/detail/components/PageSkeleton.vue"]]); const getPayMockAPI = (data) => { return http({ method: "GET", url: "/pay/mock", data }); }; const _sfc_main$4 = /* @__PURE__ */ vue.defineComponent({ __name: "detail", props: { id: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const { guessRef, onScrolltolower } = useGuessList(); const popup2 = vue.ref(); const reasonList = vue.ref([ "商品无货", "不想要了", "商品信息填错了", "地址信息填写错误", "商品降价", "其它" ]); const reason = vue.ref(""); const onCopy = (id) => { uni.setClipboardData({ data: id }); }; const query = __props; const pages2 = getCurrentPages(); const order = vue.ref(); const getMemberOrderByIdData = async () => { const res = await getMemberOrderByIdAPI(query.id); order.value = res.result; if ([OrderState.DaiShouHuo, OrderState.DaiPingJia, OrderState.YiWanCheng].includes( order.value.orderState )) { getMemberOrderLogisticsByIdData(); } }; const logisticList = vue.ref([]); const getMemberOrderLogisticsByIdData = async () => { const res = await getMemberOrderLogisticsByIdAPI(query.id); logisticList.value = res.result.list; }; onLoad(() => { getMemberOrderByIdData(); }); const onTimeup = () => { order.value.orderState = OrderState.YiQuXiao; }; const onOrderPay = async () => { { await getPayMockAPI({ orderId: query.id }); } uni.redirectTo({ url: `/pagesOrder/payment/payment?id=${query.id}` }); }; const isDev = true; const onOrderSend = async () => { { await getMemberOrderConsignmentByIdAPI(query.id); uni.showToast({ icon: "success", title: "模拟发货完成" }); order.value.orderState = OrderState.DaiShouHuo; } }; const onOrderConfirm = () => { uni.showModal({ content: "为保障您的权益,请收到货并确认无误后,再确认收货", confirmColor: "#27BA9B", success: async (success) => { if (success.confirm) { const res = await putMemberOrderReceiptByIdAPI(query.id); order.value = res.result; } } }); }; const onOrderDelete = () => { uni.showModal({ content: "是否删除订单", confirmColor: "#27BA9B", success: async (success) => { if (success.confirm) { await deleteMemberOrderAPI({ ids: [query.id] }); uni.redirectTo({ url: "/pagesOrder/list/list" }); } } }); }; const onOrderCancel = async () => { var _a; const res = await getMemberOrderCancelByIdAPI(query.id, { cancelReason: reason.value }); order.value = res.result; (_a = popup2.value) == null ? void 0 : _a.close(); uni.showToast({ icon: "none", title: "订单取消成功" }); }; const __returned__ = { safeAreaInsets, guessRef, onScrolltolower, popup: popup2, reasonList, reason, onCopy, query, pages: pages2, order, getMemberOrderByIdData, logisticList, getMemberOrderLogisticsByIdData, onTimeup, onOrderPay, isDev, onOrderSend, onOrderConfirm, onOrderDelete, onOrderCancel, get OrderState() { return OrderState; }, get orderStateList() { return orderStateList; }, PageSkeleton }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$3(_ctx, _cache, $props, $setup, $data, $options) { var _a, _b, _c; const _component_uni_countdown = resolveEasycom(vue.resolveDynamicComponent("uni-countdown"), __easycom_0); const _component_XtxGuess = resolveEasycom(vue.resolveDynamicComponent("XtxGuess"), __easycom_0$9); const _component_uni_popup = resolveEasycom(vue.resolveDynamicComponent("uni-popup"), __easycom_2); return vue.openBlock(), vue.createElementBlock( vue.Fragment, null, [ vue.createCommentVNode(" 自定义导航栏: 默认透明不可见, scroll-view 滚动到 50 时展示 "), vue.createElementVNode( "view", { class: "navbar", style: vue.normalizeStyle({ paddingTop: ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.top) + "px" }) }, [ vue.createElementVNode("view", { class: "wrap" }, [ $setup.pages.length > 1 ? (vue.openBlock(), vue.createElementBlock("navigator", { key: 0, "open-type": "navigateBack", class: "back icon-left" })) : (vue.openBlock(), vue.createElementBlock("navigator", { key: 1, url: "/pages/index/index", "open-type": "switchTab", class: "back icon-home" })), vue.createElementVNode("view", { class: "title" }, "订单详情") ]) ], 4 /* STYLE */ ), vue.createElementVNode( "scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "viewport", id: "scroller", onScrolltolower: _cache[2] || (_cache[2] = (...args) => $setup.onScrolltolower && $setup.onScrolltolower(...args)) }, [ $setup.order ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 0 }, [ vue.createCommentVNode(" 订单状态 "), vue.createElementVNode( "view", { class: "overview", style: vue.normalizeStyle({ paddingTop: $setup.safeAreaInsets.top + 20 + "px" }) }, [ vue.createCommentVNode(" 待付款状态:展示倒计时 "), $setup.order.orderState === $setup.OrderState.DaiFuKuan ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 0 }, [ vue.createElementVNode("view", { class: "status icon-clock" }, "等待付款"), vue.createElementVNode("view", { class: "tips" }, [ vue.createElementVNode( "text", { class: "money" }, "应付金额: ¥ " + vue.toDisplayString($setup.order.payMoney), 1 /* TEXT */ ), vue.createElementVNode("text", { class: "time" }, "支付剩余"), vue.createVNode(_component_uni_countdown, { second: $setup.order.countdown, color: "#fff", "splitor-color": "#fff", "show-day": false, "show-colon": false, onTimeup: $setup.onTimeup }, null, 8, ["second"]) ]), vue.createElementVNode("view", { class: "button", onClick: $setup.onOrderPay }, "去支付") ], 64 /* STABLE_FRAGMENT */ )) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 其他订单状态:展示再次购买按钮 "), vue.createCommentVNode(" 订单状态文字 "), vue.createElementVNode( "view", { class: "status" }, vue.toDisplayString($setup.orderStateList[$setup.order.orderState].text), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "button-group" }, [ vue.createElementVNode("navigator", { class: "button", url: `/pagesOrder/create/create?orderId=${$setup.query.id}`, "hover-class": "none" }, " 再次购买 ", 8, ["url"]), vue.createCommentVNode(" 待发货状态:模拟发货,开发期间使用,用于修改订单状态为已发货 "), $setup.isDev && $setup.order.orderState == $setup.OrderState.DaiFaHuo ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, onClick: $setup.onOrderSend, class: "button" }, " 模拟发货 ")) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 待收货状态: 展示确认收货按钮 "), $setup.order.orderState === $setup.OrderState.DaiShouHuo ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, onClick: $setup.onOrderConfirm, class: "button" }, " 确认收货 ")) : vue.createCommentVNode("v-if", true) ]) ], 64 /* STABLE_FRAGMENT */ )) ], 4 /* STYLE */ ), vue.createCommentVNode(" 配送状态 "), vue.createElementVNode("view", { class: "shipment" }, [ vue.createCommentVNode(" 订单物流信息 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.logisticList, (item) => { return vue.openBlock(), vue.createElementBlock("view", { key: item.id, class: "item" }, [ vue.createElementVNode( "view", { class: "message" }, vue.toDisplayString(item.text), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "date" }, vue.toDisplayString(item.time), 1 /* TEXT */ ) ]); }), 128 /* KEYED_FRAGMENT */ )), vue.createCommentVNode(" 用户收货地址 "), vue.createElementVNode("view", { class: "locate" }, [ vue.createElementVNode( "view", { class: "user" }, vue.toDisplayString($setup.order.receiverContact) + " " + vue.toDisplayString($setup.order.receiverMobile), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "address" }, vue.toDisplayString($setup.order.receiverAddress), 1 /* TEXT */ ) ]) ]), vue.createCommentVNode(" 商品信息 "), vue.createElementVNode("view", { class: "goods" }, [ vue.createElementVNode("view", { class: "item" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.order.skus, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { class: "navigator", key: item.id, url: `/pages/goods/goods?id=${item.spuId}`, "hover-class": "none" }, [ vue.createElementVNode("image", { class: "cover", src: item.image }, null, 8, ["src"]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "type" }, vue.toDisplayString(item.attrsText), 1 /* TEXT */ ), vue.createElementVNode("view", { class: "price" }, [ vue.createElementVNode("view", { class: "actual" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createElementVNode( "text", null, vue.toDisplayString(item.curPrice), 1 /* TEXT */ ) ]) ]), vue.createElementVNode( "view", { class: "quantity" }, "x" + vue.toDisplayString(item.quantity), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )), vue.createCommentVNode(" 待评价状态:展示按钮 "), $setup.order.orderState === $setup.OrderState.DaiPingJia ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "action" }, [ vue.createElementVNode("view", { class: "button primary" }, "申请售后"), vue.createElementVNode("navigator", { url: "", class: "button" }, " 去评价 ") ])) : vue.createCommentVNode("v-if", true) ]), vue.createCommentVNode(" 合计 "), vue.createElementVNode("view", { class: "total" }, [ vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text" }, "商品总价: "), vue.createElementVNode( "view", { class: "symbol" }, vue.toDisplayString($setup.order.totalMoney), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text" }, "运费: "), vue.createElementVNode( "view", { class: "symbol" }, vue.toDisplayString($setup.order.postFee), 1 /* TEXT */ ) ]), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "text" }, "应付金额: "), vue.createElementVNode( "view", { class: "symbol primary" }, vue.toDisplayString($setup.order.payMoney), 1 /* TEXT */ ) ]) ]) ]), vue.createCommentVNode(" 订单信息 "), vue.createElementVNode("view", { class: "detail" }, [ vue.createElementVNode("view", { class: "title" }, "订单信息"), vue.createElementVNode("view", { class: "row" }, [ vue.createElementVNode("view", { class: "item" }, [ vue.createTextVNode( " 订单编号: " + vue.toDisplayString($setup.query.id) + " ", 1 /* TEXT */ ), vue.createElementVNode("text", { class: "copy", onClick: _cache[0] || (_cache[0] = ($event) => $setup.onCopy($setup.query.id)) }, "复制") ]), vue.createElementVNode( "view", { class: "item" }, "下单时间: " + vue.toDisplayString($setup.order.createTime), 1 /* TEXT */ ) ]) ]), vue.createCommentVNode(" 猜你喜欢 "), vue.createVNode( _component_XtxGuess, { ref: "guessRef" }, null, 512 /* NEED_PATCH */ ), vue.createCommentVNode(" 底部操作栏 "), vue.createElementVNode( "view", { class: "toolbar-height", style: vue.normalizeStyle({ paddingBottom: ((_b = $setup.safeAreaInsets) == null ? void 0 : _b.bottom) + "px" }) }, null, 4 /* STYLE */ ), vue.createElementVNode( "view", { class: "toolbar", style: vue.normalizeStyle({ paddingBottom: ((_c = $setup.safeAreaInsets) == null ? void 0 : _c.bottom) + "px" }) }, [ vue.createCommentVNode(" 待付款状态:展示支付按钮 "), $setup.order.orderState === $setup.OrderState.DaiFuKuan ? (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 0 }, [ vue.createElementVNode("view", { class: "button primary", onClick: $setup.onOrderPay }, " 去支付 "), vue.createElementVNode("view", { class: "button", onClick: _cache[1] || (_cache[1] = ($event) => { var _a2, _b2; return (_b2 = (_a2 = $setup.popup) == null ? void 0 : _a2.open) == null ? void 0 : _b2.call(_a2); }) }, " 取消订单 ") ], 64 /* STABLE_FRAGMENT */ )) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 其他订单状态:按需展示按钮 "), vue.createElementVNode("navigator", { class: "button secondary", url: `/pagesOrder/create/create?orderId=${$setup.query.id}`, "hover-class": "none" }, " 再次购买 ", 8, ["url"]), vue.createCommentVNode(" 待收货状态: 展示确认收货 "), $setup.order.orderState === $setup.OrderState.DaiShouHuo ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "button primary", onClick: $setup.onOrderConfirm }, " 确认收货 ")) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 待评价状态: 展示去评价 "), $setup.order.orderState === $setup.OrderState.DaiPingJia ? (vue.openBlock(), vue.createElementBlock("view", { key: 1, class: "button" }, " 去评价 ")) : vue.createCommentVNode("v-if", true), vue.createCommentVNode(" 待评价/已完成/已取消 状态: 展示删除订单 "), $setup.order.orderState >= $setup.OrderState.DaiPingJia ? (vue.openBlock(), vue.createElementBlock("view", { key: 2, class: "button delete", onClick: $setup.onOrderDelete }, " 删除订单 ")) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ )) ], 4 /* STYLE */ ) ], 64 /* STABLE_FRAGMENT */ )) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createCommentVNode(" 骨架屏组件 "), vue.createVNode($setup["PageSkeleton"]) ], 64 /* STABLE_FRAGMENT */ )) ], 32 /* NEED_HYDRATION */ ), vue.createCommentVNode(" 取消订单弹窗 "), vue.createVNode( _component_uni_popup, { ref: "popup", type: "bottom", "background-color": "#fff" }, { default: vue.withCtx(() => [ vue.createElementVNode("view", { class: "popup-root" }, [ vue.createElementVNode("view", { class: "title" }, "订单取消"), vue.createElementVNode("view", { class: "description" }, [ vue.createElementVNode("view", { class: "tips" }, "请选择取消订单的原因:"), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.reasonList, (item) => { return vue.openBlock(), vue.createElementBlock("view", { class: "cell", key: item, onClick: ($event) => $setup.reason = item }, [ vue.createElementVNode( "text", { class: "text" }, vue.toDisplayString(item), 1 /* TEXT */ ), vue.createElementVNode( "text", { class: vue.normalizeClass(["icon", { checked: item === $setup.reason }]) }, null, 2 /* CLASS */ ) ], 8, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )) ]), vue.createElementVNode("view", { class: "footer" }, [ vue.createElementVNode("view", { class: "button", onClick: _cache[3] || (_cache[3] = ($event) => { var _a2, _b2; return (_b2 = (_a2 = $setup.popup) == null ? void 0 : _a2.close) == null ? void 0 : _b2.call(_a2); }) }, "取消"), vue.createElementVNode("view", { class: "button primary", onClick: $setup.onOrderCancel }, "确认") ]) ]) ]), _: 1 /* STABLE */ }, 512 /* NEED_PATCH */ ) ], 64 /* STABLE_FRAGMENT */ ); } const PagesOrderDetailDetail = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["render", _sfc_render$3], ["__file", "E:/demo/hmrabbit/src/pagesOrder/detail/detail.vue"]]); const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({ __name: "payment", props: { id: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const query = __props; const { guessRef, onScrolltolower } = useGuessList(); const __returned__ = { query, guessRef, onScrolltolower }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$2(_ctx, _cache, $props, $setup, $data, $options) { const _component_XtxGuess = resolveEasycom(vue.resolveDynamicComponent("XtxGuess"), __easycom_0$9); return vue.openBlock(), vue.createElementBlock( "scroll-view", { "enable-back-to-top": "", class: "viewport", "scroll-y": "", onScrolltolower: _cache[0] || (_cache[0] = (...args) => $setup.onScrolltolower && $setup.onScrolltolower(...args)) }, [ vue.createCommentVNode(" 订单状态 "), vue.createElementVNode("view", { class: "overview" }, [ vue.createElementVNode("view", { class: "status icon-checked" }, "支付成功"), vue.createElementVNode("view", { class: "buttons" }, [ vue.createElementVNode("navigator", { "hover-class": "none", class: "button navigator", url: "/pages/index/index", "open-type": "switchTab" }, " 返回首页 "), vue.createElementVNode("navigator", { "hover-class": "none", class: "button navigator", url: `/pagesOrder/detail/detail?id=${$setup.query.id}`, "open-type": "redirect" }, " 查看订单 ", 8, ["url"]) ]) ]), vue.createCommentVNode(" 猜你喜欢 "), vue.createVNode( _component_XtxGuess, { ref: "guessRef" }, null, 512 /* NEED_PATCH */ ) ], 32 /* NEED_HYDRATION */ ); } const PagesOrderPaymentPayment = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["render", _sfc_render$2], ["__file", "E:/demo/hmrabbit/src/pagesOrder/payment/payment.vue"]]); const _sfc_main$2 = /* @__PURE__ */ vue.defineComponent({ __name: "OrderList", props: { orderState: { type: Number, required: true } }, setup(__props, { expose: __expose }) { __expose(); const { safeAreaInsets } = uni.getSystemInfoSync(); const props = __props; const queryParams = { page: 1, pageSize: 5, orderState: props.orderState }; const orderList = vue.ref([]); const isLoading = vue.ref(false); const getMemberOrderData = async () => { if (isLoading.value) return; if (isFinish.value === true) { return uni.showToast({ icon: "none", title: "没有更多数据~" }); } isLoading.value = true; const res = await getMemberOrderAPI(queryParams); isLoading.value = false; orderList.value.push(...res.result.items); if (queryParams.page < res.result.pages) { queryParams.page++; } else { isFinish.value = true; } }; vue.onMounted(() => { getMemberOrderData(); }); const onOrderPay = async (id) => { { await getPayMockAPI({ orderId: id }); } uni.showToast({ title: "支付成功" }); const order = orderList.value.find((v2) => v2.id === id); order.orderState = OrderState.DaiFaHuo; }; const onOrderConfirm = (id) => { uni.showModal({ content: "为保障您的权益,请收到货并确认无误后,再确认收货", confirmColor: "#27BA9B", success: async (res) => { if (res.confirm) { await putMemberOrderReceiptByIdAPI(id); uni.showToast({ icon: "success", title: "确认收货成功" }); const order = orderList.value.find((v2) => v2.id === id); order.orderState = OrderState.DaiPingJia; } } }); }; const onOrderDelete = (id) => { uni.showModal({ content: "你确定要删除该订单?", confirmColor: "#27BA9B", success: async (res) => { if (res.confirm) { await deleteMemberOrderAPI({ ids: [id] }); const index = orderList.value.findIndex((v2) => v2.id === id); orderList.value.splice(index, 1); } } }); }; const isFinish = vue.ref(false); const isTriggered = vue.ref(false); const onRefresherrefresh = async () => { isTriggered.value = true; queryParams.page = 1; orderList.value = []; isFinish.value = false; await getMemberOrderData(); isTriggered.value = false; }; const __returned__ = { safeAreaInsets, props, queryParams, orderList, isLoading, getMemberOrderData, onOrderPay, onOrderConfirm, onOrderDelete, isFinish, isTriggered, onRefresherrefresh, get OrderState() { return OrderState; }, get orderStateList() { return orderStateList; } }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render$1(_ctx, _cache, $props, $setup, $data, $options) { var _a; return vue.openBlock(), vue.createElementBlock("scroll-view", { "enable-back-to-top": "", "scroll-y": "", class: "orders", "refresher-enabled": "", "refresher-triggered": $setup.isTriggered, onRefresherrefresh: $setup.onRefresherrefresh, onScrolltolower: $setup.getMemberOrderData }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.orderList, (order) => { return vue.openBlock(), vue.createElementBlock("view", { class: "card", key: order.id }, [ vue.createCommentVNode(" 订单信息 "), vue.createElementVNode("view", { class: "status" }, [ vue.createElementVNode( "text", { class: "date" }, vue.toDisplayString(order.createTime), 1 /* TEXT */ ), vue.createCommentVNode(" 订单状态文字 "), vue.createElementVNode( "text", null, vue.toDisplayString($setup.orderStateList[order.orderState].text), 1 /* TEXT */ ), vue.createCommentVNode(" 待评价/已完成/已取消 状态: 展示删除订单 "), order.orderState >= $setup.OrderState.DaiPingJia ? (vue.openBlock(), vue.createElementBlock("text", { key: 0, class: "icon-delete", onClick: ($event) => $setup.onOrderDelete(order.id) }, null, 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ]), vue.createCommentVNode(" 商品信息,点击商品跳转到订单详情,不是商品详情 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList(order.skus, (item) => { return vue.openBlock(), vue.createElementBlock("navigator", { key: item.id, class: "goods", url: `/pagesOrder/detail/detail?id=${order.id}`, "hover-class": "none" }, [ vue.createElementVNode("view", { class: "cover" }, [ vue.createElementVNode("image", { class: "image", mode: "aspectFit", src: item.image }, null, 8, ["src"]) ]), vue.createElementVNode("view", { class: "meta" }, [ vue.createElementVNode( "view", { class: "name ellipsis" }, vue.toDisplayString(item.name), 1 /* TEXT */ ), vue.createElementVNode( "view", { class: "type" }, vue.toDisplayString(item.attrsText), 1 /* TEXT */ ) ]) ], 8, ["url"]); }), 128 /* KEYED_FRAGMENT */ )), vue.createCommentVNode(" 支付信息 "), vue.createElementVNode("view", { class: "payment" }, [ vue.createElementVNode( "text", { class: "quantity" }, "共" + vue.toDisplayString(order.totalNum) + "件商品", 1 /* TEXT */ ), vue.createElementVNode("text", null, "实付"), vue.createElementVNode("text", { class: "amount" }, [ vue.createElementVNode("text", { class: "symbol" }, "¥"), vue.createTextVNode( vue.toDisplayString(order.payMoney), 1 /* TEXT */ ) ]) ]), vue.createCommentVNode(" 订单操作按钮 "), vue.createElementVNode("view", { class: "action" }, [ vue.createCommentVNode(" 待付款状态:显示去支付按钮 "), order.orderState === $setup.OrderState.DaiFuKuan ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "button primary", onClick: ($event) => $setup.onOrderPay(order.id) }, "去支付", 8, ["onClick"])) : (vue.openBlock(), vue.createElementBlock( vue.Fragment, { key: 1 }, [ vue.createElementVNode("navigator", { class: "button secondary", url: `/pagesOrder/create/create?orderId=${order.id}`, "hover-class": "none" }, " 再次购买 ", 8, ["url"]), vue.createCommentVNode(" 待收货状态: 展示确认收货 "), order.orderState === $setup.OrderState.DaiShouHuo ? (vue.openBlock(), vue.createElementBlock("view", { key: 0, class: "button primary", onClick: ($event) => $setup.onOrderConfirm(order.id) }, " 确认收货 ", 8, ["onClick"])) : vue.createCommentVNode("v-if", true) ], 64 /* STABLE_FRAGMENT */ )) ]) ]); }), 128 /* KEYED_FRAGMENT */ )), vue.createCommentVNode(" 底部提示文字 "), vue.createElementVNode( "view", { class: "loading-text", style: vue.normalizeStyle({ paddingBottom: ((_a = $setup.safeAreaInsets) == null ? void 0 : _a.bottom) + "px" }) }, vue.toDisplayString($setup.isFinish ? "没有更多数据~" : "正在加载..."), 5 /* TEXT, STYLE */ ) ], 40, ["refresher-triggered"]); } const OrderList = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["render", _sfc_render$1], ["__scopeId", "data-v-52fbdc30"], ["__file", "E:/demo/hmrabbit/src/pagesOrder/list/components/OrderList.vue"]]); const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({ __name: "list", props: { type: { type: String, required: true } }, setup(__props, { expose: __expose }) { __expose(); const query = __props; const orderTabs = vue.ref([ { orderState: 0, title: "全部", isRender: false }, { orderState: 1, title: "待付款", isRender: false }, { orderState: 2, title: "待发货", isRender: false }, { orderState: 3, title: "待收货", isRender: false }, { orderState: 4, title: "待评价", isRender: false } ]); const activeIndex = vue.ref(orderTabs.value.findIndex((v2) => v2.orderState === Number(query.type))); orderTabs.value[activeIndex.value].isRender = true; const __returned__ = { query, orderTabs, activeIndex, OrderList }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); function _sfc_render(_ctx, _cache, $props, $setup, $data, $options) { return vue.openBlock(), vue.createElementBlock("view", { class: "viewport" }, [ vue.createCommentVNode(" tabs "), vue.createElementVNode("view", { class: "tabs" }, [ (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.orderTabs, (item, index) => { return vue.openBlock(), vue.createElementBlock("text", { class: "item", key: item.title, onClick: () => { $setup.activeIndex = index; item.isRender = true; } }, vue.toDisplayString(item.title), 9, ["onClick"]); }), 128 /* KEYED_FRAGMENT */ )), vue.createCommentVNode(" 游标 "), vue.createElementVNode( "view", { class: "cursor", style: vue.normalizeStyle({ left: $setup.activeIndex * 20 + "%" }) }, null, 4 /* STYLE */ ) ]), vue.createCommentVNode(" 滑动容器 "), vue.createElementVNode("swiper", { class: "swiper", current: $setup.activeIndex, onChange: _cache[0] || (_cache[0] = ($event) => $setup.activeIndex = $event.detail.current) }, [ vue.createCommentVNode(" 滑动项 "), (vue.openBlock(true), vue.createElementBlock( vue.Fragment, null, vue.renderList($setup.orderTabs, (item) => { return vue.openBlock(), vue.createElementBlock("swiper-item", { key: item.title }, [ vue.createCommentVNode(" 订单列表 "), item.isRender ? (vue.openBlock(), vue.createBlock($setup["OrderList"], { key: 0, "order-state": item.orderState }, null, 8, ["order-state"])) : vue.createCommentVNode("v-if", true) ]); }), 128 /* KEYED_FRAGMENT */ )) ], 40, ["current"]) ]); } const PagesOrderListList = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["render", _sfc_render], ["__file", "E:/demo/hmrabbit/src/pagesOrder/list/list.vue"]]); __definePage("pages/index/index", PagesIndexIndex); __definePage("pages/category/category", PagesCategoryCategory); __definePage("pages/cart/cart", PagesCartCart); __definePage("pages/cart/cart2", PagesCartCart2); __definePage("pages/my/my", PagesMyMy); __definePage("pages/login/login", PagesLoginLogin); __definePage("pages/hot/hot", PagesHotHot); __definePage("pages/goods/goods", PagesGoodsGoods); __definePage("pages/inbound/inbound", PagesInboundInbound); __definePage("pages/inbound/logList", PagesInboundLogList); __definePage("pages/weigh/weigh", PagesWeighWeigh); __definePage("pages/weigh/logList", PagesWeighLogList); __definePage("pages/outbound/outbound", PagesOutboundOutbound); __definePage("pages/outbound/logList", PagesOutboundLogList); __definePage("pages/warehouseScan/warehouseScan", PagesWarehouseScanWarehouseScan); __definePage("pages/warehouseScan/logList", PagesWarehouseScanLogList); __definePage("pages/printer/printer", PagesPrinterPrinter); __definePage("pages/printer/logList", PagesPrinterLogList); __definePage("pages/scanLotno/scanLotno", PagesScanLotnoScanLotno); __definePage("pages/scanLotno/logList", PagesScanLotnoLogList); __definePage("pages/scanLotno/waybillsList", PagesScanLotnoWaybillsList); __definePage("pages/waybillNo/waybillNo", PagesWaybillNoWaybillNo); __definePage("pages/waybillNo/logList", PagesWaybillNoLogList); __definePage("pages/pickup/waybillPickUpOrder", PagesPickupWaybillPickUpOrder); __definePage("pages/pickup/waybillPickUpDetails", PagesPickupWaybillPickUpDetails); __definePage("pages/pickup/waybillPickUpDetail", PagesPickupWaybillPickUpDetail); __definePage("pages/waybillDeliveryOrder/waybillDeliveryOrder", PagesWaybillDeliveryOrderWaybillDeliveryOrder); __definePage("pagesMember/settings/settings", PagesMemberSettingsSettings); __definePage("pagesMember/profile/profile", PagesMemberProfileProfile); __definePage("pagesMember/address/address", PagesMemberAddressAddress); __definePage("pagesMember/address-form/address-form", PagesMemberAddressFormAddressForm); __definePage("pagesOrder/create/create", PagesOrderCreateCreate); __definePage("pagesOrder/detail/detail", PagesOrderDetailDetail); __definePage("pagesOrder/payment/payment", PagesOrderPaymentPayment); __definePage("pagesOrder/list/list", PagesOrderListList); const _sfc_main = /* @__PURE__ */ vue.defineComponent({ __name: "App", setup(__props, { expose: __expose }) { __expose(); onLaunch(() => { formatAppLog("log", "at App.vue:5", "App Launch"); }); onShow(() => { formatAppLog("log", "at App.vue:8", "App Show"); }); onHide(() => { formatAppLog("log", "at App.vue:11", "App Hide"); }); const __returned__ = { get onLaunch() { return onLaunch; }, get onShow() { return onShow; }, get onHide() { return onHide; } }; Object.defineProperty(__returned__, "__isScriptSetup", { enumerable: false, value: true }); return __returned__; } }); const App = /* @__PURE__ */ _export_sfc(_sfc_main, [["__file", "E:/demo/hmrabbit/src/App.vue"]]); function createApp() { const app = vue.createVueApp(App); app.use(pinia); return { app }; } const { app: __app__, Vuex: __Vuex__, Pinia: __Pinia__ } = createApp(); uni.Vuex = __Vuex__; uni.Pinia = __Pinia__; __app__.provide("__globalStyles", __uniConfig.styles); __app__._component.mpType = "app"; __app__._component.render = () => { }; __app__.mount("#app"); })(Vue);