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
b1565943
Commit
b1565943
authored
Jul 08, 2023
by
我在何方
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
汇率2.2
parent
1bc04407
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
320 additions
and
0 deletions
+320
-0
exchangeRate.js
src/api/ecw/exchangeRate.js
+54
-0
index.vue
src/views/ecw/exchangeRate/index.vue
+263
-0
creatCollection.vue
src/views/ecw/financial/creatCollection.vue
+3
-0
No files found.
src/api/ecw/exchangeRate.js
0 → 100644
View file @
b1565943
import
request
from
'
@/utils/request
'
// 创建汇率管理
export
function
createExchangeRate
(
data
)
{
return
request
({
url
:
'
/ecw/exchange-rate/create
'
,
method
:
'
post
'
,
data
:
data
})
}
// 更新汇率管理
export
function
updateExchangeRate
(
data
)
{
return
request
({
url
:
'
/ecw/exchange-rate/update
'
,
method
:
'
put
'
,
data
:
data
})
}
// 删除汇率管理
export
function
deleteExchangeRate
(
id
)
{
return
request
({
url
:
'
/ecw/exchange-rate/delete?id=
'
+
id
,
method
:
'
delete
'
})
}
// 获得汇率管理
export
function
getExchangeRate
(
id
)
{
return
request
({
url
:
'
/ecw/exchange-rate/get?id=
'
+
id
,
method
:
'
get
'
})
}
// 获得汇率管理分页
export
function
getExchangeRatePage
(
query
)
{
return
request
({
url
:
'
/ecw/exchange-rate/page
'
,
method
:
'
get
'
,
params
:
query
})
}
// 导出汇率管理 Excel
export
function
exportExchangeRateExcel
(
query
)
{
return
request
({
url
:
'
/ecw/exchange-rate/export-excel
'
,
method
:
'
get
'
,
params
:
query
,
responseType
:
'
blob
'
})
}
src/views/ecw/exchangeRate/index.vue
0 → 100644
View file @
b1565943
This diff is collapsed.
Click to expand it.
src/views/ecw/financial/creatCollection.vue
View file @
b1565943
...
...
@@ -558,6 +558,7 @@
>
<
el
-
table
-
column
type
=
"
selection
"
width
=
"
55
"
:
reserve
-
selection
=
"
true
"
>
<
/el-table-column
>
<
el
-
table
-
column
:
label
=
"
$t('订单号')
"
align
=
"
center
"
prop
=
"
orderNo
"
/>
<
el
-
table
-
column
:
label
=
"
$t('自编号')
"
align
=
"
center
"
prop
=
"
selfNo
"
/>
<
el
-
table
-
column
:
label
=
"
$t('唛头')
"
align
=
"
center
"
prop
=
"
marks
"
/>
<
el
-
table
-
column
:
label
=
"
$t('品名')
"
align
=
"
center
"
prop
=
"
title
"
>
<
template
slot
-
scope
=
"
scope
"
>
...
...
@@ -1350,11 +1351,13 @@ export default {
}
,
/** 新增按钮操作 */
handleAdd
()
{
this
.
queryParams
.
consignorId
=
this
.
form
.
customerId
this
.
multipleSelection
=
this
.
list
this
.
open
=
true
;
}
,
hiddenDialog
()
{
this
.
open
=
false
;
this
.
queryParams
.
consignorId
=
''
}
,
changePlatformAccountId
(
platformAccountId
,
index
){
this
.
form
.
receiptAccountList
[
index
].
platformAccountId
=
platformAccountId
...
...
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