| | |
| | | this.title2="" |
| | | this.title3="" |
| | | let a= localStorage.getItem('companyStore') |
| | | console.log(987,a) |
| | | if(a=="controlList"||a=="qiyejiankong"){ |
| | | this.title1= "实时监控中心" |
| | | this.showBoolean=true |
| | |
| | | }else if(a=="reportCenter"||a=='accountControl'||this.menudata=="reportCenter"||this.menudata=='accountControl'){ |
| | | this.title1= "账户信息" |
| | | this.showBoolean=true |
| | | }else if(a==="rentExchange"){ |
| | | this.title1= "租赁公司" |
| | | this.showBoolean=true |
| | | }else if(a==="enterpriseRelationshipMining"){ |
| | | this.title1= "企业挖掘" |
| | | this.showBoolean=true |
| | |
| | | @click="setVersionInfo('_home')">企业评估-专业版</span> |
| | | </li> |
| | | <li><span class="ivu-icon custom custom-shujuwajue"></span> |
| | | <span class="two_class" name="rentExchangeCompany" @click="setVersionInfo('rentExchange')">企业评估-租赁公司</span> |
| | | </li> |
| | | <li><span class="ivu-icon custom custom-shujuwajue"></span> |
| | | <span class="two_class" name="enterpriseRelationshipMining" @click="setVersionInfo('enterpriseRelationshipMining')">企业关系挖掘</span> |
| | | </li> |
| | | </ul> |
| | |
| | | this.$router.push({path:'/basicAttributes_tool'}) |
| | | }else if(params=="financeCollateralPledge"){ |
| | | this.$router.push({path:'/financeCollateralPledge'}) |
| | | }else if(params=="rentExchange"){ |
| | | this.$router.push({path:'/rentExchangeCompany'}) |
| | | }else if(params=="enterpriseRelationshipMining"){ |
| | | this.$router.push({path:'/enterpriseRelationshipMining'}) |
| | | }else if(params=="AssetManagementFinancing"){ |
| | |
| | | } |
| | | } |
| | | let bool = true |
| | | let arr=['newsDetail', 'publicMessage_tool','loanSchemeAndRecoveryPlan','offSiteCheckQYTP','fundMonitoring','paymentMonitoring','siteCheck','controlList','managementItem','basicAttributes_tool','reportFormsManage'] |
| | | let arr=['newsDetail', 'publicMessage_tool','loanSchemeAndRecoveryPlan','offSiteCheckQYTP','fundMonitoring','paymentMonitoring','siteCheck','controlList','managementItem','basicAttributes_tool','reportFormsManage','rentExchangeCompany'] |
| | | router.beforeEach((to, from, next) => { |
| | | if (arr.indexOf(to.name) > -1) { |
| | | bool = false |
| | |
| | | ] |
| | | }, |
| | | { |
| | | path: '/rentExchange', |
| | | name: 'rentExchange', |
| | | redirect: '/rentExchangeCompany', |
| | | component: Main, |
| | | meta: { |
| | | notCache: true, |
| | | access: ['no_admin', 'rentExchange'], |
| | | icon: 'custom custom-shujuwajue', |
| | | title: '企业评估' |
| | | }, |
| | | children: [ |
| | | { |
| | | path: '/rentExchangeCompany', |
| | | name: 'rentExchangeCompany', |
| | | meta: { |
| | | notCache: true, |
| | | access: ['no_admin', 'rentExchange'], |
| | | icon: 'custom custom-shujuwajue', |
| | | title: '租赁公司' |
| | | }, |
| | | component: () => import('@/view/rentExchange/rentExchangeCompany.vue') |
| | | } |
| | | ] |
| | | }, |
| | | { |
| | | path: '/enterpriseRelationship', |
| | | name: 'enterpriseRelationship', |
| | | redirect: '/enterpriseRelationshipMining', |
| New file |
| | |
| | | <template> |
| | | <div id="rentExchangeCompany"> |
| | | 企业评估-租赁公司 |
| | | </div> |
| | | </template> |
| | | |
| | | <script> |
| | | import axios from '@/libs/api.request' |
| | | |
| | | export default { |
| | | name: 'rentExchangeCompany', |
| | | components: {//组件 |
| | | |
| | | }, |
| | | props: {//传参 |
| | | |
| | | }, |
| | | data () { |
| | | return {//数据 |
| | | |
| | | } |
| | | }, |
| | | mounted () {//挂载完毕 |
| | | |
| | | }, |
| | | activated () {//激活页面 |
| | | |
| | | }, |
| | | beforeRouteLeave (to, form, next) {//路由跳转 |
| | | next() |
| | | }, |
| | | beforeDestroy () {//页面销毁 |
| | | |
| | | }, |
| | | methods: {//页面函数 |
| | | |
| | | }, |
| | | watch: {//数据监听 |
| | | |
| | | }, |
| | | computed: {//计算属性 |
| | | |
| | | } |
| | | } |
| | | </script> |
| | | <style lang="less"> |
| | | #rentExchangeCompany { |
| | | |
| | | } |
| | | </style> |