Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-app-operator-master
Commits
a2327655
Commit
a2327655
authored
Aug 02, 2022
by
huhaiqing
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
海运增加上传功能
parent
0ab4078e
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
321 additions
and
326 deletions
+321
-326
arrival.vue
src/views/ecw/box/shippingSea/nodePage/arrival.vue
+5
-3
index.vue
src/views/ecw/box/shippingSea/nodePage/cabinet/index.vue
+3
-4
cusDeclaration.vue
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
+4
-4
subMaterial.vue
src/views/ecw/box/shippingSea/nodePage/subMaterial.vue
+2
-10
index.vue
src/views/ecw/box/shippingSea/nodePage/unloading/index.vue
+1
-1
shippingSea.vue
src/views/ecw/box/shippingSea/shippingSea.vue
+1
-1
utils.js
src/views/ecw/box/shippingSea/utils.js
+305
-303
No files found.
src/views/ecw/box/shippingSea/nodePage/arrival.vue
View file @
a2327655
...
@@ -77,9 +77,11 @@ export default {
...
@@ -77,9 +77,11 @@ export default {
methods
:
{
methods
:
{
// 获取预计到港时间
// 获取预计到港时间
getExpectedTime
()
{
getExpectedTime
()
{
return
dayjs
(
const
{
shippingInfo
}
=
this
.
$attrs
.
shipmentObj
;
this
.
$attrs
.
shipmentObj
.
shippingInfo
.
dtEstArrivalTime
if
(
shippingInfo
)
{
).
format
(
"
YYYY-MM-DD
"
);
return
dayjs
(
shippingInfo
.
dtEstArrivalTime
).
format
(
"
YYYY-MM-DD
"
);
}
return
null
;
},
},
// 时间比较
// 时间比较
compareDate
(
expectedTime
,
apConfirmTime
)
{
compareDate
(
expectedTime
,
apConfirmTime
)
{
...
...
src/views/ecw/box/shippingSea/nodePage/cabinet/index.vue
View file @
a2327655
...
@@ -16,9 +16,7 @@
...
@@ -16,9 +16,7 @@
<el-date-picker
type=
"date"
placeholder=
"请选择日期"
v-model=
"cabinetObj.ldOutWarehouseTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
<el-date-picker
type=
"date"
placeholder=
"请选择日期"
v-model=
"cabinetObj.ldOutWarehouseTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
</el-form-item>
</el-form-item>
<el-form-item
label=
"装柜图片"
>
<el-form-item
label=
"装柜图片"
>
<el-upload
action=
""
:limit=
"1"
:file-list=
"cabinetObj.ldPictures"
>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"cabinetObj.ldPictures"
/>
<el-button
size=
"small"
type=
"primary"
>
选择文件
</el-button>
</el-upload>
</el-form-item>
</el-form-item>
</el-form>
</el-form>
...
@@ -41,6 +39,7 @@
...
@@ -41,6 +39,7 @@
import
startPacking
from
"
./startPacking.vue
"
;
import
startPacking
from
"
./startPacking.vue
"
;
import
{
cabinetCreate
,
serviceMsg
}
from
"
@/api/ecw/boxSea
"
;
import
{
cabinetCreate
,
serviceMsg
}
from
"
@/api/ecw/boxSea
"
;
import
{
formatDateStr
}
from
"
../../utils
"
;
import
{
formatDateStr
}
from
"
../../utils
"
;
import
ImageUpload
from
"
@/components/ImageUpload
"
;
/**
/**
* 装柜
* 装柜
...
@@ -48,7 +47,7 @@ import { formatDateStr } from "../../utils";
...
@@ -48,7 +47,7 @@ import { formatDateStr } from "../../utils";
export
default
{
export
default
{
name
:
"
cabinet
"
,
name
:
"
cabinet
"
,
inheritAttrs
:
false
,
inheritAttrs
:
false
,
components
:
{
startPacking
},
components
:
{
startPacking
,
ImageUpload
},
data
()
{
data
()
{
return
{
return
{
// 弹窗
// 弹窗
...
...
src/views/ecw/box/shippingSea/nodePage/cusDeclaration.vue
View file @
a2327655
...
@@ -46,9 +46,7 @@
...
@@ -46,9 +46,7 @@
<el-date-picker
type=
"date"
placeholder=
"请选择日期"
v-model=
"cusDeclarationObj.dcCheckTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
<el-date-picker
type=
"date"
placeholder=
"请选择日期"
v-model=
"cusDeclarationObj.dcCheckTime"
value-format=
"yyyy-MM-dd"
></el-date-picker>
</el-form-item>
</el-form-item>
<el-form-item
label=
"查验前图片"
>
<el-form-item
label=
"查验前图片"
>
<el-upload
action=
""
:limit=
"1"
:file-list=
"cusDeclarationObj.dcCheckPreImg"
>
<ImageUpload
:limit=
"1"
:isShowTip=
false
v-model=
"cusDeclarationObj.dcCheckPreImg"
/>
<el-button
size=
"small"
type=
"primary"
>
选择文件
</el-button>
</el-upload>
</el-form-item>
</el-form-item>
<el-form-item
label=
"新封条"
>
<el-form-item
label=
"新封条"
>
<el-input
v-model=
"cusDeclarationObj.dcStripSeal"
placeholder=
"请输入新封条"
clearable
/>
<el-input
v-model=
"cusDeclarationObj.dcStripSeal"
placeholder=
"请输入新封条"
clearable
/>
...
@@ -133,13 +131,15 @@
...
@@ -133,13 +131,15 @@
import
supplierSelect
from
"
./common/supplierSelect.vue
"
;
import
supplierSelect
from
"
./common/supplierSelect.vue
"
;
import
{
customsCreate
,
serviceMsg
}
from
"
@/api/ecw/boxSea
"
;
import
{
customsCreate
,
serviceMsg
}
from
"
@/api/ecw/boxSea
"
;
import
{
formatNumberString
,
formatDateStr
}
from
"
../utils
"
;
import
{
formatNumberString
,
formatDateStr
}
from
"
../utils
"
;
import
ImageUpload
from
"
@/components/ImageUpload
"
;
/**
/**
* 报关
* 报关
*/
*/
export
default
{
export
default
{
name
:
"
cusDeclaration
"
,
name
:
"
cusDeclaration
"
,
inheritAttrs
:
false
,
inheritAttrs
:
false
,
components
:
{
supplierSelect
},
components
:
{
supplierSelect
,
ImageUpload
},
data
()
{
data
()
{
return
{
return
{
// 报关对象
// 报关对象
...
...
src/views/ecw/box/shippingSea/nodePage/subMaterial.vue
View file @
a2327655
...
@@ -97,16 +97,7 @@ export default {
...
@@ -97,16 +97,7 @@ export default {
markNo
:
"
N/M
"
,
markNo
:
"
N/M
"
,
},
},
// 出单方式
// 出单方式
method
:
[
method
:
constantDict
.
billingMethod
,
{
value
:
"
1
"
,
label
:
"
正本
"
,
},
{
value
:
"
2
"
,
label
:
"
电放
"
,
},
],
// 单位
// 单位
units
:
[],
units
:
[],
// 柜型
// 柜型
...
@@ -132,6 +123,7 @@ export default {
...
@@ -132,6 +123,7 @@ export default {
const
voName
=
this
.
$attrs
.
currNode
.
voName
;
const
voName
=
this
.
$attrs
.
currNode
.
voName
;
let
oldData
=
{
...
this
.
shipmentObj
[
voName
]
};
let
oldData
=
{
...
this
.
shipmentObj
[
voName
]
};
oldData
=
formatNumberString
(
oldData
,
[
"
issueType
"
]);
this
.
subMaterialObj
=
oldData
;
this
.
subMaterialObj
=
oldData
;
},
},
methods
:
{
methods
:
{
...
...
src/views/ecw/box/shippingSea/nodePage/unloading/index.vue
View file @
a2327655
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
<el-row
class=
"operate-button"
>
<el-row
class=
"operate-button"
>
<el-button
type=
"primary"
@
click=
"onSubmit(1)"
>
保存
</el-button>
<el-button
type=
"primary"
@
click=
"onSubmit(1)"
>
保存
</el-button>
<el-button
type=
"
success"
@
click=
"onSubmit(2)"
>
提交
</el-button>
<el-button
type=
"success"
@
click=
"onSubmit(2)"
>
提交
</el-button>
<el-button
@
click=
"cancel"
>
关闭
</el-button>
<el-button
@
click=
"cancel"
>
关闭
</el-button>
<el-button
type=
"danger"
@
click=
"startUnloading"
>
开始卸柜
</el-button>
<el-button
type=
"danger"
@
click=
"startUnloading"
>
开始卸柜
</el-button>
</el-row>
</el-row>
...
...
src/views/ecw/box/shippingSea/shippingSea.vue
View file @
a2327655
...
@@ -68,7 +68,7 @@ export default {
...
@@ -68,7 +68,7 @@ export default {
// 用户
// 用户
allUsers
:
[],
allUsers
:
[],
// 流程图节点
// 流程图节点
seaBaseData
:
seaBaseData
,
seaBaseData
:
seaBaseData
()
,
// 状态
// 状态
statusLabel
:
""
,
statusLabel
:
""
,
};
};
...
...
src/views/ecw/box/shippingSea/utils.js
View file @
a2327655
This diff is collapsed.
Click to expand it.
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