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
a5606e24
Commit
a5606e24
authored
Jan 07, 2025
by
Smile
Committed by
wux
Jan 17, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
研发需求33 海运-预装+空运-分拣查看订单信息
parent
6ec2a648
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
8 deletions
+20
-8
preinstall.vue
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
+9
-3
preinstall.vue
src/views/ecw/box/shippingSea/nodePage/preinstall.vue
+11
-5
No files found.
src/views/ecw/box/shippingAir/nodePage/preinstall.vue
View file @
a5606e24
...
...
@@ -150,9 +150,9 @@
<
el
-
table
-
column
:
label
=
"
$t('序号')
"
align
=
"
center
"
prop
=
"
tidanNum
"
width
=
"
50
"
/>
<
el
-
table
-
column
:
label
=
"
$t('订单号')
"
align
=
"
center
"
prop
=
"
orderNo
"
width
=
"
120
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
div
>
<
el
-
link
type
=
"
primary
"
@
click
=
"
orderHandleClick(scope.row)
"
>
{{
scope
.
row
.
orderNo
}}
<
/
div
>
<
/
el-link
>
<
div
style
=
"
color:blue;fontWeight:bold;
"
>
{{
scope
.
row
.
isExternalWarehouse
===
1
?
'
(
'
+
$t
(
'
外部仓
'
)
+
'
)
'
:
''
}}
<
/div
>
...
...
@@ -245,7 +245,9 @@
<
el
-
row
v
-
for
=
"
(item, index) in toBePreList
"
:
key
=
"
index
"
class
=
"
tobePre-row
"
>
<
el
-
row
class
=
"
preinstall-title order-title
"
>
<
div
>
<
p
>
{{
item
.
orderNo
}}
<
/p
>
<
el
-
link
type
=
"
primary
"
@
click
=
"
orderHandleClick(item)
"
>
{{
item
.
orderNo
}}
<
/el-link
>
<
/div
>
<
div
>
<
p
>
{{
$t
(
'
发往
'
)
}}
:
<
/p
>
...
...
@@ -557,6 +559,10 @@ export default {
getChannelList
().
then
((
res
)
=>
(
this
.
channelList
=
res
.
data
));
}
,
methods
:
{
orderHandleClick
(
row
){
const
routeData
=
this
.
$router
.
resolve
({
path
:
'
/order/detail
'
,
query
:{
orderId
:
row
.
orderId
}}
);
window
.
open
(
routeData
.
href
,
'
_blank
'
);
}
,
formatDate
,
getTotlContent
,
selectChannel
(){
...
...
src/views/ecw/box/shippingSea/nodePage/preinstall.vue
View file @
a5606e24
...
...
@@ -123,9 +123,9 @@
<
el
-
table
-
column
:
label
=
"
$t('序号')
"
align
=
"
center
"
prop
=
"
tidanNum
"
width
=
"
50
"
/>
<
el
-
table
-
column
:
label
=
"
$t('订单号')
"
align
=
"
center
"
prop
=
"
orderNo
"
width
=
"
120
"
>
<
template
slot
-
scope
=
"
scope
"
>
<
div
>
<
el
-
link
type
=
"
primary
"
@
click
=
"
orderHandleClick(scope.row)
"
>
{{
scope
.
row
.
orderNo
}}
<
/
div
>
<
/
el-link
>
<
div
style
=
"
color:blue;fontWeight:bold;
"
>
{{
scope
.
row
.
isExternalWarehouse
===
1
?
'
(
'
+
$t
(
'
外部仓
'
)
+
'
)
'
:
''
}}
<
/div
>
...
...
@@ -211,7 +211,9 @@
<
el
-
row
v
-
for
=
"
(item, index) in toBePreList
"
:
key
=
"
index
"
class
=
"
tobePre-row
"
>
<
el
-
row
class
=
"
preinstall-title order-title
"
>
<
div
>
<
p
>
{{
item
.
orderNo
}}
<
/p
>
<
el
-
link
type
=
"
primary
"
@
click
=
"
orderHandleClick(item)
"
>
{{
item
.
orderNo
}}
<
/el-link
>
<
/div
>
<
div
>
<
p
>
{{
$t
(
'
发往
'
)
}}
:
<
/p
>
...
...
@@ -488,6 +490,10 @@ export default {
this
.
smartInstall
=
0
;
}
,
methods
:
{
orderHandleClick
(
row
){
const
routeData
=
this
.
$router
.
resolve
({
path
:
'
/order/detail
'
,
query
:{
orderId
:
row
.
orderId
}}
);
window
.
open
(
routeData
.
href
,
'
_blank
'
);
}
,
formatDate
,
getTotlContent
,
/* 获取城市 */
...
...
@@ -553,7 +559,7 @@ export default {
this
.
relationOrderListDialog
.
visible
=
true
this
.
relationOrderListDialog
.
data
=
res
.
msg
.
replace
(
/
\n
/g
,
'
<br>
'
)
}
)
}
,
/** 搜索按钮操作 */
handleQuery
(
type
)
{
...
...
@@ -759,7 +765,7 @@ export default {
this
.
queryAllData
();
}
);
}
if
(
res
.
code
===
566
)
{
this
.
$confirm
(
res
.
msg
+
this
.
$t
(
'
是否需要一起预装?
'
),
this
.
$t
(
"
提示
"
),
{
dangerouslyUseHTMLString
:
true
,
...
...
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