给报表中的单据展示界面去掉反审核按钮

This commit is contained in:
季圣华
2022-11-13 15:59:06 +08:00
parent fba84d4581
commit 60b332ca94
8 changed files with 12 additions and 39 deletions

View File

@@ -146,6 +146,7 @@
if(record.fromType === 'bill') {
findBillDetailByNumber({ number: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.billDetail.isCanBackCheck = false
that.$refs.billDetail.show(res.data, record.type);
that.$refs.billDetail.title="详情";
}
@@ -153,6 +154,7 @@
} else if(record.fromType === 'financial') {
findFinancialDetailByNumber({ billNo: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.financialDetail.isCanBackCheck = false
that.$refs.financialDetail.show(res.data, record.type);
that.$refs.financialDetail.title="详情";
}

View File

@@ -158,6 +158,7 @@
if (res && res.code === 200) {
let type = res.data.depotHeadType
type = type.replace('其它','')
this.$refs.modalDetail.isCanBackCheck = false
this.handleDetail(res.data, type)
}
})

View File

@@ -119,6 +119,7 @@
this.toFromType = record.fromType
findBillDetailByNumber({ number: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.billDetail.isCanBackCheck = false
that.$refs.billDetail.show(res.data, record.type);
that.$refs.billDetail.title="详情";
}