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
06909778
authored
Jan 13, 2025
by
LJM
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
bug
parent
cc7edfc2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
4 deletions
src/views/billManagement/reconciledBill.vue
src/views/billManagement/reconciledBillDetail.vue
src/views/billManagement/reconciledBill.vue
View file @
06909778
...
...
@@ -30,7 +30,7 @@
<el-table-column
type=
"index"
label=
"序号"
width=
"50"
align=
"center"
fixed
></el-table-column>
<el-table-column
prop=
"bill_sn"
label=
"账单号"
width=
"120"
:show-overflow-tooltip=
"true"
align=
"center"
>
<template
slot-scope=
"scope"
>
<el-link
type=
"primary"
:underline=
"false"
@
click=
"$router.push(
{path: '/reconciledBillDetail', query: {bill_id: scope.row.bill_id}})" style="font-size: 12px;">
{{
scope
.
row
.
bill_sn
}}
</el-link>
<el-link
type=
"primary"
:underline=
"false"
@
click=
"$router.push(
{path: '/reconciledBillDetail', query: {bill_id: scope.row.bill_id
,bill_sn:scope.row.bill_sn
}})" style="font-size: 12px;">
{{
scope
.
row
.
bill_sn
}}
</el-link>
</
template
>
</el-table-column>
<el-table-column
prop=
"bill_name"
label=
"账单名称"
min-width=
"170"
:show-overflow-tooltip=
"true"
align=
"center"
></el-table-column>
...
...
@@ -160,7 +160,7 @@ export default {
*/
exportVerifiedBill
()
{
let
bill_id
=
this
.
multipleSelection
.
map
(
item
=>
item
.
bill_id
).
join
(
','
);
let
url
=
NODE_ENVS
+
'/api/bill/exportVerifiedBill?bill_id='
+
bill_id
+
'&token='
+
Tool
.
getCookie
(
'token'
);
let
url
=
NODE_ENVS
+
'/api/bill/exportVerifiedBill?
type=2&
bill_id='
+
bill_id
+
'&token='
+
Tool
.
getCookie
(
'token'
);
Tool
.
openNewWindow
(
url
);
}
},
...
...
src/views/billManagement/reconciledBillDetail.vue
View file @
06909778
...
...
@@ -59,16 +59,19 @@ export default {
total
:
0
,
page
:
1
,
limit
:
10
,
list
:
[]
list
:
[],
bill_id
:
''
,
bill_sn
:
''
};
},
created
()
{
this
.
bill_id
=
this
.
$route
.
query
.
bill_id
;
this
.
bill_sn
=
this
.
$route
.
query
.
bill_sn
;
this
.
getData
()
},
methods
:
{
getData
()
{
this
.
$http
(
'GET'
,
"/api/bill/getVerifiedBillDetail"
,
{
bill_id
:
this
.
bill_id
,
page
:
this
.
page
,
limit
:
this
.
limit
}).
then
(
res
=>
{
this
.
$http
(
'GET'
,
"/api/bill/getVerifiedBillDetail"
,
{
bill_id
:
this
.
bill_id
,
bill_sn
:
this
.
bill_sn
,
page
:
this
.
page
,
limit
:
this
.
limit
}).
then
(
res
=>
{
if
(
res
.
code
===
0
)
{
this
.
detailData
=
res
.
data
.
bill_info
;
this
.
list
=
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