Commit 2030c455 authored by liudong1993's avatar liudong1993

1

parent e5d24f62
...@@ -157,7 +157,7 @@ ...@@ -157,7 +157,7 @@
<p class="_jump_page" @click="jumpPage('productQuery',tc.TCID,1)">{{tc.TCNUM}}({{tc.TCID}})</p> <p class="_jump_page" @click="jumpPage('productQuery',tc.TCID,1)">{{tc.TCNUM}}({{tc.TCID}})</p>
</template> </template>
</td> </td>
<td height="34px">{{item.FinanceId}}</td> <td height="34px"><span class="_jump_page" @click="openDetails(item.FinanceId)">{{item.FinanceId}}</span></td>
<td height="34px">{{item.CostTypeName}}</td> <td height="34px">{{item.CostTypeName}}</td>
<!--<td height="34px">{{item.Number}}</td>--> <!--<td height="34px">{{item.Number}}</td>-->
<!--<td height="34px">{{item.UnitPrice}}</td>--> <!--<td height="34px">{{item.UnitPrice}}</td>-->
...@@ -305,6 +305,17 @@ ...@@ -305,6 +305,17 @@
} }
}, err => {}) }, err => {})
}, },
// 单据详情
openDetails(FrId) {
let query = {
id: FrId,
blank: "y",
};
this.$router.push({
path: "/FinancialDocumentsDetail",
query
});
},
},mounted(){ },mounted(){
const myDate = new Date(); const myDate = new Date();
......
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