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
85516c94
authored
Feb 21, 2023
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
css
parent
8a9de44f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
1 deletions
src/views/InquireTransform/index.vue
src/views/InquireTransform/index.vue
View file @
85516c94
...
...
@@ -37,7 +37,7 @@
<!--操作区-->
<div
class=
"operation-area row verCenter bothSide"
>
<div
class=
"operation-button row verCenter"
>
<el-button
type=
"primary"
>
导出
</el-button>
<el-button
type=
"primary"
@
click=
"exportChange"
>
导出
</el-button>
<div
class=
"text-tip row verCenter"
>
<i
class=
"el-icon-warning"
></i>
<span>
该页面展示的数据为:统计我司上传的型号获得询价及最终转化成单的情况
</span>
...
...
@@ -142,6 +142,9 @@
import
Vue
from
'vue'
;
import
Menu
from
"@/components/menu.vue"
;
import
{
Autocomplete
,
Button
,
DatePicker
,
Descriptions
,
DescriptionsItem
,
Dialog
,
Divider
,
Dropdown
,
DropdownItem
,
DropdownMenu
,
Form
,
FormItem
,
Input
,
Message
,
MessageBox
,
Option
,
Pagination
,
Popover
,
Radio
,
RadioButton
,
RadioGroup
,
Select
,
Table
,
TableColumn
,
Tabs
,
Tag
,
Tooltip
}
from
'element-ui'
import
Tool
from
"@/tool"
;
import
{
NODE_ENVS
}
from
"@/ajax"
;
import
qs
from
'qs'
;
Vue
.
prototype
.
$message
=
Message
Vue
.
prototype
.
$confirm
=
MessageBox
.
confirm
;
...
...
@@ -240,6 +243,15 @@ 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
);
const
newsUrl
=
this
.
$router
.
resolve
(
url
);
window
.
open
(
url
);
},
/**
* 自定义排序
*/
sortChange
(
column
,
key
,
order
)
{
...
...
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