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
c2ce38e3
authored
Feb 28, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
css
parent
52503759
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
6 deletions
src/views/List/inquire.vue
src/views/OrderTrack/goods.vue
src/views/List/inquire.vue
View file @
c2ce38e3
...
...
@@ -116,7 +116,7 @@
<!--未成单-->
<span
v-if=
"scope.row.is_purchased == 0"
>
{{
scope
.
row
.
is_purchased_val
}}
</span>
<!--成单-->
<a
v-if=
"scope.row.is_purchased == 1"
class=
"alink"
:href=
"'/#/orderTrackGoods?inquiry_
item_id='+scope.row.id
"
>
{{
scope
.
row
.
is_purchased_val
}}
</a>
<a
v-if=
"scope.row.is_purchased == 1"
class=
"alink"
:href=
"'/#/orderTrackGoods?inquiry_
sn='+scope.row.inquiry_sn
"
>
{{
scope
.
row
.
is_purchased_val
}}
</a>
</
template
>
</el-table-column>
<el-table-column
prop=
"customer_tag"
label=
"客户性质"
width=
"80"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
...
...
src/views/OrderTrack/goods.vue
View file @
c2ce38e3
...
...
@@ -197,13 +197,17 @@ export default {
};
},
created
()
{
let
inquiry_sn
=
this
.
$route
.
query
.
inquiry_sn
;
this
.
inquiry_item_id
=
this
.
$route
.
query
.
inquiry_item_id
||
''
;
if
(
inquiry_sn
)
{
this
.
formInline
.
inquiry_sn
=
inquiry_sn
;
}
this
.
formInline
.
inquiry_sn
=
this
.
$route
.
query
.
inquiry_sn
||
''
;
this
.
getData
();
},
watch
:
{
$route
(
to
,
from
)
{
if
(
to
.
path
==
'/orderTrackGoods'
)
{
this
.
formInline
.
inquiry_sn
=
this
.
$route
.
query
.
inquiry_sn
||
''
;
this
.
getData
();
}
}
},
methods
:
{
getData
()
{
//格式化时间
...
...
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