|
@@ -48,14 +48,14 @@ export default {
|
|
|
description: '查询发票信息、开票信息',
|
|
|
icon: 'el-icon-document',
|
|
|
path: '/search/invoice'
|
|
|
- }
|
|
|
- // {
|
|
|
- // key: 'inventory-query',
|
|
|
- // title: '库存查询',
|
|
|
- // description: '查询库存信息、库存变动',
|
|
|
- // icon: 'el-icon-box',
|
|
|
- // path: '/search/inventory-query'
|
|
|
- // },
|
|
|
+ },
|
|
|
+ {
|
|
|
+ key: 'claim-query',
|
|
|
+ title: '理赔信息查询',
|
|
|
+ description: '查询理赔信息',
|
|
|
+ icon: 'el-icon-box',
|
|
|
+ path: '/claim/index'
|
|
|
+ },
|
|
|
// {
|
|
|
// key: 'customer-query',
|
|
|
// title: '客户查询',
|
|
@@ -74,6 +74,8 @@ export default {
|
|
|
this.$router.push('/search/shipment-status')
|
|
|
} else if (module.key === 'invoice') {
|
|
|
this.$router.push('/search/invoice')
|
|
|
+ } else if (module.key === 'claim-query') {
|
|
|
+ this.$router.push('/claim/index')
|
|
|
} else {
|
|
|
this.$message.info(`${module.title}功能开发中...`)
|
|
|
}
|