项目名称更换

This commit is contained in:
JenniferW 2025-11-26 14:18:07 +08:00
parent 0cee08a479
commit 7bbcff0dc7
7 changed files with 18 additions and 14 deletions

View File

@ -1,8 +1,8 @@
# 页面标题
VITE_APP_TITLE = 智奇管理系统
VITE_APP_TITLE = 智奇品号高效检索系统
# 开发环境配置
VITE_APP_ENV = 'development'
# 智奇管理系统/开发环境
# 智奇品号高效检索系统/开发环境
VITE_APP_BASE_API = 'http://124.70.134.24:48106'

View File

@ -1,10 +1,10 @@
# 页面标题
VITE_APP_TITLE = 智奇管理系统
VITE_APP_TITLE = 智奇品号高效检索系统
# 生产环境配置
VITE_APP_ENV = 'production'
# 智奇管理系统/生产环境
# 智奇品号高效检索系统/生产环境
VITE_APP_BASE_API = '/prod-api'
# 是否在打包时开启压缩,支持 gzip 和 brotli

View File

@ -1,10 +1,10 @@
# 页面标题
VITE_APP_TITLE = 智奇管理系统
VITE_APP_TITLE = 智奇品号高效检索系统
# 生产环境配置
VITE_APP_ENV = 'staging'
# 智奇管理系统/生产环境
# 智奇品号高效检索系统/生产环境
VITE_APP_BASE_API = '/stage-api'
# 是否在打包时开启压缩,支持 gzip 和 brotli

View File

@ -7,7 +7,7 @@
<meta name="renderer" content="webkit">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<link rel="icon" href="/favicon.ico">
<title>智奇管理系统</title>
<title>智奇品号高效检索系统</title>
<!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
<style>
html,

View File

@ -1,7 +1,7 @@
{
"name": "ruoyi",
"version": "3.8.9",
"description": "智奇管理系统",
"description": "智奇品号高效检索系统",
"author": "智奇",
"license": "MIT",
"type": "module",

View File

@ -1,6 +1,6 @@
// 模拟静态数据
const mockConfigs = [
{ configId: 1, configName: '系统名称', configKey: 'sys.name', configValue: '智奇管理系统', configType: 'Y', status: '0', createTime: '2023-01-01' },
{ configId: 1, configName: '系统名称', configKey: 'sys.name', configValue: '智奇品号高效检索系统', configType: 'Y', status: '0', createTime: '2023-01-01' },
{ configId: 2, configName: '系统版本', configKey: 'sys.version', configValue: 'v1.0.0', configType: 'Y', status: '0', createTime: '2023-01-02' }
];

View File

@ -405,7 +405,14 @@
</template>
<script setup>
import { ref, computed, watch, onMounted, nextTick, getCurrentInstance } from "vue";
import {
ref,
computed,
watch,
onMounted,
nextTick,
getCurrentInstance,
} from "vue";
import {
searchHint,
search as searchProducts,
@ -413,7 +420,6 @@ import {
compare,
} from "@/api/order";
import { ElMessage, ElEmpty, ElDialog } from "element-plus";
import { Search, RefreshLeft, Microphone } from "@element-plus/icons-vue";
const { proxy } = getCurrentInstance();
const { display_field } = proxy.useDict("display_field");
@ -1433,9 +1439,7 @@ const fetchCompareTable = async () => {
sortedCompareList.value.forEach((product) => {
const value = product[entry.key];
row[product.partNumber] =
value !== undefined && value !== null && value !== ""
? value
: "-";
value !== undefined && value !== null && value !== "" ? value : "-";
});
return row;
});