mahuan@syspetro.com
2021-12-29 8a9f568f81c36e56d79bd3d0403e481cf037f634
最新代码存档
4个文件已修改
1个文件已添加
86 ■■■■■ 已修改文件
src/components/main/components/header-bar/header-bar.vue 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/main/components/header-bar/sider-trigger/sider-trigger.vue 5 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/index.js 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/router/routers.js 25 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/view/rentExchange/rentExchangeCompany.vue 50 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
src/components/main/components/header-bar/header-bar.vue
@@ -92,6 +92,7 @@
    this.title2=""
    this.title3=""
    let a= localStorage.getItem('companyStore')
    console.log(987,a)
    if(a=="controlList"||a=="qiyejiankong"){
      this.title1= "实时监控中心"
      this.showBoolean=true
@@ -115,6 +116,9 @@
    }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
src/components/main/components/header-bar/sider-trigger/sider-trigger.vue
@@ -113,6 +113,9 @@
                                                                           @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>
@@ -186,6 +189,8 @@
        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"){
src/router/index.js
@@ -26,7 +26,7 @@
  }
}
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
src/router/routers.js
@@ -302,6 +302,31 @@
    ]
  },
  {
    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',
src/view/rentExchange/rentExchangeCompany.vue
New file
@@ -0,0 +1,50 @@
<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>