From bd54c8057fdfdc27fe4b33725a05f3d1f03fe7c9 Mon Sep 17 00:00:00 2001 From: zhaoyf <1783123481@qq.com> Date: Fri, 12 Jun 2026 13:24:00 +0800 Subject: [PATCH] =?UTF-8?q?add:=E6=89=8B=E6=8C=81pda=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pda/pda/.gitignore | 39 + pda/pda/README.md | 38 + pda/pda/index.html | 13 + pda/pda/jsconfig.json | 8 + pda/pda/package-lock.json | 2499 +++++++++++++++++++++++ pda/pda/package.json | 28 + pda/pda/public/favicon.ico | Bin 0 -> 4286 bytes pda/pda/src/App.vue | 12 + pda/pda/src/assets/main.css | 122 ++ pda/pda/src/components/BottomButton.vue | 23 + pda/pda/src/components/ScanField.vue | 28 + pda/pda/src/i18n/index.js | 307 +++ pda/pda/src/main.js | 15 + pda/pda/src/router/index.js | 80 + pda/pda/src/utils/request.js | 40 + pda/pda/src/views/AgvInbound.vue | 107 + pda/pda/src/views/BindUnbind.vue | 23 + pda/pda/src/views/Developing.vue | 42 + pda/pda/src/views/Home.vue | 129 ++ pda/pda/src/views/InventoryQuery.vue | 96 + pda/pda/src/views/Login.vue | 136 ++ pda/pda/src/views/ManualInbound.vue | 88 + pda/pda/src/views/Putaway.vue | 288 +++ pda/pda/src/views/ReceiveGroup.vue | 297 +++ pda/pda/vite.config.js | 30 + 25 files changed, 4488 insertions(+) create mode 100644 pda/pda/.gitignore create mode 100644 pda/pda/README.md create mode 100644 pda/pda/index.html create mode 100644 pda/pda/jsconfig.json create mode 100644 pda/pda/package-lock.json create mode 100644 pda/pda/package.json create mode 100644 pda/pda/public/favicon.ico create mode 100644 pda/pda/src/App.vue create mode 100644 pda/pda/src/assets/main.css create mode 100644 pda/pda/src/components/BottomButton.vue create mode 100644 pda/pda/src/components/ScanField.vue create mode 100644 pda/pda/src/i18n/index.js create mode 100644 pda/pda/src/main.js create mode 100644 pda/pda/src/router/index.js create mode 100644 pda/pda/src/utils/request.js create mode 100644 pda/pda/src/views/AgvInbound.vue create mode 100644 pda/pda/src/views/BindUnbind.vue create mode 100644 pda/pda/src/views/Developing.vue create mode 100644 pda/pda/src/views/Home.vue create mode 100644 pda/pda/src/views/InventoryQuery.vue create mode 100644 pda/pda/src/views/Login.vue create mode 100644 pda/pda/src/views/ManualInbound.vue create mode 100644 pda/pda/src/views/Putaway.vue create mode 100644 pda/pda/src/views/ReceiveGroup.vue create mode 100644 pda/pda/vite.config.js diff --git a/pda/pda/.gitignore b/pda/pda/.gitignore new file mode 100644 index 0000000..cd68f14 --- /dev/null +++ b/pda/pda/.gitignore @@ -0,0 +1,39 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +.DS_Store +dist +dist-ssr +coverage +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +*.tsbuildinfo + +.eslintcache + +# Cypress +/cypress/videos/ +/cypress/screenshots/ + +# Vitest +__screenshots__/ + +# Vite +*.timestamp-*-*.mjs diff --git a/pda/pda/README.md b/pda/pda/README.md new file mode 100644 index 0000000..98538ac --- /dev/null +++ b/pda/pda/README.md @@ -0,0 +1,38 @@ +# pda + +This template should help get you started developing with Vue 3 in Vite. + +## Recommended IDE Setup + +[VS Code](https://code.visualstudio.com/) + [Vue (Official)](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur). + +## Recommended Browser Setup + +- Chromium-based browsers (Chrome, Edge, Brave, etc.): + - [Vue.js devtools](https://chromewebstore.google.com/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd) + - [Turn on Custom Object Formatter in Chrome DevTools](http://bit.ly/object-formatters) +- Firefox: + - [Vue.js devtools](https://addons.mozilla.org/en-US/firefox/addon/vue-js-devtools/) + - [Turn on Custom Object Formatter in Firefox DevTools](https://fxdx.dev/firefox-devtools-custom-object-formatters/) + +## Customize configuration + +See [Vite Configuration Reference](https://vite.dev/config/). + +## Project Setup + +```sh +bun install +``` + +### Compile and Hot-Reload for Development + +```sh +bun dev +``` + +### Compile and Minify for Production + +```sh +bun run build +``` diff --git a/pda/pda/index.html b/pda/pda/index.html new file mode 100644 index 0000000..e3514d7 --- /dev/null +++ b/pda/pda/index.html @@ -0,0 +1,13 @@ + + +
+ + + +| {{ t('inventory.columns.container') }} | +{{ t('inventory.columns.location') }} | +{{ t('inventory.columns.material') }} | +{{ t('inventory.columns.qty') }} | +
|---|---|---|---|
| {{ item.container }} | +{{ item.location }} | +{{ item.material }} | +{{ item.qty }} | +