allen hace 17 horas
padre
commit
554e1fa5da

+ 2 - 2
ips-ui/.env.development

@@ -1,10 +1,10 @@
 # 页面标题
-VUE_APP_TITLE = 图像处理系统
+VUE_APP_TITLE = 有源干扰信号特征建模与智能识别软件
 
 # 开发环境配置
 ENV = 'development'
 
-# 图像处理系统/开发环境
+# 有源干扰信号特征建模与智能识别软件/开发环境
 VUE_APP_BASE_API = '/dev-api'
 
 # 路由懒加载

+ 2 - 2
ips-ui/.env.production

@@ -1,8 +1,8 @@
 # 页面标题
-VUE_APP_TITLE = 图像处理系统
+VUE_APP_TITLE = 有源干扰信号特征建模与智能识别软件
 
 # 生产环境配置
 ENV = 'production'
 
-# 图像处理系统/生产环境
+# 有源干扰信号特征建模与智能识别软件/生产环境
 VUE_APP_BASE_API = 'http://localhost:8080'

+ 2 - 2
ips-ui/.env.staging

@@ -1,10 +1,10 @@
 # 页面标题
-VUE_APP_TITLE = 图像处理系统
+VUE_APP_TITLE = 有源干扰信号特征建模与智能识别软件
 
 NODE_ENV = production
 
 # 测试环境配置
 ENV = 'staging'
 
-# 图像处理系统/测试环境
+# 有源干扰信号特征建模与智能识别软件/测试环境
 VUE_APP_BASE_API = '/stage-api'

+ 1 - 1
ips-ui/package.json

@@ -1,7 +1,7 @@
 {
   "name": "ips",
   "version": "3.8.6",
-  "description": "图像处理系统",
+  "description": "有源干扰信号特征建模与智能识别软件",
   "author": "ips",
   "license": "MIT",
   "main": "background.js",

+ 1 - 1
ips-ui/src/background.js

@@ -31,7 +31,7 @@ async function createWindow() {
   win.maximize();
   //  win.show();
   // 打开控制台
-   win.webContents.openDevTools();
+  // win.webContents.openDevTools();
   ipcMain.on("getPrinterList", (event) => {
     //主线程获取打印机列表
     win.webContents.getPrintersAsync().then((data) => {

+ 3 - 3
ips-ui/src/views/biz/features/index.vue

@@ -467,7 +467,7 @@ export default {
     handleAdd() {
       this.reset();
       this.open = true;
-      this.title = "添加复合干扰源识别网络";
+      this.title = "添加特征提取";
     },
     /** 修改按钮操作 */
     handleUpdate(row) {
@@ -476,7 +476,7 @@ export default {
       getFeatures(id).then((response) => {
         this.form = response.data;
         this.open = true;
-        this.title = "修改复合干扰源识别网络";
+        this.title = "修改特征提取";
       });
     },
     handleRun(row) {
@@ -511,7 +511,7 @@ export default {
     handleDelete(row) {
       const ids = row.id || this.ids;
       this.$modal
-        .confirm('是否确认删除复合干扰源识别网络?')
+        .confirm('是否确认删除特征提取?')
         .then(function () {
           return delFeatures(ids);
         })

+ 1 - 1
ips-ui/src/views/login.vue

@@ -6,7 +6,7 @@
       :rules="loginRules"
       class="login-form"
     >
-      <h3 class="title">图像处理系统</h3>
+      <h3 class="title">有源干扰信号特征建模与智能识别软件</h3>
       <el-form-item prop="username">
         <el-input
           v-model="loginForm.username"

+ 1 - 1
ips-ui/vue.config.js

@@ -7,7 +7,7 @@ function resolve(dir) {
 
 const CompressionPlugin = require("compression-webpack-plugin");
 
-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; // 端口
 

+ 1 - 1
pom.xml

@@ -10,7 +10,7 @@
 
     <name>ips</name>
     <url>http://www.ruoyi.vip</url>
-    <description>图像处理系统</description>
+    <description>有源干扰信号特征建模与智能识别软件</description>
     
     <properties>
         <ips.version>3.8.6</ips.version>