wangtao 2 years ago
parent
commit
f1b192de71

+ 2 - 2
.env.development

@@ -1,10 +1,10 @@
 # 页面标题
-VUE_APP_TITLE = 东信设备设施管理系统
+VUE_APP_TITLE = 设备设施管理系统
 
 # 开发环境配置
 ENV = 'development'
 
-# 东信设备设施管理系统/开发环境
+# 设备设施管理系统/开发环境
 VUE_APP_BASE_API = '/dmapi'
 
 # 路由懒加载

+ 1 - 1
.env.production

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 东信设备设施管理系统
+VUE_APP_TITLE = 设备设施管理系统
 
 # 生产环境配置
 ENV = 'production'

+ 1 - 1
.env.staging

@@ -1,5 +1,5 @@
 # 页面标题
-VUE_APP_TITLE = 东信设备设施管理系统
+VUE_APP_TITLE = 设备设施管理系统
 
 NODE_ENV = production
 

+ 1 - 1
package.json

@@ -1,7 +1,7 @@
 {
     "name": "dongxin",
     "version": "3.6.0",
-    "description": "东信设备设施管理系统",
+    "description": "设备设施管理系统",
     "author": "wt",
     "license": "MIT",
     "scripts": {

+ 1 - 1
src/layout/components/Sidebar/Logo.vue

@@ -52,7 +52,7 @@ export default {
   },
   data() {
     return {
-      title: "东信设备设施管理系统",
+      title: "设备设施管理系统",
       logo: logoImg,
     };
   },

+ 1 - 1
src/views/business/OM/workMange/index.vue

@@ -84,7 +84,7 @@
       <el-table-column label="id" align="center" prop="id"  show-overflow-tooltip />
       <el-table-column label="单位名称" align="center" prop="companyName" show-overflow-tooltip >
          <template slot-scope="scope">
-          {{scope.row.companyName || "东信智慧园区"}}
+          {{scope.row.companyName || "智慧园区"}}
         </template>
       </el-table-column>
       <el-table-column label="工单名称" align="center" prop="workOrderName" show-overflow-tooltip />

+ 1 - 1
src/views/register.vue

@@ -1,7 +1,7 @@
 <template>
   <div class="register">
     <el-form ref="registerForm" :model="registerForm" :rules="registerRules" class="register-form">
-      <h3 class="title">东信设备设施管理系统</h3>
+      <h3 class="title">设备设施管理系统</h3>
       <el-form-item prop="username">
         <el-input v-model="registerForm.username" type="text" auto-complete="off" placeholder="账号">
           <svg-icon slot="prefix" icon-class="user" class="el-input__icon input-icon" />

+ 2 - 2
vue.config.js

@@ -5,7 +5,7 @@ function resolve(dir) {
     return path.join(__dirname, dir)
 }
 
-const name = process.env.VUE_APP_TITLE || '东信设备设施管理系统' // 网页标题
+const name = process.env.VUE_APP_TITLE || '设备设施管理系统' // 网页标题
 
 const port = process.env.port || process.env.npm_config_port || 80 // 端口
 
@@ -34,7 +34,7 @@ module.exports = {
             // detail: https://cli.vuejs.org/config/#devserver-proxy
             [process.env.VUE_APP_BASE_API]: {
                 //target: 'http://172.16.120.49/dmapi/', //49
-                target: 'https://smartpark.caih.com/dmapi/', //东信
+                target: 'https://smartpark.caih.com/dmapi/', //
                 changeOrigin: true,
                 pathRewrite: {
                     ['^' + process.env.VUE_APP_BASE_API]: ''