Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
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
罗超
SuperMan
Commits
26a4eb72
Commit
26a4eb72
authored
Jul 15, 2024
by
liudong1993
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1
parent
ad51948c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
44 additions
and
2 deletions
+44
-2
czBillModule.vue
...nents/FinancialModule/FinancialSubmodule/czBillModule.vue
+44
-2
No files found.
src/components/FinancialModule/FinancialSubmodule/czBillModule.vue
View file @
26a4eb72
...
...
@@ -264,6 +264,31 @@
</table>
</div>
</div>
<div
v-if=
"OtherType==82"
>
<div
class=
"_tit"
>
<span
class=
"_text"
>
车辆信息
</span>
<div>
<span
class=
"_btn"
v-if=
"tableShow"
@
click=
"tableShow=false"
>
{{
$t
(
'fnc.shouqi'
)
}}
<i
class=
"iconfont icon-gengduo _rotate"
></i>
</span>
<span
class=
"_btn"
v-else
@
click=
"tableShow=true"
>
{{
$t
(
'fnc.zhankai'
)
}}
<i
class=
"iconfont icon-gengduo"
></i>
</span>
</div>
</div>
<div
v-show=
"tableShow"
class=
"sanjiao-box _padding_20_15"
>
<table
border=
"1"
class=
"czBillModule _border_color_b Receipt_table"
bordercolor=
"#c94052"
style=
"border-collapse:collapse;width: 100%;"
v-loading=
'loading'
>
<tr>
<th>
车名
</th>
<th>
车牌号
</th>
<th>
座位数
</th>
<th>
供应商
</th>
</tr>
<tr
class=
"_color_b"
>
<td>
{{
JapanCarModel
.
CarName
}}
</td>
<th>
{{
JapanCarModel
.
CarNo
}}
</th>
<th>
{{
JapanCarModel
.
CarSeatNum
}}
</th>
<th>
{{
JapanCarModel
.
SupplierName
}}
</th>
</tr>
</table>
</div>
</div>
</div>
</
template
>
...
...
@@ -293,7 +318,8 @@ export default {
ReceiptModel
:{},
IsFinancePermission
:
false
,
Area_Name
:
''
,
matchTransferList
:
[]
matchTransferList
:
[],
JapanCarModel
:
{}
}
},
watch
:{
'GetDetail'
:
{
...
...
@@ -369,6 +395,8 @@ export default {
this
.
getyfTableList
()
}
else
if
(
this
.
IsAdvanceFinance
==
1
){
this
.
getczTableList
();
}
else
if
(
this
.
OtherType
==
82
){
this
.
getJapanCarDetails
();
}
},
goTravelControlList
(
id
){
...
...
@@ -433,7 +461,6 @@ export default {
},
// OtherType=7详情
getDetails
(){
console
.
log
(
'---====22'
)
this
.
loading
=
true
;
let
msg
=
{
pageIndex
:
1
,
...
...
@@ -451,6 +478,21 @@ export default {
this
.
czList
=
data
;
}
},
null
)
},
//获取车行车辆信息
getJapanCarDetails
(){
this
.
loading
=
true
;
let
msg
=
{
Id
:
this
.
ReFinanceId
};
this
.
apipost
(
'JapanCar_get_GetCar'
,
msg
,
res
=>
{
this
.
loading
=
false
if
(
res
.
data
.
resultCode
==
1
)
{
let
data
=
res
.
data
.
data
;
this
.
JapanCarModel
=
data
;
}
},
null
)
}
}
}
...
...
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