给报表中的单据展示界面去掉反审核按钮
This commit is contained in:
@@ -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="详情";
|
||||
}
|
||||
|
||||
@@ -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)
|
||||
}
|
||||
})
|
||||
|
||||
@@ -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="详情";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user