Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-pad
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ximai
mes-pad
Commits
6567d4b0
Commit
6567d4b0
authored
Jun 06, 2024
by
zhuli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
# 提交分版本配置
parent
5f12b0b7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
53 additions
and
1461 deletions
+53
-1461
Dockerfile-prod
Dockerfile-prod
+1
-1
Dockerfile-test
Dockerfile-test
+31
-0
config.js
common/config.js
+4
-1
http.api.js
common/http.api.js
+1
-0
package-lock.json
package-lock.json
+0
-1459
amebase.css
static/css/amebase.css
+16
-0
No files found.
Dockerfile
→
Dockerfile
-prod
View file @
6567d4b0
...
@@ -6,7 +6,7 @@ RUN echo "server { \
...
@@ -6,7 +6,7 @@ RUN echo "server { \
listen 81; \
listen 81; \
client_max_body_size 50M; \
client_max_body_size 50M; \
location /api/ { \
location /api/ { \
proxy_pass http://192.168.3.91:808
4
/;
\
proxy_pass http://192.168.3.91:808
0
/; \
proxy_redirect off; \
proxy_redirect off; \
proxy_set_header Host mes-pad; \
proxy_set_header Host mes-pad; \
proxy_set_header X-Real-IP \$remote_addr; \
proxy_set_header X-Real-IP \$remote_addr; \
...
...
Dockerfile-test
0 → 100644
View file @
6567d4b0
FROM nginx
MAINTAINER xin.lu
VOLUME /tmp
ENV LANG en_US.UTF-8
RUN echo "server { \
listen 81; \
client_max_body_size 50M; \
location /api/ { \
proxy_pass http://192.168.3.91:8100/; \
proxy_redirect off; \
proxy_set_header Host mes-pad; \
proxy_set_header X-Real-IP \$remote_addr; \
proxy_set_header X-Forwarded-For \$proxy_add_x_forwarded_for; \
} \
#解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题 \
location / { \
root /var/mes/mes-pad/; \
index index.html index.htm; \
if (!-e \$request_filename) { \
rewrite ^(.*)\$ /index.html?s=\$1 last; \
break; \
} \
} \
access_log /var/log/nginx/access.log ; \
} " > /etc/nginx/conf.d/default.conf \
&& mkdir -p /var/mes \
&& mkdir -p /var/mes/mes-pad
ADD / /var/mes/mes-pad/
EXPOSE 80
EXPOSE 443
common/config.js
View file @
6567d4b0
...
@@ -22,7 +22,10 @@ const config = {
...
@@ -22,7 +22,10 @@ const config = {
// 设置后台接口服务的基础地址
// 设置后台接口服务的基础地址
// config.baseUrl = 'http://192.168.3.91:8080';
// config.baseUrl = 'http://192.168.3.91:8080';
config
.
baseUrl
=
'http://192.168.3.91:8080'
;
//测试环境
// config.baseUrl = 'http://192.168.3.91:8100';
config
.
baseUrl
=
'/api'
;
//测试环境
// config.baseUrl = 'http://192.168.3.91:8080';
// config.baseUrl = 'http://192.168.3.91:8080';
//config.baseUrl = "http://101.43.244.58:8080/";
//config.baseUrl = "http://101.43.244.58:8080/";
//config.baseUrl = "http://101.200.162.168:8080";
//config.baseUrl = "http://101.200.162.168:8080";
...
...
common/http.api.js
View file @
6567d4b0
...
@@ -273,6 +273,7 @@ const install = (Vue, vm) => {
...
@@ -273,6 +273,7 @@ const install = (Vue, vm) => {
//查看生产工单
//查看生产工单
getWorkorder
:
(
params
=
{})
=>
getWorkorder
:
(
params
=
{})
=>
vm
.
$u
.
get
(
config
.
adminPath
+
'/mes/pro/workorder/list'
,
params
),
vm
.
$u
.
get
(
config
.
adminPath
+
'/mes/pro/workorder/list'
,
params
),
//查看生产工单
//查看生产工单
getWorkorderWithSizeAndDirective
:
(
params
=
{})
=>
getWorkorderWithSizeAndDirective
:
(
params
=
{})
=>
vm
.
$u
.
get
(
vm
.
$u
.
get
(
...
...
package-lock.json
deleted
100644 → 0
View file @
5f12b0b7
This diff is collapsed.
Click to expand it.
static/css/amebase.css
View file @
6567d4b0
...
@@ -81,4 +81,20 @@
...
@@ -81,4 +81,20 @@
/* 垂直居中 */
/* 垂直居中 */
justify-content
:
flex-start
;
justify-content
:
flex-start
;
/* 水平左对齐 */
/* 水平左对齐 */
}
.qcbutton
{
display
:
flex
;
margin-right
:
10px
;
/* 外边距 需要的间隔大小 */
padding-right
:
10px
;
/* 内边距 需要的间隔大小 */
/* gap: 10px; 或者你需要的间隔大小 */
}
.qcradio
{
display
:
flex
;
flex-direction
:
column
;
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment