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

发票

parent fb1c551e
......@@ -104,7 +104,7 @@
</td>
</tr>
</table>
<div class="iis_save">
<div class="iis_save" v-if="noDetail">
<button class="normalBtn" @click="setStatus(3)">通过</button>
<button class="normalBtn" @click="dialogFormVisible = true">拒绝</button>
</div>
......@@ -134,7 +134,8 @@ export default {
RefuseRemarks: '',
ID: 0,
InvoiceApplyState: 0,
}
},
noDetail: false,
};
},
methods: {
......@@ -194,6 +195,7 @@ export default {
},
mounted() {
let id = this.$route.query.id
this.noDetail = this.$route.query.noDetail ? true : false
this.msg.ID = id
this.getDetail(id)
}
......
......@@ -2126,7 +2126,7 @@
goIisDetail: function (id) { // 跳转发票详情页面
this.$router.push({
name: 'invoicesManagerDetail',
query: { id: id,blank: "y",}
query: { id: id,noDetail: 1,blank: "y",}
});
},
// 申请发票
......
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