no message

main
LX 2024-03-15 15:54:57 +08:00
parent 4f618d60d1
commit e80d2fd9fb
5 changed files with 436 additions and 104 deletions

File diff suppressed because it is too large Load Diff

View File

@ -8,9 +8,15 @@
"lint": "vue-cli-service lint"
},
"dependencies": {
"axios": "^1.6.7",
"core-js": "^3.8.3",
"element-ui": "^2.15.13",
"file-saver": "^2.0.5",
"less-loader": "^12.2.0",
"vue": "^2.7.14",
"element-ui": "^2.15.13"
"vue-router": "^3.0.2",
"vuex": "^3.1.0",
"xlsx": "^0.18.5"
},
"devDependencies": {
"@babel/core": "^7.12.16",
@ -34,8 +40,7 @@
"parserOptions": {
"parser": "@babel/eslint-parser"
},
"rules": {
}
"rules": {}
},
"browserslist": [
"> 1%",

View File

@ -4,17 +4,8 @@
<i :class="icon" style="font-size: 20px;cursor: pointer" @click="collapse"></i>
</div>
<div style="flex:1px;text-align: center;font-size: 34px;">
<span>友仓WMS管理平台</span>
<span>多查询管理平台</span>
</div>
<el-dropdown>
<span>{{ user.userName }}</span>
<i class="el-icon-arrow-down" style="margin-left: 5px;"></i>
<el-dropdown-menu slot="dropdown">
<el-dropdown-item @click.native="toUser">个人中心</el-dropdown-item>
<el-dropdown-item @click.native="logOut">退出登录</el-dropdown-item>
</el-dropdown-menu>
</el-dropdown>
</div>
</template>
@ -65,4 +56,4 @@ export default {
<style scoped>
</style>
</style>

View File

@ -8,7 +8,7 @@ import VueRouter from "vue-router";
import router from "@/router/router";
import store from "@/store/store";
Vue.prototype.$axios=axios;
Vue.prototype.$httpUrl='http://localhost:8081';
Vue.prototype.$httpUrl='http://192.168.56.138:8081';
Vue.config.productionTip = false;
Vue.use(VueRouter)
Vue.use(ElementUI,{size:'small'});

View File

@ -53,8 +53,6 @@ const routes=[
}
]
}
]
const route=new VueRouter({
@ -66,4 +64,4 @@ VueRouter.prototype.push = function push (to) {
return VueRouterPush.call(this, to).catch(err => err)
}
export default route;
export default route;