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

发票

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