修改路由,调整企业信息查询接口

This commit is contained in:
jiangzongtao 2025-05-16 18:36:08 +08:00
parent cd3a9fd6e4
commit 532da97a83
3 changed files with 7 additions and 2 deletions

View File

@ -102,7 +102,7 @@ const baseRoutes = [
name: '_qyxxsb',
component: () => import('@views/dtsjygl/qyxxsb.vue'),
meta: {
title: '企业信息上报审核',
title: '企业信息上报',
},
},
{

View File

@ -77,6 +77,11 @@
<el-link type="primary" @click="handleTune(r.data.row)" title="调整分级分类">调整分级分类</el-link>
</template>
<template #dialogContent="{ dialogConfig: dc }" v-if="dialogConfig.mode === 'tune'">
<el-row style="height: 600px; overflow: auto;">
<el-form :label-width="dc.formLabelWidth" label-position="left">
<qyjbxx :dc="dc"/>
</el-form>
</el-row>
<el-row style="padding-top: 15px; box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);">
<el-col :span="12">
<el-form-item label="企业分级" prop="businessRating">

View File

@ -518,7 +518,7 @@ public class EnterpriseService {
} else if ("tune".equals(operate)) {
save.setBusinessRating(enterprise.getBusinessRating());
save.setBusinessCategory(enterprise.getBusinessCategory());
msg = "类调整";
msg = "级分类调整";
}
EnterpriseHistory history = new EnterpriseHistory();
BeanUtils.copyProperties(o, history);