|
|
|
@ -5,7 +5,7 @@
|
|
|
|
|
<div class="left-info enter-left-info" id="L-header">
|
|
|
|
|
<div class="project-info-title">【企业信息】</div>
|
|
|
|
|
<el-descriptions class="margin-top" :column="2" size="medium" border v-loading="loading">
|
|
|
|
|
<el-descriptions-item label="企业名称">{{ info.qymc }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="企业名称"><span v-if="isZhengwu" @click="goGov(info.tyshxydm)" style="color: #134EE6;text-decoration: underline;cursor: pointer;">{{ info.qymc }}</span><span v-else>{{ info.qymc }}</span></el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="法定代表人" contentClassName="info-link">{{ info.fddbrxm }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="统一社会信用代码" contentClassName="info-link">{{ info.tyshxydm }}</el-descriptions-item>
|
|
|
|
|
<el-descriptions-item label="企业类型">{{ info.qylxmc }}</el-descriptions-item>
|
|
|
|
@ -114,6 +114,7 @@
|
|
|
|
|
<script>
|
|
|
|
|
import { tabOne, tabTwo, tabThree, tabFour, projectProgress } from "./components"
|
|
|
|
|
import { enterpriseBasicInfoId, enterpriseBasicInfoChange } from "@/api/jin_ji_hu/enterList"
|
|
|
|
|
import { returnUrl } from "@/api/jin_ji_hu/login"
|
|
|
|
|
import myDialog from "@/views/components/myDialog/index.vue"
|
|
|
|
|
export default {
|
|
|
|
|
dicts: ['jjh_project_type','jjh_status'],
|
|
|
|
@ -172,6 +173,7 @@ export default {
|
|
|
|
|
enrollType:"",
|
|
|
|
|
business:"",
|
|
|
|
|
},
|
|
|
|
|
isZhengwu:false,
|
|
|
|
|
rules:{
|
|
|
|
|
enterpriseName:[
|
|
|
|
|
{ required: true, message: '请填写企业名称', trigger: 'blur' }
|
|
|
|
@ -210,6 +212,15 @@ export default {
|
|
|
|
|
{ required: true, message: '请填写经营范围', trigger: 'blur' }
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
userToken:null,
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
created(){
|
|
|
|
|
this.userToken = localStorage.getItem('otherToken');
|
|
|
|
|
if(this.userToken) {
|
|
|
|
|
this.isZhengwu = true;
|
|
|
|
|
} else {
|
|
|
|
|
this.isZhengwu = false;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
mounted(){
|
|
|
|
@ -227,6 +238,17 @@ export default {
|
|
|
|
|
window.removeEventListener('resize', this.cancalDebounce);
|
|
|
|
|
},
|
|
|
|
|
methods:{
|
|
|
|
|
// 跳转企业详情
|
|
|
|
|
goGov(tyshxydm){
|
|
|
|
|
returnUrl({code:tyshxydm,userToken:this.userToken}).then(res => {
|
|
|
|
|
if(res.code == 200) {
|
|
|
|
|
const url = res.msg
|
|
|
|
|
console.log(url,"url");
|
|
|
|
|
window.open(url);
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
},
|
|
|
|
|
// 详情查看
|
|
|
|
|
getInfo(id){
|
|
|
|
|
this.loading = true;
|
|
|
|
|
enterpriseBasicInfoId(id).then(res=>{
|
|
|
|
|