jinhui.wang

版本修改,输入限制修改

......@@ -3,7 +3,7 @@ ENV = 'development'
VUE_APP_BASE_ENV = "dev"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
VUE_APP_BASE_URL = 'http://101.132.100.41:7001/EcomExp'
# FedEx 在线申报工具/开发环境
......
......@@ -5,7 +5,7 @@ ENV = 'dev_erry'
VUE_APP_BASE_ENV = "dev"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7008/EcomExp'
......
......@@ -7,7 +7,7 @@ ENV = 'pre_fedex'
# 没用到
VUE_APP_BASE_ENV = "pre"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
#预生产UAT测试环境 https://declarationuat.fedex.com.cn
VUE_APP_BASE_API = 'https://declarationuat.fedex.com.cn/EcomExp'
......
......@@ -3,7 +3,7 @@ ENV = 'production_fedex'
VUE_APP_BASE_ENV = "prod"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
#生产环境
VUE_APP_BASE_API = 'https://declaration.fedex.com.cn/EcomExp'
......
......@@ -5,7 +5,7 @@ ENV = 'test_erry'
VUE_APP_BASE_ENV = "test"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7001/EcomExp'
......
......@@ -5,7 +5,7 @@ ENV = 'uat_erry'
VUE_APP_BASE_ENV = "uat"
VUE_APP_Version = '1.0.12'
VUE_APP_Version = '1.0.13'
#测试环境
VUE_APP_BASE_API = 'http://101.132.100.41:7023/EcomExp'
......
{
"name": "iCearExport",
"version": "1.0.12",
"version": "1.0.13",
"description": "FedEx 在线申报工具",
"author": "ICE",
"license": "MIT",
......
{
"name": "FedEx",
"version": "1.0.12",
"version": "1.0.13",
"description": "FedEx 在线申报工具",
"author": "ICE",
"license": "MIT",
......
......@@ -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());
}
});
......
......@@ -63,6 +63,7 @@
:formData="sreachFormData"
dataKey="logisticsNo"
:curKey="Date.now()"
:maxEntries="1999"
@formChange="formChange"
/>
</Formitem>
......