Commit 67713c81 by 李少勇

sndsel 交易跳转增加

parent f13b7f76
...@@ -146,7 +146,8 @@ ...@@ -146,7 +146,8 @@
<el-tabs v-model="activeTab" class="y-tabs"> <el-tabs v-model="activeTab" class="y-tabs">
<el-tab-pane label="发报查询" name="fb"> <el-tab-pane label="发报查询" name="fb">
<el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%" <el-table :data="stmData.data" :columns="stmData.columns" v-loading="load" style="width: 100%"
@selection-change="handleSelectionChange" @selection-change="handleSelectionChange"
@row-dblclick="dbClickRow"
size="small" :border="true" height="calc(100vh - 480px)" :highlight-current-row="true"> size="small" :border="true" height="calc(100vh - 480px)" :highlight-current-row="true">
<el-table-column type="selection" width="55"> <el-table-column type="selection" width="55">
</el-table-column> </el-table-column>
...@@ -310,6 +311,14 @@ export default { ...@@ -310,6 +311,14 @@ export default {
} }
}, },
methods: { methods: {
dbClickRow(row) {
this.routerPush({
path: '/business/msgdtl',
query: {
mpsinr: row.inr
}
})
}
}, },
mounted: function () { mounted: function () {
}, },
......
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