修改路由,调整企业信息查询接口
This commit is contained in:
parent
cd3a9fd6e4
commit
532da97a83
|
|
@ -102,7 +102,7 @@ const baseRoutes = [
|
|||
name: '_qyxxsb',
|
||||
component: () => import('@views/dtsjygl/qyxxsb.vue'),
|
||||
meta: {
|
||||
title: '企业信息上报审核',
|
||||
title: '企业信息上报',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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">
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in New Issue