Commit d955df8d authored by youjie's avatar youjie

no message

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