Commit 33fe6e80 authored by 季圣华's avatar 季圣华
Browse files

解决对账单的单据点击弹出失败的bug

parent a5230801
......@@ -181,7 +181,7 @@
this.queryParam.endTime=dateString[1];
},
myHandleDetail(record) {
if(record.type === '收入' || record.type === '收款') {
if(record.type === '收入' || record.type === '支出' || record.type === '收款') {
findFinancialDetailByNumber({ billNo: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.modalFinancialDetail.show(res.data, record.type);
......
......@@ -181,7 +181,7 @@
this.queryParam.endTime=dateString[1];
},
myHandleDetail(record) {
if(record.type === '支出' || record.type === '付款') {
if(record.type === '收入' || record.type === '支出' || record.type === '付款') {
findFinancialDetailByNumber({ billNo: record.number }).then((res) => {
if (res && res.code === 200) {
this.$refs.modalFinancialDetail.show(res.data, record.type);
......
Supports Markdown
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