Commit 1f3405ca authored by tianhongyang's avatar tianhongyang

bug fix

parent 18aff0f3
......@@ -14,6 +14,7 @@
padding: 0px 16px;
transition: width 0.3s;
box-sizing: border-box;
cursor: pointer;
.el-cascader__tags,
.el-select__tags {
......
......@@ -401,3 +401,15 @@ export function isNumberStr(str) {
return /^[+-]?(0|([1-9]\d*))(\.\d+)?$/g.test(str);
}
// 甲方详情左侧菜单映射
export const detailSideBar = new Map({
// 企业速览
holderinfo: "ownershipStructure",
// 高管信息
execuinfo: "leadingMember",
// 对外投资
overseas: "outboundInvestment",
// 分支机构
branch: "branch",
})
......@@ -60,23 +60,23 @@ export default {
title: '企业概要', pathName: '', children: [
{ title: '企业速览', pathName: 'overview' },
{ title: '工商信息', pathName: 'businfo' },
{ title: '股东信息', pathName: 'holderinfo' },
{ title: '高管信息', pathName: 'execuinfo' },
{ title: '对外投资', pathName: 'overseas' },
{ title: '分支机构', pathName: 'branch' }
{ title: '股东信息', pathName: 'holderinfo'},
{ title: '高管信息', pathName: 'execuinfo'},
{ title: '对外投资', pathName: 'overseas'},
{ title: '分支机构', pathName: 'branch'}
]
},
{ title: '财务简析', pathName: 'financial' },
{
title: '项目商机', pathName: '', children: [
{ title: '重点项目', pathName: 'majorProject' },
{ title: '土地交易', pathName: 'landtransaction' },
{ title: '土地交易', pathName: 'landtransaction'},
{ title: '拟建项目', pathName: 'proposed' },
{ title: '专项债项目', pathName: 'bond' },
{ title: '招标计划', pathName: 'biddingplan' },
{ title: '招标公告', pathName: 'announcement' },
{ title: '标讯Pro', pathName: 'tencent' },
{ title: '行政许可', pathName: 'administrative' }
{ title: '专项债项目', pathName: 'bond'},
{ title: '招标计划', pathName: 'biddingplan'},
{ title: '招标公告', pathName: 'announcement'},
{ title: '标讯Pro', pathName: 'tencent'},
{ title: '行政许可', pathName: 'administrative'}
]
},
{
......
......@@ -125,7 +125,7 @@
<el-table-column label="公司名称" fixed width="380" :resizable="false">
<template slot-scope="scope">
<div class="renling">
<div style="display:flex;flex-align:center">
<div style="display:flex;align-items:center">
<router-link :to="scope.row.other ? `/enterprise/${encodeStr(scope.row.id)}` : `/company/${encodeStr(scope.row.id)}`" tag="a"
class="list-titel-a" v-html="scope.row.name"></router-link>
<!-- 优质甲方tag标签 -->
......@@ -1188,6 +1188,7 @@ export default {
.high-quality-enterprise {
padding: 0px 8px;
line-height: 22px;
height: 22px;
box-sizing: border-box;
background: #ebf1ff;
border-radius: 2px;
......@@ -1195,7 +1196,6 @@ export default {
font-size: 12px;
margin-right: 25px;
white-space: nowrap;
align-self: flex-start;
}
}
......
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