diff --git a/.env.development b/.env.development
index fc5c371..c737ca5 100644
--- a/.env.development
+++ b/.env.development
@@ -3,12 +3,8 @@ VUE_APP_TITLE = 产品档案管理系统
# 开发环境配置
ENV = 'development'
-
-# 检查员管理系统/开发环境
-VUE_APP_BASE_API = 'https://vue.ruoyi.vip/prod-api'
-# 自己公司
-VUE_APP_BASE_API2 = ''
-VUE_APP_BASE_API3 = '/configApi/'
+# 开发环境
+VUE_APP_BASE_API = '/configApi'
VUE_APP_PREFIX =''
# 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true
diff --git a/src/App.vue b/src/App.vue
index 29de49f..615b10c 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -11,14 +11,28 @@ import ThemePicker from "@/components/ThemePicker";
export default {
name: "App",
components: { ThemePicker },
- metaInfo() {
- return {
- title: this.$store.state.settings.dynamicTitle && this.$store.state.settings.title,
- titleTemplate: title => {
- return title ? `${title} - ${process.env.VUE_APP_TITLE}` : process.env.VUE_APP_TITLE
- }
- }
- }
+ metaInfo() {
+ return {
+ title:
+ this.$store.state.settings.dynamicTitle &&
+ this.$store.state.settings.title,
+ titleTemplate: (title) => {
+ return title
+ ? `${title} - ${process.env.VUE_APP_TITLE}`
+ : process.env.VUE_APP_TITLE;
+ },
+ };
+ },
+ mounted(){
+ setTimeout(async () => {
+ let Authentication = await this.$api.toLogin.frimLogin();
+ console.log(Authentication);
+ localStorage.setItem(
+ "Authentication",
+ Authentication.data.result.userToken
+ );
+ }, 1000);
+ }
};
\ No newline at end of file
diff --git a/src/views/netWorkStat/index.vue b/src/views/netWorkStat/index.vue
new file mode 100644
index 0000000..7aa204f
--- /dev/null
+++ b/src/views/netWorkStat/index.vue
@@ -0,0 +1,331 @@
+
+