Compare commits
7 Commits
fzq
...
5b17f49619
| Author | SHA1 | Date | |
|---|---|---|---|
| 5b17f49619 | |||
| 4929c41361 | |||
| dbb67e6064 | |||
| 05fa4c5e21 | |||
| 8a18d705a4 | |||
| a64de34ef1 | |||
| 0bcc5baf7a |
@@ -1,7 +1,6 @@
|
||||
.vscode/
|
||||
.idea/
|
||||
node_modules/
|
||||
dist/
|
||||
**/*.log
|
||||
LICENSE
|
||||
README.md
|
||||
|
||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -1,6 +1,5 @@
|
||||
.DS_Store
|
||||
node_modules/
|
||||
dist/
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
|
||||
18
Dockerfile
18
Dockerfile
@@ -1,10 +1,14 @@
|
||||
FROM node:12 AS builder
|
||||
WORKDIR /app
|
||||
ADD package.json /app/
|
||||
RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install
|
||||
ADD . /app
|
||||
RUN npm run build:prod
|
||||
#FROM node:12 AS builder
|
||||
#WORKDIR /app
|
||||
#ADD package.json /app/
|
||||
#RUN npm config set registry https://registry.npmmirror.com && npm install git+https://gitee.com/shihairong/raphael && npm install
|
||||
#ADD . /app
|
||||
#RUN npm run build:prod
|
||||
#
|
||||
#FROM busybox
|
||||
#LABEL maintainer thomas.hairong@gmail.com
|
||||
#COPY --from=builder /app/dist /html
|
||||
|
||||
FROM busybox
|
||||
LABEL maintainer thomas.hairong@gmail.com
|
||||
COPY --from=builder /app/dist /html
|
||||
COPY dist/ /html
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
export default {
|
||||
title: {
|
||||
en: 'ARI WMS',
|
||||
zh: '中建材自动化智能仓库管理系统'
|
||||
en: 'SCC System',
|
||||
zh: '供应链协同管理系统'
|
||||
// en: 'ARI WMS',
|
||||
// zh: '中建材自动化智能仓库管理系统'
|
||||
},
|
||||
btn: {
|
||||
start: {
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/*
|
||||
* @Author: gtz
|
||||
* @Date: 2022-03-15 16:42:34
|
||||
* @LastEditors: gtz
|
||||
* @LastEditTime: 2022-03-16 20:01:32
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2022-06-06 15:53:29
|
||||
* @Description: file content
|
||||
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\en\module\dashboard.js
|
||||
*/
|
||||
@@ -10,7 +10,8 @@
|
||||
export default {
|
||||
first: 'First Row',
|
||||
second: 'Second Row',
|
||||
title: 'WMS Inventory Information',
|
||||
title: 'Inventory Information',
|
||||
// WMS
|
||||
pageHeader: 'No.',
|
||||
pageFooter: ' Page',
|
||||
isEmpty: 'Is Empty',
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
/*
|
||||
* @Author: gtz
|
||||
* @Date: 2022-03-15 16:42:34
|
||||
* @LastEditors: gtz
|
||||
* @LastEditTime: 2022-03-16 20:01:27
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2022-06-06 15:53:43
|
||||
* @Description: file content
|
||||
* @FilePath: \mt-ck-wms-ui\src\lang\i18n\zh\module\dashboard.js
|
||||
*/
|
||||
@@ -10,7 +10,8 @@
|
||||
export default {
|
||||
first: '第一排',
|
||||
second: '第二排',
|
||||
title: 'WMS库存信息',
|
||||
title: '库存信息',
|
||||
// WMS
|
||||
pageHeader: '第',
|
||||
pageFooter: '页',
|
||||
isEmpty: '是否为空',
|
||||
|
||||
@@ -1,13 +1,14 @@
|
||||
/*
|
||||
* @Date: 2020-12-14 09:07:03
|
||||
* @LastEditors: Please set LastEditors
|
||||
* @LastEditTime: 2021-12-06 14:24:30
|
||||
* @LastEditors: zwq
|
||||
* @LastEditTime: 2022-06-06 15:58:41
|
||||
* @FilePath: \basic-admin\src\settings.js
|
||||
* @Description:
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
title: 'ARI WMS',
|
||||
title: 'SCC System',
|
||||
// title: 'ARI WMS',
|
||||
|
||||
/**
|
||||
* @type {boolean} true | false
|
||||
|
||||
Reference in New Issue
Block a user