调整系统菜单和前端路由,修改企业信息查询接口解决数据查询慢的问题
This commit is contained in:
parent
1ce1e32880
commit
16eddc59de
|
|
@ -487,7 +487,6 @@ const baseRoutes = [
|
||||||
children: [
|
children: [
|
||||||
{
|
{
|
||||||
path: 'index',
|
path: 'index',
|
||||||
name: '_index',
|
|
||||||
component: () => import('@views/fxczfgl/index.vue'),
|
component: () => import('@views/fxczfgl/index.vue'),
|
||||||
meta: {
|
meta: {
|
||||||
title: '非现场执法管理'
|
title: '非现场执法管理'
|
||||||
|
|
|
||||||
|
|
@ -32,7 +32,6 @@
|
||||||
{
|
{
|
||||||
"gncdbh": 4,
|
"gncdbh": 4,
|
||||||
"name": "非现场执法",
|
"name": "非现场执法",
|
||||||
"icon": "zyyy_rzzx",
|
|
||||||
"path": "/fxczfgl/index",
|
"path": "/fxczfgl/index",
|
||||||
"router": true
|
"router": true
|
||||||
},
|
},
|
||||||
|
|
|
||||||
|
|
@ -129,9 +129,8 @@
|
||||||
<div class="bg"></div>
|
<div class="bg"></div>
|
||||||
<div class="label">执法装备概览</div>
|
<div class="label">执法装备概览</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="content enterprise_content">
|
<div class="content enterprise_content">
|
||||||
|
<img src="../../assets/bigscreen/59.png">
|
||||||
<div class="content_top">
|
<div class="content_top">
|
||||||
<div class="icon icon3"></div>
|
<div class="icon icon3"></div>
|
||||||
<div class="label">执法车辆数量</div>
|
<div class="label">执法车辆数量</div>
|
||||||
|
|
@ -1879,6 +1878,9 @@ function handCasePageQueryParams(val) {
|
||||||
getCasePage()
|
getCasePage()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function closeCasePage() {
|
||||||
|
casePageShow.value = false
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 非现场执法
|
* 非现场执法
|
||||||
|
|
|
||||||
|
|
@ -166,7 +166,7 @@ const state = reactive({
|
||||||
mode: 'detail',
|
mode: 'detail',
|
||||||
loading: false,
|
loading: false,
|
||||||
baseTitle: '企业分级分类',
|
baseTitle: '企业分级分类',
|
||||||
|
formLabelWidth: '90px',
|
||||||
showFooter: false,
|
showFooter: false,
|
||||||
rules: {
|
rules: {
|
||||||
businessRating: [{required: true, message: '企业分级不能为空', trigger: 'blur'}],
|
businessRating: [{required: true, message: '企业分级不能为空', trigger: 'blur'}],
|
||||||
|
|
|
||||||
|
|
@ -226,6 +226,7 @@ const onRemove = (fileList, id, obj, row) => { // 组件删除文件回调
|
||||||
const defaultValues = reactive(DEFAULT_ENTERPRISE_DETAIL)
|
const defaultValues = reactive(DEFAULT_ENTERPRISE_DETAIL)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function findOne(row) {
|
function findOne(row) {
|
||||||
dialogConfig.value.loading = true
|
dialogConfig.value.loading = true
|
||||||
let defaultVals = {
|
let defaultVals = {
|
||||||
|
|
|
||||||
|
|
@ -105,6 +105,7 @@ public class EnterpriseAuditService {
|
||||||
throw new RuntimeException("联系电话【" + legalPhone + "】在企业上报审核/企业信息管理已存在");
|
throw new RuntimeException("联系电话【" + legalPhone + "】在企业上报审核/企业信息管理已存在");
|
||||||
EnterpriseHistory history = new EnterpriseHistory();
|
EnterpriseHistory history = new EnterpriseHistory();
|
||||||
BeanUtils.copyProperties(audit, history);
|
BeanUtils.copyProperties(audit, history);
|
||||||
|
|
||||||
if (null != user) {
|
if (null != user) {
|
||||||
history.setHistoryTime(now);
|
history.setHistoryTime(now);
|
||||||
history.setTheUserName(user.getXm());
|
history.setTheUserName(user.getXm());
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue