Toggle navigation
Toggle navigation
This project
Loading...
Sign in
Fedex
/
EcomWeb
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
jinhui.wang
2026-04-24 16:45:53 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f0174e85d1907625507e566613b4335921c353d7
f0174e85
1 parent
0a407cbe
版本修改,输入限制修改
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
14 additions
and
9 deletions
.env.development
.env.deving
.env.pre
.env.production
.env.test
.env.uat
package - 副本.json
package.json
src/components/FormTextareaInput/index.vue
src/views/reportingData/index.vue
.env.development
View file @
f0174e8
...
...
@@ -3,7 +3,7 @@ ENV = 'development'
VUE_APP_BASE_ENV = "dev"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
VUE_APP_BASE_URL = 'http://101.132.100.41:7001/EcomExp'
# FedEx 在线申报工具/开发环境
...
...
.env.deving
View file @
f0174e8
...
...
@@ -5,7 +5,7 @@ ENV = 'dev_erry'
VUE_APP_BASE_ENV = "dev"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7008/EcomExp'
...
...
.env.pre
View file @
f0174e8
...
...
@@ -7,7 +7,7 @@ ENV = 'pre_fedex'
# 没用到
VUE_APP_BASE_ENV = "pre"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
#预生产UAT测试环境 https://declarationuat.fedex.com.cn
VUE_APP_BASE_API = 'https://declarationuat.fedex.com.cn/EcomExp'
...
...
.env.production
View file @
f0174e8
...
...
@@ -3,7 +3,7 @@ ENV = 'production_fedex'
VUE_APP_BASE_ENV = "prod"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
#生产环境
VUE_APP_BASE_API = 'https://declaration.fedex.com.cn/EcomExp'
...
...
.env.test
View file @
f0174e8
...
...
@@ -5,7 +5,7 @@ ENV = 'test_erry'
VUE_APP_BASE_ENV = "test"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7001/EcomExp'
...
...
.env.uat
View file @
f0174e8
...
...
@@ -5,7 +5,7 @@ ENV = 'uat_erry'
VUE_APP_BASE_ENV = "uat"
VUE_APP_Version = '1.0.1
2
'
VUE_APP_Version = '1.0.1
3
'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7023/EcomExp'
...
...
package - 副本.json
View file @
f0174e8
{
"name"
:
"iCearExport"
,
"version"
:
"1.0.1
2
"
,
"version"
:
"1.0.1
3
"
,
"description"
:
"FedEx 在线申报工具"
,
"author"
:
"ICE"
,
"license"
:
"MIT"
,
...
...
package.json
View file @
f0174e8
{
"name"
:
"FedEx"
,
"version"
:
"1.0.1
2
"
,
"version"
:
"1.0.1
3
"
,
"description"
:
"FedEx 在线申报工具"
,
"author"
:
"ICE"
,
"license"
:
"MIT"
,
...
...
src/components/FormTextareaInput/index.vue
View file @
f0174e8
...
...
@@ -67,6 +67,10 @@ export default {
type: Number,
default: 1,
},
maxEntries: {
type: [String, Number],
default: 1000,
},
},
data() {
return {
...
...
@@ -122,7 +126,7 @@ export default {
.replace(/[\t]/g, "")
.split(",")
.forEach((str, index) => {
if (str != null && str != "" && index <=
1000
) {
if (str != null && str != "" && index <=
this.maxEntries
) {
arr.push(str.trim());
}
});
...
...
src/views/reportingData/index.vue
View file @
f0174e8
...
...
@@ -63,6 +63,7 @@
:formData="sreachFormData"
dataKey="logisticsNo"
:curKey="Date.now()"
:maxEntries="1999"
@formChange="formChange"
/>
</Formitem>
...
...
Please
register
or
login
to post a comment