Sfoglia il codice sorgente

添加路由标签

gjy 2 anni fa
parent
commit
d011b362ac

+ 59 - 15
src/components/syClick.vue

@@ -1,15 +1,11 @@
 <template>
     <div class="nav-click">
-    	<ul :style="{'left':left + 'px'}">
-    		<li class="nav-click-body" v-for="(item,index) in list" :key="index" :title="item.title + item.flag"
-            :class="{'nav-click-show':item.curr,'nav-click-default':!item.curr}" >
-    			<div class="nav-click-body-title hidden" @click="changeTag(index)">{{item.title}} {{item.flag}}</div>
-    			<div v-if="index!=0" class="nav-click-body-close" @click="removeTag(index)" :class="{'nav-click-body-show':item.curr,'nav-click-body-default':!item.curr}">×</div>
+    	<ul>
+    		<li class="nav-click-body" :class="item.showClick?'nav-click-body-active':''" v-for="(item,index) in titles" :key="index" :title="item.title"
+             >
+    			<div class="nav-click-body-title"  @click="changeTag(index)">{{item.title}} {{item.flag}}</div>
+    			<div v-if="item.showClick" class="nav-click-body-close" @click="removeTag(index)">×</div>
     		</li>
-    		<div class="nav-click-right">
-    			<!-- <sy-icon type="ellipsis-v" @click="UnNavClick" v-show="downIcon"></sy-icon>
-    			<sy-icon type="remove" @click="CloseNavClick" v-show="!downIcon"></sy-icon> -->
-    		</div>
     	</ul>
     </div>
 </template>
@@ -27,7 +23,7 @@
         },
         data() {
             return {
-                list:[{title:'1111111111'},{title:'22222222222'}],
+                // list:[{title:'1111111111'},{title:'22222222222'},{title:'333333'}],
 				left: 0,
 				clickHeight:50,
 				downIcon: true,
@@ -42,18 +38,66 @@
 			CloseNavClick(){
 				this.downIcon = !this.downIcon;
 				this.clickHeight = 50
-                this.$emit('removeAll')
+                // this.$emit('removeAll')
 			},
             
             // 删除标签页
             removeTag(index) {
-                this.$emit('removeTag', index);
+                if(this.titles.length>1){
+                    this.titles.splice(index,1)
+                    if(index>0){
+                       this.titles[index-1].showClick=true
+                       this.$router.push({
+                            path: this.titles[index-1].path,
+                            query: this.titles[index-1].query,
+                        })
+                    }else{
+                         this.titles[index].showClick=true
+                         this.$router.push({
+                            path: this.titles[index].path,
+                            query: this.titles[index].query,
+                        })
+                    }
+                }
             },
- 
             // 切换标签页
             changeTag(index) {
-                this.$emit('changeTag', index);
+                console.log(this.titles[index])
+                for (let i = 0; i < this.titles.length; i++) {
+                    this.titles[i].showClick=false;
+                }
+                this.titles[index].showClick=true
+                this.$router.push({
+                    path: this.titles[index].path,
+                    query: this.titles[index].query,
+                })
             }
         }
     }
-</script>
+</script>
+<style lang="scss" scoped>
+.nav-click{
+    padding:10px 0;
+    ul{
+        display:flex;
+        margin:0;
+    }
+    ul>li{
+        list-style:none;display:flex;
+        cursor:pointer;
+        padding:10px;
+        margin:0 5px;
+        color:#4E5969;
+        // display:inline-block;
+    }
+    ul>li:hover{
+        background:#F2F3F5;
+    }
+    li.nav-click-body-active{
+        background:#F6F7F9;
+    }
+    .nav-click-body-title{
+        margin-right:5px;
+    }
+}
+</style>

+ 4 - 3
src/layout/index/index.vue

@@ -4,7 +4,7 @@
     <div class="winseaview-header">
       <!-- 顶部导航栏 -->
       <top />
-      <!-- <div> <sy-Click :titles="history_list" @removeAll="removeAll" @removeTag="removeTab" @changeTag="changeTag"></sy-Click></div> -->
+      <div> <sy-Click :titles="openRoute" ></sy-Click></div>
     </div>
 
     <div class="winseaview-layout">
@@ -57,7 +57,8 @@
         //刷新token锁
         refreshLock: false,
         //刷新token的时间
-        refreshTime: '',  
+        refreshTime: '',
+        
          // 标签页
       };
     },
@@ -68,7 +69,7 @@
     mounted() {
       this.init();
     },
-    computed: mapGetters(['isLock', 'isCollapse', 'website']),
+    computed: mapGetters(['isLock', 'isCollapse', 'website','openRoute']),
     props: [],
     methods: {
       ...mapActions(['setScreen']),

+ 2 - 1
src/layout/index/sidebar/sidebarItem.vue

@@ -89,7 +89,7 @@ export default {
     console.log(this.menu)
   },
   computed: {
-    ...mapGetters(['roles']),
+    ...mapGetters(['roles','openRoute']),
     labelKey() {
       return this.props.label || this.config.propsDefault.label
     },
@@ -128,6 +128,7 @@ export default {
       return validatenull(val)
     },
     open(item) {
+
       if (this.screen <= 1) this.$store.commit('SET_COLLAPSE')
       // this.$router.$winseaviewRouter.group = item.group;
       // this.$router.$winseaviewRouter.meta = item.meta;

+ 24 - 5
src/router/index.js

@@ -73,7 +73,7 @@ export const constantRoutes = [
         path: 'home',
         component: () => page('home'),
         name: 'home',
-        meta: { title: 'home', icon: '-index-copy', affix: true, auth: 'homePage' },
+        meta: { title: 'home', icon: '-index-copy', affix: true, auth: 'homePage',_title:'首页' },
         hidden: true
       }
     ]
@@ -96,7 +96,8 @@ export const constantRoutes = [
           title: 'work',
           noCache: true,
           affix: true,
-          auth: 'workTask'
+          auth: 'workTask',
+          _title:'任务'
         }
       },
       {
@@ -108,7 +109,8 @@ export const constantRoutes = [
           title: 'message',
           noCache: true,
           affix: true,
-          auth: 'workInformation'
+          auth: 'workInformation',
+          _title:'消息'
         }
       }
     ]
@@ -143,10 +145,27 @@ export function resetRouter() {
   router.matcher = newRouter.matcher // reset router
 }
 router.beforeEach(async (to, from, next) => {
-  console.log(to,from)
+  console.log(to,from,111111111111111111,store.getters.openRoute)
+  var arr=store.getters.openRoute
+  if(to.meta._title){
+    var arr1=arr.find(function(item1,index,arr){
+        return item1.title==to.meta._title
+    });
+    if(!arr1){
+      console.log(to.meta._title)
+      arr.push({title:to.meta._title,showClick:false,path:to.path,query: to.query})
+    }
+    for (let i = 0; i < arr.length; i++) {
+      arr[i].showClick=false
+      if(arr[i].title==to.meta._title){
+        arr[i].showClick=true
+        arr[i].query=to.query
+      }
+    }
+  }
+  
   // const { roles, isTrainDialog, guideInfo } = store.getters
   const { roles } = store.getters
-  console.log(roles)
   if (roles && roles.length && to.path !== '/help') {
     // if (Object.keys(guideInfo).length === 0) {
     //   store.dispatch('user/getTrainInfo')

+ 1 - 1
src/store/getters.js

@@ -26,7 +26,7 @@ const getters = {
   showMenu: state => state.commonStore.showMenu,
   showTheme: state => state.commonStore.showTheme,
   showSearch: state => state.commonStore.showSearch,
-
+  openRoute: state => state.user.openRoute,
   sidebar: state => state.app.sidebar,
   language: state => state.app.language,
   size: state => state.app.size,

+ 4 - 0
src/store/modules/user.js

@@ -18,6 +18,7 @@ const state = {
   token: '',
   name: '',
   avatar: '',
+  openRoute:[],
   companyId: getCompanyId(),
   introduction: '',
   roles: [],
@@ -62,6 +63,9 @@ const mutations = {
   SET_ROLES: (state, roles) => {
     state.roles = roles
   },
+  SET_OPEN_ROUTE: (state, openRoute) => {
+    state.openRoute = openRoute
+  },
   SET_COMPANY: (state, companyId) => {
     state.companyId = companyId
   },

+ 62 - 31
src/views/contractManagement/component/routers/route.js

@@ -23,7 +23,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货采购合同'
       }
     },
     // 现货采购合同费用
@@ -37,7 +38,8 @@ const contractManagementRouter = {
               shortcutEntrance: 'contractManagement',
               module: 'contractManagement.buyContract',
               permissicon: [],
-              keepAlive: true
+              keepAlive: true,
+              _title:'现货采购合同费用'
             },
             hidden: true
     },
@@ -52,7 +54,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货采购合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -68,7 +71,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货采购合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -84,7 +88,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货采购合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -101,7 +106,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购合同'
       }
     },
     //期货采购合同查看
@@ -115,7 +121,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -131,7 +138,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -147,7 +155,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.buyContract.buyContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -163,7 +172,8 @@ const contractManagementRouter = {
          shortcutEntrance: 'contractManagement',
          module: 'contractManagement.salesContract',
          permissicon: [],
-         keepAlive: true
+         keepAlive: true,
+         _title:'期货销售合同费用'
         // module: 'procurement.sparepart.applDetail'
       },
        hidden: true
@@ -179,7 +189,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货销售合同'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -194,7 +205,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货销售合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -210,7 +222,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货销售合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -226,7 +239,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货销售合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -243,7 +257,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售合同'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -258,7 +273,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -274,7 +290,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -290,7 +307,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract.salesContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -307,7 +325,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'点价确认单'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -323,7 +342,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'创建点价确认单'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -339,7 +359,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.salesContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑点价确认单'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -355,7 +376,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dsContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代收合同'
       }
     },
     //代收合同添加
@@ -369,7 +391,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dsContract.dsContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代收合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -385,7 +408,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dsContract.dsContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代收合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -401,7 +425,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dsContract.dsContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代收合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -417,7 +442,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dsContract.dsContractInfo.list',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代收合同记录'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -432,7 +458,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dcContract',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代储合同'
       }
     },
     //代储合同添加
@@ -446,7 +473,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dcContract.dcContractInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代储合同添加'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -462,7 +490,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dcContract.dcContractInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代储合同编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -478,7 +507,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dcContract.dcContractInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'代储合同查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -494,7 +524,8 @@ const contractManagementRouter = {
         shortcutEntrance: 'contractManagement',
         module: 'contractManagement.dcContract.dcContractInfo.list',
         permissicon: [],
-        keepAlive: false
+        keepAlive: false,
+        _title:'代储合同记录'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true

+ 2 - 1
src/views/customer/component/router/route.js

@@ -22,7 +22,8 @@ const customerRouter = {
           shortcutEntrance: 'customerList',
           module: 'customerManagement.customer.customerInfo',
           permissicon: [],
-          keepAlive: true
+          keepAlive: true,
+          _title:'客户管理'
           // module: 'procurement.sparepart.applDetail'
         },
          hidden: true

+ 6 - 3
src/views/customerFundManagement/component/router/router.js

@@ -23,7 +23,8 @@ const customerFundManagementRouter = {
           shortcutEntrance: 'customerFundList',
           module: 'customerMoneyManagement.customerMoney.view',
           permissicon: [],
-          keepAlive: true
+          keepAlive: true,
+          _title:'客户资金管理列表'
         },
          hidden: true
       },
@@ -38,7 +39,8 @@ const customerFundManagementRouter = {
           shortcutEntrance: 'customerFundManagement',
           module: 'customerMoneyManagement.customerMoney.edit',
           permissicon: [],
-          keepAlive: true
+          keepAlive: true,
+          _title:'客户资金管理编辑'
         },
         hidden: true
       },
@@ -53,7 +55,8 @@ const customerFundManagementRouter = {
           shortcutEntrance: 'customerFundManagement',
           module: 'customerMoneyManagement.customerMoney.audit',
           permissicon: [],
-          keepAlive: true
+          keepAlive: true,
+          _title:'客户资金管理添加'
           // module: 'procurement.sparepart.applDetail'
         },
         hidden: true

+ 2 - 1
src/views/financialManagement/component/routers/route.js

@@ -23,7 +23,8 @@ const financialManagementRouter = {
         shortcutEntrance: 'financialManagement',
         module: 'financial.collectionInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'收款管理'
         // module: 'procurement.sparepart.applDetail'
       }
     },

+ 20 - 8
src/views/houseSelfCollect/component/routers/route.js

@@ -23,7 +23,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionCustomer.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'入库管理客户管理'
       }
     },
         //客户管理添加
@@ -37,7 +38,8 @@ const houseSelfCollectRouter = {
             shortcutEntrance: 'houseSelfCollect',
             module: 'acquisitionManagement.acquisitionCustomer.add',
             permissicon: [],
-            keepAlive: true
+            keepAlive: true,
+            _title:'客户管理添加'
           },
           hidden: true
         },
@@ -52,7 +54,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisition.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'入库管理仓库设置'
       }
     },
     //收购新增
@@ -66,7 +69,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisition.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'收购管理新增'
       },
         hidden: true
     },
@@ -95,6 +99,7 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionQuality.view',
         permissicon: [],
+        _title:'质检管理记录'
         // keepAlive:true
       },
       hidden: true
@@ -109,6 +114,7 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionQuality.view',
         permissicon: [],
+        _title:'入库管理质检管理'
         // keepAlive:true
       }
     },
@@ -137,6 +143,7 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionWeight.view',
         permissicon: [],
+        _title:'入库管理检斤管理'
         // keepAlive: true
       }
     },
@@ -151,6 +158,7 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionPay',
         permissicon: [],
+        _title:'付款管理'
         // keepAlive: true
       }
     },
@@ -164,7 +172,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'settlement',
         module: 'acquisitionManagement.acquisitionPay.view',
         permissicon: [],
-        keepAlive: false
+        keepAlive: false,
+        _title:'入库管理结算'
       },
       hidden: true
     },
@@ -178,7 +187,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'inspectInfo',
         module: 'acquisitionManagement.acquisitionQuality.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看质检信息'
       },
       hidden: true
     },
@@ -192,7 +202,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'inspectInfo',
         module: 'acquisitionManagement.acquisitionQuality.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'质检信息'
       },
       hidden: true
     },
@@ -222,7 +233,8 @@ const houseSelfCollectRouter = {
         shortcutEntrance: 'houseSelfCollect',
         module: 'acquisitionManagement.acquisitionWeight.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'检斤管理记录'
       },
       hidden: true
     },

+ 27 - 19
src/views/houseSelfCollect/inspectionManagementNew.vue

@@ -111,12 +111,12 @@
                   </el-select>
                   <el-select :disabled="disabled2"
                     v-if="!carstatus && options2.length > 0 && serviceManagementType != 3" filterable clearable
-                    :filter-method="dataFilter2" v-model="deptBudgetList.carNo" placeholder="请选择车牌号" class="typeselect"
+                     v-model="deptBudgetList.carNo" placeholder="请选择车牌号" class="typeselect"
                     @change="carChange($event, 0)">
                     <el-option v-for="item in options2" :key="item.constKey" :label="item.carNo" :value="item.carNo" />
                   </el-select>
                   <el-select :disabled="disabled2" v-if="carNumberList.length > 0 && serviceManagementType == 3"
-                    filterable clearable :filter-method="dataFilter2" v-model="deptBudgetList.carNo"
+                    filterable clearable  v-model="deptBudgetList.carNo"
                     placeholder="请选择车牌号" class="typeselect" @change="carChange($event, 1)">
                     <el-option v-for="item in carNumberList" :key="item.constKey" :label="item.carNo"
                       :value="item.carNo" />
@@ -270,12 +270,12 @@
                   </el-select>
                   <el-select :disabled="disabled2"
                     v-if="!carstatus && options2.length > 0 && serviceManagementType != 3" filterable clearable
-                    :filter-method="dataFilter2" v-model="deptBudgetList.carNo" placeholder="请选择车牌号" class="typeselect"
+                     v-model="deptBudgetList.carNo" placeholder="请选择车牌号" class="typeselect"
                     @change="carChange($event, 0)">
                     <el-option v-for="item in options2" :key="item.constKey" :label="item.carNo" :value="item.carNo" />
                   </el-select>
                   <el-select :disabled="disabled2" v-if="carNumberList.length > 0 && serviceManagementType == 3"
-                    filterable clearable :filter-method="dataFilter2" v-model="deptBudgetList.carNo"
+                    filterable clearable v-model="deptBudgetList.carNo"
                     placeholder="请选择车牌号" class="typeselect" @change="carChange($event, 1)">
                     <el-option v-for="item in carNumberList" :key="item.constKey" :label="item.carNo"
                       :value="item.carNo" />
@@ -731,11 +731,13 @@ export default {
     refreshClick(type) {
       let that = this
       if (type == 1) {
-        if (this.serviceManagementType == 3 && this.statusTypetext=='初检') {
+        if (this.serviceManagementType == 3) {
+        if(this.statusTypetext=='初检'){
           this.statusType = 0
         }else{
-          this.statusType=1
+          this.statusType = 1
         }
+      }
         getinspectList({
           compId: localStorage.getItem('ws-pf_compId'),
           currentPage: that.currentPage,
@@ -760,10 +762,12 @@ export default {
           console.log(that.refresh)
           if (that.refresh == 0) {
             that.refresh = 60
-            if (this.serviceManagementType == 3 && this.statusTypetext=='初检') {
-              this.statusType = 0
-            }else{
-              this.statusType=1
+            if (this.serviceManagementType == 3) {
+              if(this.statusTypetext=='初检'){
+                this.statusType = 0
+              }else{
+                this.statusType = 1
+              }
             }
             getinspectList({
               compId: localStorage.getItem('ws-pf_compId'),
@@ -1382,10 +1386,12 @@ export default {
     statustypechangelist(status) {
       // debugger
       this.statusType = status
-      if (this.serviceManagementType == 3 && this.statusTypetext=='初检') {
-        this.statusType = 0
-      }else{
-        this.statusType=1
+      if (this.serviceManagementType == 3) {
+        if(this.statusTypetext=='初检'){
+          this.statusType = 0
+        }else{
+          this.statusType = 1
+        }
       }
       getinspectList({
         compId: localStorage.getItem('ws-pf_compId'),
@@ -1918,7 +1924,7 @@ export default {
         this.deptBudgetList.statusType = 3
         this.recheck = false
         this.disablednotarize = true
-        this.statusType = 0
+        this.statusType = 2
         this.disabled2 = false
         this.goodsdisabled = false
         this.disabled = false
@@ -3372,10 +3378,12 @@ export default {
           // this.outContractNo = response
         })
 
-      if (this.serviceManagementType == 3 && this.statusTypetext=='初检') {
-        this.statusType = 0
-      }else{
-        this.statusType = 1
+      if (this.serviceManagementType == 3) {
+        if(this.statusTypetext=='初检'){
+          this.statusType = 0
+        }else{
+          this.statusType = 1
+        }
       }
       getinspectList({
         compId: localStorage.getItem('ws-pf_compId'),

+ 14 - 7
src/views/outboundManagement/component/route.js

@@ -36,7 +36,8 @@ const outboundManagementRouter = {
               shortcutEntrance:'outboundManagement',
               module:'outbound.acquisitionWeightOut.view',
               permissicon: [],
-              keepAlive: false
+              keepAlive: false,
+              _title:'出库管理检斤管理'
           }
       },
       // 检斤记录
@@ -50,7 +51,8 @@ const outboundManagementRouter = {
                 shortcutEntrance:'outboundManagement',
                 module:'outbound.acquisitionWeightOut.view',
                 permissicon: [],
-                keepAlive: true
+                keepAlive: true,
+                _title:'出库管理检斤记录'
             },
             hidden: true
         },
@@ -65,7 +67,8 @@ const outboundManagementRouter = {
               shortcutEntrance: 'weighing',
               module: 'outbound.acquisitionWeightOut.view',
               permissicon: [],
-              keepAlive: true
+              keepAlive: true,
+              _title:'出库管理检斤信息'
             },
             hidden: true
           },
@@ -94,7 +97,8 @@ const outboundManagementRouter = {
               shortcutEntrance:'outboundManagement',
               module:'outbound.acquisitionQualityOut.view',
               permissicon: [],
-              keepAlive: true
+              keepAlive: true,
+              _title:'出库管理质检管理'
           }
         },
         // 质检记录
@@ -108,7 +112,8 @@ const outboundManagementRouter = {
             shortcutEntrance: 'outInspectRecord',
             module: 'outbound.acquisitionQualityOut.edit',
             permissicon: [],
-            keepAlive: true
+            keepAlive: true,
+            _title:'出库管理质检记录'
           },
           hidden: true
         },
@@ -124,7 +129,8 @@ const outboundManagementRouter = {
               
               module: 'outbound.acquisitionQualityOut.edit',
               permissicon: [],
-              keepAlive: true
+              keepAlive: true,
+              _title:'编辑质检信息'
             },
             hidden: true
           },
@@ -154,7 +160,8 @@ const outboundManagementRouter = {
               shortcutEntrance: 'collectionment',
               module: 'outbound.collectionOut.weight',
               permissicon: [],
-              keepAlive: true
+              keepAlive: true,
+              _title:'查看收款管理'
             },
             hidden: true
           },

+ 2 - 2
src/views/outboundManagement/component/weightCheckPrint.vue

@@ -4,7 +4,7 @@
         <div class="number">{{tableData.number}}</div>
         <table class="table">
           <tr class="row">
-            <td class="col col-bgc">收货单位</td>
+            <td class="col col-bgc">收货</td>
            <!-- <td class="col" colspan="2" v-if="tableData.customer">{{tableData.customer}}</td> -->
            <td class="col" colspan="2">{{tableData.customer?tableData.customer:( tableData.contractManagement ? tableData.contractManagement.buyer:"")}}</td>
             <td class="col col-bgc">客户电话</td>
@@ -13,7 +13,7 @@
             <td class="col" colspan="2">{{tableData.carNumber}}</td>
           </tr>
           <tr class="row">
-            <td class="col col-bgc">出库单位</td>
+            <td class="col col-bgc">发货库</td>
             <td class="col" colspan="2">{{tableData.contractManagement ? tableData.contractManagement.seller:tableData.compName}}</td>
             <td class="col col-bgc">联系人</td>
             <td class="col" >{{tableData.person}}</td>

+ 6 - 2
src/views/outboundManagement/weighingManagementNew.vue

@@ -1208,7 +1208,7 @@
             return
           }
         }
-        if (this.types == 2) {
+        if (this.tpyeNo == 2) {
           if (!this.weighingList.grossWeight) {
             this.$message({
               message: '毛重不能为空',
@@ -1427,6 +1427,10 @@
               var weighingList1 = JSON.parse(JSON.stringify(this.weighingList)) //为了解除双向绑定问题,不影响this.weighingList的数据
               weighingList1.id = this.weighingList.warehouseInOutId
               weighingList1.warehouseInOutDetail.id = this.weighingList.inOutDetailId
+              console.log(this.weighingList)
+              if(this.weighingList.inOutType=='移库出库'){
+                this.weighingList.customer=this.weighingList.tips
+              }
               weighingList1.weighingManagement = this.weighingList
               if (weighingList1.grossWeight) {//为了解决出入库与检斤单位不一致(出入库单位吨,检斤公斤)
                 weighingList1.grossWeight = weighingList1.grossWeight / 1000
@@ -1969,7 +1973,7 @@
               for (let q = 0; q < this.warehouseList1.length; q++) {
                 if (this.warehouseList1[q].warehouseName == this.warehouseName) {
                   if(this.warehouseList1[q].warehouseType==2&&this.warehouseList1[q].createType==1){
-                    console.log(this.outContractNo[i].contractPrice,11111111111)
+                    // console.log(this.outContractNo[i].contractPrice,11111111111)
                     this.weighingList.contractPrice=this.outContractNo[i].contractPrice
                   }
                 }

+ 90 - 84
src/views/platformAudit/component/routers/route.js

@@ -13,93 +13,99 @@ const platformauditRouter = {
     },
     children: [
 
-        //粮商审核
-        // {
-        //   path: 'grainmerchantreview',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainmerchantreview'),
-        //   name: 'grainmerchantreview',
-        //   meta: {
-        //     title: 'grainmerchantreview',
-        //     shortcutEntrance: 'grainmerchantreview',
-        //     module: 'audit.grainMerchant.grainMerchantInfo',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
+        // 粮商审核
+        {
+          path: 'grainmerchantreview',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainmerchantreview'),
+          name: 'grainmerchantreview',
+          meta: {
+            title: 'grainmerchantreview',
+            shortcutEntrance: 'grainmerchantreview',
+            module: 'audit.grainMerchant.grainMerchantInfo',
+            permissicon: [],
+            keepAlive: true,
+            _title:'粮商审核'
+          },
+        },
 
-        // //司机审核
-        // {
-        //   path: 'driverreview',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/driverreview'),
-        //   name: 'driverreview',
-        //   meta: {
-        //     title: 'driverreview',
-        //     shortcutEntrance: 'driverreview',
-        //     module: 'audit.driverMerchant.driverMerchantInfo',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
+        //司机审核
+        {
+          path: 'driverreview',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/driverreview'),
+          name: 'driverreview',
+          meta: {
+            title: 'driverreview',
+            shortcutEntrance: 'driverreview',
+            module: 'audit.driverMerchant.driverMerchantInfo',
+            permissicon: [],
+            keepAlive: true,
+            _title:'司机审核'
+          },
+        },
 
-        // //采购交易信息审核
-        // {
-        //   path: 'transactioninformationreview',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/transactioninformationreview'),
-        //   name: 'transactioninformationreview',
-        //   meta: {
-        //     title: 'transactioninformationreview',
-        //     shortcutEntrance: 'transactioninformationreview',
-        //     module: 'audit.tranMerchant.tranMerchantInfo',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
+        //采购交易信息审核
+        {
+          path: 'transactioninformationreview',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/transactioninformationreview'),
+          name: 'transactioninformationreview',
+          meta: {
+            title: 'transactioninformationreview',
+            shortcutEntrance: 'transactioninformationreview',
+            module: 'audit.tranMerchant.tranMerchantInfo',
+            permissicon: [],
+            keepAlive: true,
+            _title:'采购信息审核'
+          },
+        },
 
-        // //销售交易信息审核
-        // {
-        //   path: 'saletransactioninformationreview',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/saletransactioninformationreview'),
-        //   name: 'saletransactioninformationreview',
-        //   meta: {
-        //     title: 'saletransactioninformationreview',
-        //     shortcutEntrance: 'saletransactioninformationreview',
-        //     module: 'audit.tranMerchant.tranMerchantInfo',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
-        // //粮脉企业审核
-        // {
-        //   path: 'grainpulseenterprisereview',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainpulseenterprisereview'),
-        //   name: 'grainpulseenterprisereview',
-        //   meta: {
-        //     title: 'grainpulseenterprisereview',
-        //     shortcutEntrance: 'grainpulseenterprisereview',
-        //     module: 'audit.tranMerchant.tranMerchantInfo',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
-        // //粮脉动态审核
-        // {
-        //   path: 'grainPulseDynamic',
-        //   component: () =>
-        //     import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainPulseDynamic'),
-        //   name: 'grainPulseDynamic',
-        //   meta: {
-        //     title: 'grainPulseDynamic',
-        //     shortcutEntrance: 'grainPulseDynamic',
-        //     module: 'audit.grainMerchant.grainMerchantInfo.review',
-        //     permissicon: [],
-        //     keepAlive: true
-        //   },
-        // },
+        //销售交易信息审核
+        {
+          path: 'saletransactioninformationreview',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/saletransactioninformationreview'),
+          name: 'saletransactioninformationreview',
+          meta: {
+            title: 'saletransactioninformationreview',
+            shortcutEntrance: 'saletransactioninformationreview',
+            module: 'audit.tranMerchant.tranMerchantInfo',
+            permissicon: [],
+            keepAlive: true,
+            _title:'销售信息审核'
+          },
+        },
+        //粮脉企业审核
+        {
+          path: 'grainpulseenterprisereview',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainpulseenterprisereview'),
+          name: 'grainpulseenterprisereview',
+          meta: {
+            title: 'grainpulseenterprisereview',
+            shortcutEntrance: 'grainpulseenterprisereview',
+            module: 'audit.tranMerchant.tranMerchantInfo',
+            permissicon: [],
+            keepAlive: true,
+            _title:'粮脉企业审核'
+          },
+        },
+        //粮脉动态审核
+        {
+          path: 'grainPulseDynamic',
+          component: () =>
+            import(/* webpackChunkName: "applDetail" */ '@/views/platformaudit/grainPulseDynamic'),
+          name: 'grainPulseDynamic',
+          meta: {
+            title: 'grainPulseDynamic',
+            shortcutEntrance: 'grainPulseDynamic',
+            module: 'audit.grainMerchant.grainMerchantInfo.review',
+            permissicon: [],
+            keepAlive: true,
+            _title:'粮脉动态审核'
+          },
+        },
     ],
 };
 export default platformauditRouter;

+ 40 - 20
src/views/profitable/component/routers/route.js

@@ -38,7 +38,8 @@ const profitableRouter = {
           shortcutEntrance: 'profitable',
           module: 'lirunhesuan',
           permissicon: [],
-          keepAlive: true
+          keepAlive: true,
+          _title:'合同利润'
           // module: 'procurement.sparepart.applDetail'
         }
       },  
@@ -53,7 +54,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'合同利润详情'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -69,7 +71,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'合同利润库存'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -85,7 +88,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'合同利润费用'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -101,7 +105,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库点利润'
         // module: 'procurement.sparepart.applDetail'
       }
     }, 
@@ -116,7 +121,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库点利润详情'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -132,7 +138,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库点利润库存'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -148,7 +155,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库点利润费用'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -164,7 +172,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -179,7 +188,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理详情'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -195,7 +205,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理请款'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -211,7 +222,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理请款编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -227,7 +239,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理请款审核'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -243,7 +256,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.shouk',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理收款'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -260,7 +274,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.queshou',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理收款确认'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -276,7 +291,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理付款'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -292,7 +308,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理费用分配'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -308,7 +325,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理费用分配确认'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -324,7 +342,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理查看'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,
@@ -340,7 +359,8 @@ const profitableRouter = {
         shortcutEntrance: 'profitable',
         module: 'lirunhesuan.feiyongguanli.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'费用管理编辑'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true,

+ 10 - 5
src/views/purchasingManagement/component/routers/route.js

@@ -23,7 +23,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'purchasingManagement',
         module: 'procurement.procurementPlan',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'采购计划'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -38,7 +39,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'purchasingManagement',
         module: 'procurement.procurementPlan.procurementInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'采购计划添加'
       },
       hidden: true
     },
@@ -53,7 +55,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'purchasingManagement',
         module: 'procurement.procurementPlan.procurementInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑采购计划'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -68,7 +71,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'purchasingManagement',
         module: 'procurement.procurementPlan.procurementInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看采购计划'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -84,7 +88,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'purchasingManagement',
         module: 'procurement.procurementOrder.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'采购订单'
         // module: 'procurement.sparepart.applDetail'
       },
     //   hidden: true

+ 10 - 5
src/views/salesManagement/component/routers/route.js

@@ -23,7 +23,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'salesManagement',
         module: 'sale.salePlan.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'销售计划'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -38,7 +39,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'salesManagement',
         module: 'sale.salePlan.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'销售计划添加'
       },
       hidden: true
     },
@@ -53,7 +55,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'salesManagement',
         module: 'sale.salePlan.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑销售计划'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -68,7 +71,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'salesManagement',
         module: 'sale.salePlan.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看销售计划'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -84,7 +88,8 @@ const purchasingManagementRouter = {
         shortcutEntrance: 'salesManagement',
         module: 'sale.salePlan.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'销售订单列表'
         // module: 'procurement.sparepart.applDetail'
       },
     //   hidden: true

+ 18 - 9
src/views/statisticalReport/component/routers/route.js

@@ -23,7 +23,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.procurementInReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购入库报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -38,7 +39,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.procurementCloseReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货采购平仓报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -53,7 +55,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.saleOutReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售出库报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -68,7 +71,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.saleCloseReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'期货销售平仓报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -83,7 +87,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.transportationReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽运结算报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -98,7 +103,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.transportationReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运结算报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -113,7 +119,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.transportationReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船运结算报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -128,7 +135,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.goodsProcurementInReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货采购入库报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -143,7 +151,8 @@ const statisticalReportRouter = {
         shortcutEntrance: 'statisticalReport',
         module: 'report.goodsSaleOutReport',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'现货销售出库报表'
         // module: 'procurement.sparepart.applDetail'
       }
     },

+ 25 - 8
src/views/taskManagement/component/routers/route.js

@@ -24,7 +24,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'transportationTask.transportation.transportationInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'运输任务'
       },
 
       // hidden: true
@@ -40,7 +41,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'transportationTask.transportation.transportationInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'运输任务查看'
       },
       hidden: true
     },
@@ -55,7 +57,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'transportationTask.transportation.transportationInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'运输任务添加'
       },
       hidden: true
     },
@@ -70,7 +73,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'transportationTask.transportation.transportationInfo.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'运输任务编辑'
       },
       hidden: true
 
@@ -86,7 +90,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'移库任务'
       },
     },
     //移库查看 
@@ -99,6 +104,7 @@ const tranManagementRouter = {
         title: 'moveWarehouseTaskLook',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask',
+        _title:'移库任务查看'
       },
       hidden: true,
     },
@@ -112,6 +118,7 @@ const tranManagementRouter = {
         title: 'tranManagementWarehouseInOutTask',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务'
       },
     },
     //出入库任务查看
@@ -124,6 +131,7 @@ const tranManagementRouter = {
         title: 'inOutWarehouseTaskEdit',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务查看'
       },
       hidden: true
     },
@@ -137,6 +145,7 @@ const tranManagementRouter = {
         title: 'supplyofgoods',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务出库选择货源'
       },
       hidden: true
     },
@@ -150,6 +159,7 @@ const tranManagementRouter = {
         title: 'outsupplyofgoods',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务退库选择货源'
       },
       hidden: true
     },
@@ -163,6 +173,7 @@ const tranManagementRouter = {
         title: 'supplyofgoodslook',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务出库查看货源'
       },
       hidden: true
     },
@@ -176,6 +187,7 @@ const tranManagementRouter = {
         title: 'outsupplyofgoodslook',
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+        _title:'出入库任务退库查看货源'
       },
       hidden: true
     },
@@ -189,6 +201,7 @@ const tranManagementRouter = {
             title: 'supplyofgoodsedit',
             shortcutEntrance: 'tranManagement',
             module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+            _title:'出入库任务出库编辑货源'
           },
           hidden: true
         },
@@ -202,6 +215,7 @@ const tranManagementRouter = {
             title: 'outsupplyofgoodsedit',
             shortcutEntrance: 'tranManagement',
             module: 'warehouseManagement.warehouse.warehouseInfoTask.View',
+            _title:'出入库任务退库编辑货源'
           },
           hidden: true
         },
@@ -216,7 +230,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'出入库任务添加'
       },
       hidden: true
     },
@@ -231,7 +246,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'出入库任务编辑'
       },
       hidden: true
     },
@@ -246,7 +262,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'warehouseManagement.warehouse.warehouseInfoTask.audit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'出入库任务审核'
       },
       hidden: true
     },

+ 14 - 7
src/views/tradeServicesManagement/component/routers/route.js

@@ -26,7 +26,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库存贸易服务'
       },
       hidden: false
     },
@@ -42,7 +43,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'在途贸易服务'
       },
       hidden: false
     },
@@ -57,7 +59,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'创建仓单'
       },
       hidden: true
     },
@@ -72,7 +75,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'审核仓单'
       },
       hidden: true
     },
@@ -87,7 +91,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'审批仓单'
       },
       hidden: true
     },
@@ -102,7 +107,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'出入库记录'
       },
       hidden: true
     },
@@ -117,7 +123,8 @@ const tradeServicesManagementRouter = {
         shortcutEntrance: 'warehouseReceiptRegulation',
         module: 'tradeServicesManagement.tradeService.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑仓单'
       },
       hidden: true
     },

+ 68 - 36
src/views/tranManagement/component/routers/route.js

@@ -24,7 +24,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'transportationTask',
         module: 'tranManager.fireDispatching',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运调度'
       },
     },
     //车次安排
@@ -38,7 +39,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.fireDispatching.car',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'车次安排'
       },
       hidden: true
     },
@@ -53,7 +55,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'transportationTask',
         module: 'tranManager.fireDispatching.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运调度详情'
       },
       hidden: true
     },
@@ -68,7 +71,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.shippingDispatching.car',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船次安排'
       },
       hidden: true
 
@@ -84,25 +88,27 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.shippingDispatching.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船次调度详情'
       },
       hidden: true
     },
     //添加司机
-    {
-      path: 'tranManagementDriverAdd',
-      component: () =>
-        import(/* webpackChunkName: "applDetail" */ '@/views/tranManagement/tranManagementDriverAdd'),
-      name: 'tranManagementDriverAdd',
-      meta: {
-        title: 'tranManagementDriverAdd',
-        shortcutEntrance: 'tranManagement',
-        module: 'tranManager.driverManagement.add',
-        permissicon: [],
-        keepAlive: true
-      },
-      hidden: true
-    },
+    // {
+    //   path: 'tranManagementDriverAdd',
+    //   component: () =>
+    //     import(/* webpackChunkName: "applDetail" */ '@/views/tranManagement/tranManagementDriverAdd'),
+    //   name: 'tranManagementDriverAdd',
+    //   meta: {
+    //     title: 'tranManagementDriverAdd',
+    //     shortcutEntrance: 'tranManagement',
+    //     module: 'tranManager.driverManagement.add',
+    //     permissicon: [],
+    //     keepAlive: true,
+    //     _title:'添加司机'
+    //   },
+    //   hidden: true
+    // },
     //汽运调度
     {
       path: 'vehicleDispatching',
@@ -114,7 +120,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.vehicleDispatching',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽运调度'
       },
 
     },
@@ -129,7 +136,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.shippingDispatching',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船运调度'
       },
 
     },
@@ -144,7 +152,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.driverManagement.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑司机'
       },
       hidden: true
     },
@@ -159,7 +168,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.driverManagement.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'司机查看'
       },
       hidden: true
     }, 
@@ -174,7 +184,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.driverManagement.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'添加司机'
       },
       hidden: true
     },
@@ -189,7 +200,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'transportationTask',
         module: 'tranManager.vehicleDispatching.car',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽车调度'
       },
       hidden: true
     },
@@ -204,7 +216,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.vehicleDispatching.view',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看派车详情'
       },
       hidden: true
     },
@@ -220,7 +233,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'发货反馈'
       }
     },
     
@@ -235,7 +249,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reExe',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽运反馈'
       },
       hidden: true
     },
@@ -250,6 +265,7 @@ const tranManagementRouter = {
         title: 'tranManagementTransporFeedbackLook',
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reExe',
+        _title:'汽运反馈查看'
       },
       hidden: true
     },
@@ -265,7 +281,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reTrian',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运装车反馈'
       },
       hidden: true
     },
@@ -280,6 +297,7 @@ const tranManagementRouter = {
         title: 'tranManagementFireFeedbackLook',
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reTrian',
+        _title:'火运装车反馈查看'
       },
       hidden: true
     },
@@ -295,7 +313,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reShip',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船运装船反馈'
       },
       hidden: true
     },
@@ -310,6 +329,7 @@ const tranManagementRouter = {
         title: 'tranManagementShippingFeedbackLook',
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reShip',
+        _title:'船运装船反馈查看'
       },
       hidden: true
     },
@@ -327,6 +347,7 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager',
         permissicon: [],
+        _title:'收货反馈'
 
       },
     },
@@ -341,6 +362,7 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         // module: 'tranManager',
         permissicon: [],
+        _title:'他运收货反馈'
 
       },
       hidden: true
@@ -356,6 +378,7 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         // module: 'tranManager',
         permissicon: [],
+        _title:'他运发货反馈'
 
       },
       hidden: true
@@ -371,6 +394,7 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         // module: 'tranManager',
         permissicon: [],
+        _title:'他运收货反馈查看'
 
       },
       hidden: true
@@ -386,6 +410,7 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         // module: 'tranManager',
         permissicon: [],
+        _title:'他运发货反馈查看'
 
       },
       hidden: true
@@ -401,7 +426,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reShip',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'船运卸船反馈'
       },
       hidden: true
     },
@@ -416,6 +442,7 @@ const tranManagementRouter = {
         title: 'tranManagementUnShippingFeedbackLook',
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reShip',
+        _title:'船运卸船反馈查看'
       },
       hidden: true
     },
@@ -431,7 +458,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reExe',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽运收货反馈'
       },
       hidden: true
     },
@@ -447,7 +475,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reExe',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'汽运收货反馈查看'
       },
       hidden: true
     },
@@ -463,7 +492,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reTrian',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运卸车反馈'
       },
       hidden: true
     },
@@ -479,7 +509,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.transportationInfo.reTrian',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'火运卸车反馈查看'
       },
       hidden: true
     },
@@ -495,7 +526,8 @@ const tranManagementRouter = {
         shortcutEntrance: 'tranManagement',
         module: 'tranManager.driverManagement',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'司机管理'
       }
     },
 

+ 29 - 14
src/views/warehousenew/component/router/index.js

@@ -22,7 +22,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementList',
         module: 'warehouseManagement.warehouse.warehouseInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'仓库管理'
         // module: 'procurement.sparepart.applDetail'
       }
     },
@@ -50,7 +51,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementList',
         module: 'warehouseManagement.warehouse.warehouseInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库点费用'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true
@@ -65,7 +67,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementList',
         module: 'warehouseManagement.warehouse.warehouseInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'全部仓库'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true
@@ -80,7 +83,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementList',
         module: 'warehouseManagement.warehouse.warehouseInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'加权明细'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden:true
@@ -95,7 +99,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementAdd',
         module: 'warehouseManagement.warehouse.warehouseInfo.add',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'添加仓库'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -112,7 +117,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementEdit',
         module: 'warehouseManagement.warehouse.warehouseInfo.edit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'编辑仓库'
       },
       hidden: true
     },
@@ -127,7 +133,8 @@ const warehouseManagementRouter = {
         module: 'warehouseManagement.warehouse.warehouseInfo.view',
 
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看仓库详情'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -143,7 +150,8 @@ const warehouseManagementRouter = {
         module: 'warehouseManagement.warehouse.warehouseInfo.view',
 
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'查看监控'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -158,6 +166,7 @@ const warehouseManagementRouter = {
         title: 'warehouseManagementPut',
         shortcutEntrance: 'warehouseManagementPut',
         module: 'warehouseManagement.warehouse.warehouseInfo.in',
+        _title:'入库登记'
       },
       hidden: true
     },
@@ -227,7 +236,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehouseManagementIoss',
         module: 'warehouseManagement.warehouse.warehouseInfo.debit',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'仓库管理盘损'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -244,7 +254,8 @@ const warehouseManagementRouter = {
         module: 'warehouseManagement.warehouse.warehouseInfo.debit',
 
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'盘损记录'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -261,7 +272,8 @@ const warehouseManagementRouter = {
         module: 'warehouseManagement.warehouse.warehouseInfo.view',
 
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'仓库记录'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -414,7 +426,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'transformation',
         module: 'warehouseManagement.warehouse.warehouseInfo',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'仓库管理折转'
         // module: 'procurement.sparepart.applDetail'
       },
       hidden: true
@@ -429,7 +442,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'warehousingOrder',
         module: 'warehouseManagement.warehousingOrder',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'入库单'
         // module: 'procurement.sparepart.applDetail'
       },
     },
@@ -443,7 +457,8 @@ const warehouseManagementRouter = {
         shortcutEntrance: 'inventoryCheck',
         module: 'warehouseManagement.warehousingOrder',
         permissicon: [],
-        keepAlive: true
+        keepAlive: true,
+        _title:'库存盘点'
         // module: 'procurement.sparepart.applDetail'
       },
     },