Browse Source

调整网址重新部署

qymljy 1 year ago
parent
commit
10a1ed3912
3 changed files with 11 additions and 11 deletions
  1. 4 4
      src/components/layout/modules/header.vue
  2. 5 5
      src/views/login/login.vue
  3. 2 2
      vue.config.js

+ 4 - 4
src/components/layout/modules/header.vue

@@ -1,6 +1,6 @@
 <template>
 <div class="flex">
-  <div class="logo">美大营销管理平台</div>
+  <div class="logo">多三边营销管理平台</div>
   <div class="right-operation">
     <el-dropdown>
       <span class="el-dropdown-link">
@@ -48,9 +48,9 @@ export default {
         this.$message({
           type: 'info',
           message: '已取消'
-        });          
+        });
       });
-      
+
     },
     changeAccount () {
       this.$router.push('/accounts')
@@ -86,4 +86,4 @@ export default {
 .right-operation{
   padding: 0 20px;
 }
-</style>
+</style>

+ 5 - 5
src/views/login/login.vue

@@ -5,8 +5,8 @@
     <div class="login-wrap">
       <div>
         <div class="logo">
-          <span>美大营销管理平台</span><br>
-          <small>MEIDA-MANAGE-SYSTEM</small>
+          <span>多三边营销管理平台</span><br>
+          <small>DUOSANBIAN-MANAGE-SYSTEM</small>
         </div>
         <div class="login-form">
           <h4 class="title">登录</h4>
@@ -162,7 +162,7 @@ export default {
             sessionStorage.setItem('account_list', JSON.stringify(res.account_list))
           }
         }
-        
+
       } else {
         this.$notify({
           title: '失败',
@@ -180,7 +180,7 @@ export default {
       })
       if (res.code === 1) {
         // return console.log(res.account_list[0]);
-        
+
         if (res.account_list[0].status != 'ACTIVE') {
           this.$notify({
             title:'提示',
@@ -261,4 +261,4 @@ export default {
   align-items: center;
   justify-content: space-between;
 }
-</style>
+</style>

+ 2 - 2
vue.config.js

@@ -11,7 +11,7 @@ module.exports = {
     port: 8080,
     proxy: {
       '/apis': {
-        target: 'http://61.164.207.46:8100/',  // target host
+        target: 'http://121.37.141.210:8081/',  // target host
         // target: 'https://meida.cnyunl.com',
         ws: true,  // proxy websockets
         changeOrigin: true,  // needed for virtual hosted sites
@@ -23,7 +23,7 @@ module.exports = {
   },
   chainWebpack(config) {
 		config.plugin('html').tap((args) => { //标题
-			args[0].title = '美大营销管理平台';
+			args[0].title = '多三边营销管理平台';
 			return args;
 		})
 	},