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
f1b0558d
Commit
f1b0558d
authored
May 27, 2019
by
华国豪
🙄
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用款计划新增挂账单
parent
4a074cb4
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
53 additions
and
4 deletions
+53
-4
leaderReimbursement.vue
src/components/LeaderManagement/leaderReimbursement.vue
+53
-4
No files found.
src/components/LeaderManagement/leaderReimbursement.vue
View file @
f1b0558d
...
...
@@ -96,7 +96,7 @@
</div>
</td>
</tr>
<tr>
<tr
v-if=
"TotalNav.reimburseTotalPrice"
>
<td>
总金额
</td>
<td
colspan=
"7"
>
{{
moneyFormat
(
TotalNav
.
reimburseTotalPrice
.
SelfPayingExpendTotalPrice
)
}}
...
...
@@ -187,7 +187,7 @@
</tr>
</
template
>
</template>
<tr>
<tr
v-if=
"TotalNav.reimburseTotalPrice"
>
<td>
总金额
</td>
<td
colspan=
"6"
>
{{moneyFormat(TotalNav.reimburseTotalPrice.ExpendTotalPrice)}}
...
...
@@ -258,7 +258,7 @@
</tr>
</
template
>
</template>
<tr>
<tr
v-if=
"TotalNav.reimburseTotalPrice"
>
<td>
总金额
</td>
<td
colspan=
"5"
>
{{moneyFormat(TotalNav.reimburseTotalPrice.IncomeTotalPrice)}}
...
...
@@ -331,7 +331,7 @@
</tr>
</
template
>
</template>
<tr>
<tr
v-if=
"TotalNav.reimburseTotalPrice"
>
<td>
总金额
</td>
<td
colspan=
"5"
>
{{moneyFormat(TotalNav.reimburseTotalPrice.OtherTotalPrice)}}
...
...
@@ -343,6 +343,40 @@
</tr>
</table>
<table
class=
"leaderReimbursementTable"
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
>
<tr>
<th>
单号
</th>
<th>
挂账金额
</th>
<th>
挂账类型
</th>
<th>
挂账对象
</th>
<th>
单据状态
</th>
<th>
创建时间
</th>
<th>
创建人
</th>
</tr>
<tr
v-for=
"item in HangingList"
>
<td>
<span>
{{item.FrID}}
</span>
</td>
<td>
<span>
{{item.Money}}
</span>
</td>
<td>
<span>
{{item.HangingAccountsTypeStr}}
</span>
</td>
<td>
<span>
{{item.RemitterName}}:{{item.AccountNumber}}
</span>
</td>
<td>
<span>
{{item.StatusStr}}
</span>
</td>
<td>
<span>
{{item.CreateDateStr}}
</span>
</td>
<td>
<span>
{{item.createByStr}}
</span>
</td>
</tr>
</table>
<table
class=
"leaderReimbursementTable"
border=
"0"
cellspacing=
"1"
cellpadding=
"0"
>
<tr>
<th>
预付合计
</th>
...
...
@@ -411,9 +445,23 @@
NewCombinationNum
:
''
,
TotalNav
:
[],
LeaderGetPrice
:
0
,
HangingList
:
[]
}
},
methods
:
{
getHangingAccountByTCIDList
:
function
()
{
this
.
apipost
(
'Financial_post_GetHangingAccountByTCIDList'
,
{
TCIDs
:
this
.
$route
.
query
.
id
},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
HangingList
=
res
.
data
.
data
}
},
err
=>
{}
)
},
goFncUrl
:
function
(
path
,
id
)
{
this
.
$router
.
push
({
name
:
path
,
...
...
@@ -668,6 +716,7 @@
this
.
NewCombinationNum
=
this
.
$route
.
query
.
NewCombinationNum
;
this
.
getList
();
this
.
getTotalNav
();
this
.
getHangingAccountByTCIDList
()
}
}
...
...
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