Commit b1e81391 authored by 黄奎's avatar 黄奎

122121

parent 66b617dc
...@@ -229,6 +229,10 @@ ...@@ -229,6 +229,10 @@
<el-tooltip class="item" effect="dark" :content="$t('system.table_delete')" placement="top-start" v-else> <el-tooltip class="item" effect="dark" :content="$t('system.table_delete')" placement="top-start" v-else>
<el-button type="danger" icon="el-icon-delete" circle @click="deletelist(index,1)"></el-button> <el-button type="danger" icon="el-icon-delete" circle @click="deletelist(index,1)"></el-button>
</el-tooltip> </el-tooltip>
<el-tooltip class="item" effect="dark" content="效期维护" placement="top-start" style="display:none;">
<el-button type="danger" icon="el-icon-delete" circle @click="gotoChild(item)"></el-button>
</el-tooltip>
</el-row> </el-row>
</td> </td>
</tr> </tr>
...@@ -814,6 +818,18 @@ ...@@ -814,6 +818,18 @@
}, },
err => {} err => {}
); );
},
//跳转到子项
gotoChild(item)
{
this.$router.push({
name: "flightChild",
query: {
id: item.ID,
blank: 'y',
tab: "航班有效期维护"
}
})
} }
}, },
mounted() { mounted() {
......
...@@ -715,6 +715,14 @@ export default { ...@@ -715,6 +715,14 @@ export default {
title: '航班管理' title: '航班管理'
}, },
}, },
{
path: '/flightChild', //航班子表管理
name: 'flightChild',
component: resolve => require(['@/components/Ticketing/flightChild'], resolve),
meta: {
title: '航班管理'
},
},
{ {
path: '/startCityManagement', //出发城市管理 path: '/startCityManagement', //出发城市管理
name: 'startCityManagement', name: 'startCityManagement',
......
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