Commit f1b0558d authored by 华国豪's avatar 华国豪 🙄

用款计划新增挂账单

parent 4a074cb4
...@@ -96,7 +96,7 @@ ...@@ -96,7 +96,7 @@
</div> </div>
</td> </td>
</tr> </tr>
<tr> <tr v-if="TotalNav.reimburseTotalPrice">
<td>总金额</td> <td>总金额</td>
<td colspan="7"> <td colspan="7">
{{moneyFormat(TotalNav.reimburseTotalPrice.SelfPayingExpendTotalPrice)}} {{moneyFormat(TotalNav.reimburseTotalPrice.SelfPayingExpendTotalPrice)}}
...@@ -187,7 +187,7 @@ ...@@ -187,7 +187,7 @@
</tr> </tr>
</template> </template>
</template> </template>
<tr> <tr v-if="TotalNav.reimburseTotalPrice">
<td>总金额</td> <td>总金额</td>
<td colspan="6"> <td colspan="6">
{{moneyFormat(TotalNav.reimburseTotalPrice.ExpendTotalPrice)}} {{moneyFormat(TotalNav.reimburseTotalPrice.ExpendTotalPrice)}}
...@@ -258,7 +258,7 @@ ...@@ -258,7 +258,7 @@
</tr> </tr>
</template> </template>
</template> </template>
<tr> <tr v-if="TotalNav.reimburseTotalPrice">
<td>总金额</td> <td>总金额</td>
<td colspan="5"> <td colspan="5">
{{moneyFormat(TotalNav.reimburseTotalPrice.IncomeTotalPrice)}} {{moneyFormat(TotalNav.reimburseTotalPrice.IncomeTotalPrice)}}
...@@ -331,7 +331,7 @@ ...@@ -331,7 +331,7 @@
</tr> </tr>
</template> </template>
</template> </template>
<tr> <tr v-if="TotalNav.reimburseTotalPrice">
<td>总金额</td> <td>总金额</td>
<td colspan="5"> <td colspan="5">
{{moneyFormat(TotalNav.reimburseTotalPrice.OtherTotalPrice)}} {{moneyFormat(TotalNav.reimburseTotalPrice.OtherTotalPrice)}}
...@@ -343,6 +343,40 @@ ...@@ -343,6 +343,40 @@
</tr> </tr>
</table> </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"> <table class="leaderReimbursementTable" border="0" cellspacing="1" cellpadding="0">
<tr> <tr>
<th>预付合计</th> <th>预付合计</th>
...@@ -411,9 +445,23 @@ ...@@ -411,9 +445,23 @@
NewCombinationNum: '', NewCombinationNum: '',
TotalNav: [], TotalNav: [],
LeaderGetPrice: 0, LeaderGetPrice: 0,
HangingList: []
} }
}, },
methods: { 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) { goFncUrl: function (path, id) {
this.$router.push({ this.$router.push({
name: path, name: path,
...@@ -668,6 +716,7 @@ ...@@ -668,6 +716,7 @@
this.NewCombinationNum = this.$route.query.NewCombinationNum; this.NewCombinationNum = this.$route.query.NewCombinationNum;
this.getList(); this.getList();
this.getTotalNav(); this.getTotalNav();
this.getHangingAccountByTCIDList()
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment