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
e440b1c4
authored
Feb 28, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
9135714e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
src/views/List/quote.vue
src/views/OrderTrack/goods.vue
src/views/List/quote.vue
View file @
e440b1c4
...
...
@@ -76,8 +76,6 @@
</el-table-column>
<el-table-column
prop=
"inquiry_brand_name"
label=
"品牌"
width=
"200"
align=
"center"
:show-overflow-tooltip=
"true"
></el-table-column>
<el-table-column
prop=
"inquiry_sn"
label=
"询价单号"
width=
"200"
align=
"center"
:show-overflow-tooltip=
"true"
></el-table-column>
<el-table-column
prop=
"quote_goods_name"
label=
"报价型号"
width=
"200"
align=
"center"
:show-overflow-tooltip=
"true"
></el-table-column>
<el-table-column
prop=
"quote_brand_name"
label=
"报价品牌"
width=
"200"
align=
"center"
:show-overflow-tooltip=
"true"
></el-table-column>
<el-table-column
prop=
"unchecked_reason"
label=
"原因"
width=
"100"
align=
"center"
:show-overflow-tooltip=
"true"
></el-table-column>
<el-table-column
prop=
"status"
label=
"状态"
width=
"100"
align=
"center"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
...
...
@@ -94,7 +92,7 @@
</el-table-column>
<el-table-column
prop=
"expire_status_val"
label=
"报价是否有效"
width=
"100"
align=
"center"
:show-overflow-tooltip=
"true"
>
<
template
slot-scope=
"scope"
>
<span>
{{
scope
.
row
.
expire_status_val
}}
</span>
<span>
{{
scope
.
row
.
expire_status_val
}}
</span>
<el-tooltip
:aa=
"scope"
class=
"item"
effect=
"dark"
placement=
"top-start"
>
<i
class=
"el-icon-question"
style=
"color:#ff7e11;margin-left:5px;cursor:pointer;font-size:16px;"
></i>
<div
slot=
"content"
>
{{
scope
.
row
.
expire_status_tips
}}
</div>
...
...
@@ -599,10 +597,10 @@ export default {
return
;
}
if
(
this
.
multipleSelection
[
0
].
quote_status
!=
1
)
{
if
(
this
.
multipleSelection
[
0
].
quote_status
!=
1
&&
this
.
multipleSelection
[
0
].
quote_status
!=
7
)
{
this
.
$message
({
showClose
:
true
,
message
:
'请勾选状态为确认中'
,
message
:
'请勾选状态为确认中
和待确认
'
,
type
:
'warning'
});
return
;
...
...
src/views/OrderTrack/goods.vue
View file @
e440b1c4
...
...
@@ -269,8 +269,11 @@ export default {
* 导出
*/
exportChange
()
{
var
params
=
Object
.
assign
({},
{
token
:
Tool
.
getCookie
(
'token'
)},
this
.
formInline
,
{
is_export
:
1
})
var
url
=
NODE_ENVS
+
'/api/statistics/inquiryChangeStatisticsList?'
+
qs
.
stringify
(
params
);
var
ids
=
this
.
multipleSelection
.
map
(
obj
=>
{
return
obj
.
purchase_id
;
});
var
params
=
Object
.
assign
({},
{
token
:
Tool
.
getCookie
(
'token'
)},{
ids
:
ids
.
join
(
','
)})
var
url
=
NODE_ENVS
+
'/api/purchase/export?'
+
qs
.
stringify
(
params
);
const
newsUrl
=
this
.
$router
.
resolve
(
url
);
window
.
open
(
url
);
},
...
...
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