Commit d955df8d authored by youjie's avatar youjie

no message

parent e0ed02e4
......@@ -358,7 +358,9 @@
<el-table-column
label="单号"
width="120">
<template slot-scope="scope">{{ scope.row.FrID }}</template>
<template slot-scope="scope">
<span style="cursor: pointer;color: #00C6FF;" @click="openDetails(scope.row)">{{ scope.row.FrID }}</span>
</template>
</el-table-column>
<el-table-column
prop="name"
......@@ -740,6 +742,17 @@ export default {
var that = this;
},
methods:{
// 单据详情
openDetails(item) {
let query = {
id: item.FrID,
blank: "y",
};
this.$router.push({
path: "/FinancialDocumentsDetail",
query
});
},
selectable(row, index){
if (!this.DataList[index].ReFinanceId) {
return true;
......
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