编写登录页面,首页面,入库页面,样式修改,扫码功能实现

This commit is contained in:
赵正易
2024-03-12 17:41:00 +08:00
parent 504e33d447
commit b58b954436
28 changed files with 616 additions and 2025 deletions

View File

@@ -3,6 +3,10 @@ import App from './App'
import store from './store' // store
import plugins from './plugins' // plugins
import './permission' // permission
// 组件加载
// PDA扫描获取仓库信息组件
import PdaScanInput from '@/components/pda-scan-input/index.vue';
Vue.component('PdaScanInput',PdaScanInput)
Vue.use(plugins)
Vue.config.productionTip = false
@@ -11,7 +15,7 @@ Vue.prototype.$store = store
App.mpType = 'app'
const app = new Vue({
...App
...App
})
app.$mount()
app.$mount()