执法一张图分辨率调整
This commit is contained in:
parent
2a041d4fcb
commit
3f43cf36ee
|
|
@ -26,6 +26,16 @@
|
||||||
</template>
|
</template>
|
||||||
</el-dropdown>
|
</el-dropdown>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="menu-conten" v-if="topMenuList[projectName].length">
|
||||||
|
<div class="menu-conten-item" v-for="(item, index) in topMenuList[projectName]" :key="index" :title="item.name"
|
||||||
|
@click="handleTo(item)" :class="{ isActive: item.path == topActive }">
|
||||||
|
<span>
|
||||||
|
{{ item.name }}
|
||||||
|
</span>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div class="right-profile">
|
<div class="right-profile">
|
||||||
<span class="zyt" @click="skipPage"><i>综合执法一张图</i></span>
|
<span class="zyt" @click="skipPage"><i>综合执法一张图</i></span>
|
||||||
<span class="el-dropdown-link">
|
<span class="el-dropdown-link">
|
||||||
|
|
@ -49,6 +59,7 @@ import {useUserStore} from '@/stores/modules/user'
|
||||||
import {ElLoading, ElMessage} from 'element-plus'
|
import {ElLoading, ElMessage} from 'element-plus'
|
||||||
import PublicFullScreen from '@/components/PublicFullScreen/index.vue'
|
import PublicFullScreen from '@/components/PublicFullScreen/index.vue'
|
||||||
import NotificationBell from './NotificationBell.vue'
|
import NotificationBell from './NotificationBell.vue'
|
||||||
|
|
||||||
import logo from '@/assets/image/logo.png'
|
import logo from '@/assets/image/logo.png'
|
||||||
import {useRouteStore} from '@/stores/modules/router'
|
import {useRouteStore} from '@/stores/modules/router'
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -48,7 +48,7 @@ public class BigScreenController {
|
||||||
*/
|
*/
|
||||||
@GetMapping("/qytj")
|
@GetMapping("/qytj")
|
||||||
public Result<Map> getEnterpriseStatistics(@CurrentUser RemoteUserInfo user) {
|
public Result<Map> getEnterpriseStatistics(@CurrentUser RemoteUserInfo user) {
|
||||||
return Ok.of(bigScreenService.getEnterpriseStatistics(user));
|
/return Ok.of(bigScreenService.getEnterpriseStatistics(user));
|
||||||
Ok.of(bigScreenService.getEnterpriseStatistics2(user));
|
Ok.of(bigScreenService.getEnterpriseStatistics2(user));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue