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
fcfeabcb
Commit
fcfeabcb
authored
Apr 23, 2023
by
houjn@hikoon.cn
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'predev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
26774114
578a4711
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
4 deletions
+29
-4
clrDocument.vue
src/views/ecw/box/shippingSea/nodePage/clrDocument.vue
+3
-1
ladingSelect.vue
...iews/ecw/box/shippingSea/nodePage/common/ladingSelect.vue
+21
-1
index.vue
src/views/ecw/box/shippingSea/nodePage/tally/index.vue
+4
-1
transferWarehousing.vue
src/views/ecw/order/transferWarehousing.vue
+1
-1
No files found.
src/views/ecw/box/shippingSea/nodePage/clrDocument.vue
View file @
fcfeabcb
...
...
@@ -107,7 +107,9 @@ export default {
cdOutBillType
:
oldData
.
cdOutBillType
===
0
?
undefined
:
oldData
.
cdOutBillType
,
};
if
(
!
this
.
$attrs
.
shipmentObj
.
clearanceDocInfo
){
this
.
$set
(
this
.
cDocObj
,
'
cdOutBillType
'
,
String
(
this
.
$attrs
.
shipmentObj
.
ladingBillInfo
?.
issueType
)
||
undefined
)
}
},
methods
:
{
/** 提交 */
...
...
src/views/ecw/box/shippingSea/nodePage/common/ladingSelect.vue
View file @
fcfeabcb
<
template
>
<el-select
filterable
:value=
"
value === 0 ? undefined : value
"
@
change=
"change"
v-bind=
"$attrs"
clearable
>
<el-select
filterable
:value=
"
company === 0 ? undefined : company
"
@
change=
"change"
v-bind=
"$attrs"
clearable
>
<el-option
v-for=
"user in getUser"
:key=
"user.id"
:value=
"user.id"
:label=
"$l(user, 'company')"
></el-option>
</el-select>
</
template
>
...
...
@@ -24,8 +24,28 @@ export default {
},
computed
:
{
getUser
()
{
this
.
allUsers
.
forEach
(
element
=>
{
if
(
!
element
.
companyEn
)
{
element
.
companyEn
=
element
.
companyZh
}
});
return
this
.
allUsers
;
},
company
:
{
get
()
{
return
this
.
value
},
set
(
val
)
{
this
.
$emit
(
"
change
"
,
val
);
}
}
},
created
()
{
this
.
company
=
this
.
value
let
com
=
this
.
getUser
.
findIndex
(
item
=>
item
.
id
==
this
.
company
)
if
(
com
==
-
1
){
this
.
company
=
0
}
},
methods
:
{
change
(
val
)
{
...
...
src/views/ecw/box/shippingSea/nodePage/tally/index.vue
View file @
fcfeabcb
...
...
@@ -34,7 +34,10 @@
{{
scope
.
row
.
orderNo
}}
</div>
<div
style=
"color:blue;fontWeight:bold;"
>
{{
scope
.
row
.
isExternalWarehouse
===
1
?
'
(外部仓)
'
:
''
}}
{{
scope
.
row
.
isExternalWarehouse
===
1
?
(
'
(
'
+
$t
(
'
外部仓
'
)
+
'
)
'
)
:
''
}}
</div>
<div
style=
"color:red;fontWeight:bold;"
>
{{
scope
.
row
.
adjustToDestWarehouseId
>
0
?
(
'
(
'
+
$t
(
'
调仓
'
)
+
'
)
'
)
:
''
}}
</div>
</
template
>
</el-table-column>
...
...
src/views/ecw/order/transferWarehousing.vue
View file @
fcfeabcb
...
...
@@ -236,7 +236,7 @@ export default {
id
:
this
.
params
.
id
,
logisticsCompany
:
this
.
params
.
logisticsCompany
,
logisticsNo
:
this
.
params
.
logisticsNo
,
phone
:
this
.
params
.
logisticsNo
,
phone
:
this
.
params
.
phone
,
urls
:
this
.
params
.
urls
,
}
}
,
...
...
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