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
00945683
authored
Feb 22, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
js
parent
2bb18ad3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
16 additions
and
4 deletions
src/views/List/inquire.vue
src/views/OrderTrack/goods.vue
src/views/List/inquire.vue
View file @
00945683
...
...
@@ -86,7 +86,7 @@
<el-table-column
prop=
"delivery_time"
label=
"交货日期"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
<el-table-column
prop=
"quote_num"
label=
"报价数"
width=
"80"
:show-overflow-tooltip=
"true"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<span
style=
"color: #1969F9;"
>
{{
scope
.
row
.
quote_num
}}
</span>
<span
style=
"color: #1969F9;"
>
{{
scope
.
row
.
quote_num
}}
</span>
</
template
>
</el-table-column>
<el-table-column
prop=
"i_status"
label=
"状态"
width=
"100"
:show-overflow-tooltip=
"true"
align=
"center"
>
...
...
@@ -113,7 +113,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_
sn='+scope.row.inquiry_sn
"
>
{{
scope
.
row
.
is_purchased_val
}}
</a>
<a
v-if=
"scope.row.is_purchased == 1"
class=
"alink"
:href=
"'/#/orderTrackGoods?inquiry_
item_id='+scope.row.id
"
>
{{
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>
...
...
@@ -160,7 +160,17 @@
</
template
>
</el-table-column>
<el-table-column
prop=
"expire_time"
label=
"报价有效期"
width=
"160"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
<el-table-column
prop=
"buyer_info"
label=
"猎芯采购员"
width=
"100"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
<el-table-column
prop=
"buyer_info"
label=
"猎芯采购员"
width=
"100"
:show-overflow-tooltip=
"true"
align=
"center"
>
<
template
slot-scope=
"scope"
>
<el-popover
placement=
"bottom"
title=
"采购员联系方式"
width=
"200"
trigger=
"hover"
>
<div
class=
"contact-information"
>
<p
class=
"row verCenter"
><em>
电话:
</em><span>
{{
scope
.
row
.
buyer_info
.
mobile
}}
</span></p>
<p
class=
"row verCenter"
><em>
邮箱:
</em><span>
{{
scope
.
row
.
buyer_info
.
email
}}
</span></p>
</div>
<a
slot=
"reference"
href=
"javascript:;"
class=
"alink"
>
{{
scope
.
row
.
buyer_info
.
buyer_name
}}
</a>
</el-popover>
</
template
>
</el-table-column>
<el-table-column
prop=
"goods_name"
label=
"报价型号"
width=
"150"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
<el-table-column
prop=
"brand_name"
label=
"品牌"
width=
"100"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
<el-table-column
prop=
"status"
label=
"状态"
width=
"100"
:show-overflow-tooltip=
"true"
align=
"center"
>
...
...
src/views/OrderTrack/goods.vue
View file @
00945683
...
...
@@ -176,6 +176,7 @@ export default {
dialogVisible
:
false
,
logs
:
[],
create_time_val
:
''
,
inquiry_item_id
:
''
,
//询价id
formInline
:
{
goods_name
:
''
,
brand_name
:
''
,
...
...
@@ -194,6 +195,7 @@ 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
;
}
...
...
@@ -208,7 +210,7 @@ export default {
}
else
{
this
.
formInline
.
create_time
=
''
;
}
var
params
=
Object
.
assign
({},
{
page
:
this
.
page
},
{
limit
:
this
.
limit
},
this
.
formInline
)
var
params
=
Object
.
assign
({},
{
page
:
this
.
page
},
{
limit
:
this
.
limit
},
this
.
formInline
,
{
inquiry_item_id
:
this
.
inquiry_item_id
}
)
this
.
$http
(
'post'
,
"/api/purchase/getPurchaseList"
,
params
).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
tableData
=
res
.
data
.
list
||
[];
...
...
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