Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-app-operator-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lanbaoming
jiedao-app-operator-master
Commits
49e48606
Commit
49e48606
authored
May 23, 2022
by
wanglianghe
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'dev' of
http://gitlab.jdshangmen.com/jiedao-app/jiedao-app-operator
into dev
parents
9e69707b
30fd2c31
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
336 additions
and
0 deletions
+336
-0
currencyEcash.js
src/api/ecw/currencyEcash.js
+54
-0
index.vue
src/views/ecw/currencyEcash/index.vue
+282
-0
No files found.
src/api/ecw/currencyEcash.js
0 → 100644
View file @
49e48606
import
request
from
'
@/utils/request
'
// 创建E-Cash汇率单位
export
function
createCurrencyEcash
(
data
)
{
return
request
({
url
:
'
/ecw/currency-ecash/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新E-Cash汇率单位
export
function
updateCurrencyEcash
(
data
)
{
return
request
({
url
:
'
/ecw/currency-ecash/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除E-Cash汇率单位
export
function
deleteCurrencyEcash
(
id
)
{
return
request
({
url
:
'
/ecw/currency-ecash/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得E-Cash汇率单位
export
function
getCurrencyEcash
(
id
)
{
return
request
({
url
:
'
/ecw/currency-ecash/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得E-Cash汇率单位分页
export
function
getCurrencyEcashPage
(
query
)
{
return
request
({
url
:
'
/ecw/currency-ecash/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出E-Cash汇率单位 Excel
export
function
exportCurrencyEcashExcel
(
query
)
{
return
request
({
url
:
'
/ecw/currency-ecash/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/views/ecw/currencyEcash/index.vue
0 → 100644
View file @
49e48606
This diff is collapsed.
Click to expand it.
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