Browse Source

提交文件

hongrunxia 1 year ago
parent
commit
699c084b9f
5 changed files with 7 additions and 7 deletions
  1. 1 3
      .env
  2. 2 0
      .env.test
  3. 3 3
      Dockerfile
  4. BIN
      public/model/hdr/123.hdr
  5. 1 1
      src/views/demo/comp/modal/Modal2.vue

+ 1 - 3
.env

@@ -2,7 +2,7 @@
 VITE_PORT = 3100
 
 #  网站标题
-VITE_GLOB_APP_TITLE = XXX智能管控系统
+VITE_GLOB_APP_TITLE = 智能通风管控系统
 
 # 简称,用于配置文件名字 不要出现空格、数字开头等特殊字符
 VITE_GLOB_APP_SHORT_NAME = JeecgBootAdmin
@@ -18,5 +18,3 @@ VITE_GLOB_APP_OPEN_QIANKUN=true
 
 # 文件预览地址
 VITE_GLOB_ONLINE_VIEW_URL=http://fileview.jeecg.com/onlinePreview
-
-

+ 2 - 0
.env.test

@@ -32,3 +32,5 @@ VITE_USE_PWA = false
 
 # 是否兼容旧浏览器
 VITE_LEGACY = false
+
+VITE_GLOB_IS_SIMULATE=true

+ 3 - 3
Dockerfile

@@ -4,8 +4,8 @@ VOLUME /tmp
 ENV LANG en_US.UTF-8
 RUN echo "server {  \
                       listen       80; \
-                      location   /jeecgboot { \
-                      proxy_pass              http://jeecg-boot-system:8080/jeecg-boot; \
+                      location   /jeecgboot/ { \
+                      proxy_pass              http://jeecg-boot-system:8080/jeecg-boot/; \
                       proxy_redirect          off; \
                       proxy_set_header        Host jeecg-boot-system; \
                       proxy_set_header        X-Real-IP \$remote_addr; \
@@ -27,4 +27,4 @@ RUN echo "server {  \
 
 ADD dist/ /var/www/html/
 EXPOSE 80
-EXPOSE 443
+EXPOSE 443

BIN
public/model/hdr/123.hdr


+ 1 - 1
src/views/demo/comp/modal/Modal2.vue

@@ -1,5 +1,5 @@
 <template>
-  <BasicModal @register="register" title="Modal Title" :helpMessage="['提示1', '提示2']" :okButtonProps="{ disabled: true }">
+  <BasicModal @register="register"  title="Modal Title" :helpMessage="['提示1', '提示2']" :okButtonProps="{ disabled: true }">
     <a-button type="primary" @click="closeModal" class="mr-2"> 从内部关闭弹窗 </a-button>
     <a-button type="primary" @click="setModalProps"> 从内部修改title </a-button>
   </BasicModal>