zouyu
3 天以前 96014eda0d23f801151f63120aa75389d8be355d
代码调整10
已修改3个文件
6 ■■■■ 文件已修改
.env.production 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
index.html 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
vite.config.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
.env.production
@@ -1,5 +1,5 @@
# 页面标题
VITE_APP_TITLE =芯导-生产管控系统
VITE_APP_TITLE =芯导-财务管理系统
# 生产环境配置
VITE_APP_ENV = 'production'
index.html
@@ -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>%VITE_APP_TITLE%</title>
  <!--[if lt IE 11]><script>window.location.href='/html/ie.html';</script><![endif]-->
  <style>
    html,
vite.config.js
@@ -8,7 +8,7 @@
  const { VITE_APP_ENV } = env;
  const baseUrl =
    VITE_APP_ENV == "development"
      ? "http://10.136.12.71:7003" // 开发环境后端接口
      ? "http://127.0.0.1:7003" // 开发环境后端接口
      : "http://10.136.12.71:7003"; // 生产环境后端接口
  return {