Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
肖康
/
cloudSystem
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
52503759
authored
Feb 28, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
bd57dc72
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
src/App.vue
src/views/OrderTrack/invoice.vue
src/views/Store/listDetail.vue
src/App.vue
View file @
52503759
<
template
>
<
template
>
<div
id=
"app"
>
<div
id=
"app"
>
<keep-alive
exclude=
"InquireDetail,ListDetail,orderTrackGoodsDetail,orderTrackPurAdd,enter,list,inquire,quote"
>
<keep-alive
exclude=
"InquireDetail,ListDetail,orderTrackGoodsDetail,orderTrackPurAdd,enter,list,inquire,quote
,orderTrackInvoice
"
>
<router-view
class=
"router-view"
></router-view>
<router-view
class=
"router-view"
></router-view>
</keep-alive>
</keep-alive>
</div>
</div>
...
...
src/views/OrderTrack/invoice.vue
View file @
52503759
...
@@ -173,7 +173,15 @@ export default {
...
@@ -173,7 +173,15 @@ export default {
this
.
stock_in_sn
=
this
.
$route
.
query
.
stock_in_sn
||
''
;
this
.
stock_in_sn
=
this
.
$route
.
query
.
stock_in_sn
||
''
;
this
.
getData
();
this
.
getData
();
},
},
computed
:
{},
watch
:
{
$route
(
to
,
from
)
{
if
(
to
.
path
==
'/orderTrackInvoice'
)
{
this
.
purchase_id
=
this
.
$route
.
query
.
purchase_id
||
''
;
this
.
stock_in_sn
=
this
.
$route
.
query
.
stock_in_sn
||
''
;
this
.
getData
();
}
}
},
methods
:
{
methods
:
{
getData
()
{
getData
()
{
//格式化时间
//格式化时间
...
...
src/views/Store/listDetail.vue
View file @
52503759
...
@@ -173,6 +173,7 @@ export default {
...
@@ -173,6 +173,7 @@ export default {
arr
=
this
.
multipleSelection
.
map
(
obj
=>
{
arr
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
sku_id
;
return
obj
.
sku_id
;
});
});
this
.
$http
(
'POST'
,
"/api/sku/updateSkuStatus"
,
{
this
.
$http
(
'POST'
,
"/api/sku/updateSkuStatus"
,
{
sku_ids
:
arr
.
join
(
","
),
sku_ids
:
arr
.
join
(
","
),
status
:
status
==
1
?
'passed'
:
'offshelf'
status
:
status
==
1
?
'passed'
:
'offshelf'
...
...
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