Commit 575100f7 authored by 黄媛媛's avatar 黄媛媛

申请书审批页面

parent c5d53eaa
......@@ -301,6 +301,10 @@
<template>
<div class="page_bdm" v-if="GetDetail" v-loading="loading">
<p class="_tit">{{GetDetail.FinanceName}} <span style="color: red;" v-if="GetDetail.Status==4">已作废</span></p>
<div style="width: 890px;text-align: right;font-size:12px;cursor: pointer;color: #3980C8;" @click="goUrlApplication('Application',GetDetail.FrID)">
<span v-if="GetDetail.FApplyForNumber&&GetDetail.FApplyForNumber!=''">申请书{{GetDetail.FApplyForNumber}}下载</span>
<span v-else>未提交申请书</span>
</div>
<div class="_conten">
<template v-if="!otherTable">
<!-- 付款 -->
......@@ -2326,6 +2330,8 @@ export default {
}
this.chongJudge(data)
this.GetDetail = data;
console.log("this.GetDetail",this.GetDetail)
console.log("this.GetDetail.FApplyForNumber",this.GetDetail.FApplyForNumber)
if(this.GetDetail.DetailList.length>0){
this.GetDetail.DetailList.forEach(item=>{
......@@ -2526,6 +2532,15 @@ export default {
headCall: function (msg) { //回调方法,接收子组件传的参数
this.currentMoney = msg;
},
goUrlApplication(path, id) {
this.$router.push({
name: path,
query: {
id: id,
blank: "y"
}
});
},
goUrl(path, id,OrderId) {
this.$router.push({
name: path,
......
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