wenlele 2 years ago
parent
commit
7578cff49e
  1. 8
      api/app/lib/controllers/alarm/data.js
  2. 2
      api/app/lib/service/clickHouseClient.js
  3. 5
      web/client/src/layout/containers/layout/index.jsx

8
api/app/lib/controllers/alarm/data.js

@ -90,8 +90,9 @@ async function list (ctx) {
let alarmQueryOptionStr = ` let alarmQueryOptionStr = `
FROM FROM
alarms alarms
LEFT JOIN DeviceStatus ${//LEFT JOIN DeviceStatus
ON DeviceStatus.DeviceId = alarms.SourceId //ON DeviceStatus.DeviceId = alarms.SourceId
''}
LEFT JOIN ${anxinyun}.t_structure LEFT JOIN ${anxinyun}.t_structure
ON ${anxinyun}.t_structure.id = alarms.StructureId ON ${anxinyun}.t_structure.id = alarms.StructureId
LEFT JOIN ${anxinyun}.t_alarm_code LEFT JOIN ${anxinyun}.t_alarm_code
@ -109,7 +110,8 @@ async function list (ctx) {
SourceTypeId, SourceTypeId,
AlarmAdviceProblem, AlarmGroup, AlarmGroupUnit, AlarmAdviceProblem, AlarmAdviceProblem, AlarmGroup, AlarmGroupUnit, AlarmAdviceProblem,
alarms.StructureId AS StructureId, alarms.StructureId AS StructureId,
DeviceStatus.Status AS DeviceStatus, ${//`DeviceStatus.Status AS DeviceStatus,`
''}
${anxinyun}.t_structure.name AS StructureName, ${anxinyun}.t_structure.name AS StructureName,
${anxinyun}.t_structure.longitude AS StructureLongitude, ${anxinyun}.t_structure.longitude AS StructureLongitude,
${anxinyun}.t_structure.latitude AS StructureLatitude, ${anxinyun}.t_structure.latitude AS StructureLatitude,

2
api/app/lib/service/clickHouseClient.js

@ -11,7 +11,7 @@ function factory (app, opts) {
app.fs.clickHouse[d.name] = new ClickHouse({ app.fs.clickHouse[d.name] = new ClickHouse({
url: url, url: url,
port: port, port: port,
debug: true || opts.dev, debug: opts.dev,
format: "json", format: "json",
basicAuth: user && password ? { basicAuth: user && password ? {
username: user, username: user,

5
web/client/src/layout/containers/layout/index.jsx

@ -140,6 +140,11 @@ const LayoutContainer = props => {
useEffect(() => { useEffect(() => {
let pathnameArr = location.pathname.split('/') let pathnameArr = location.pathname.split('/')
if (location.pathname == '/userCenter') {
localStorage.setItem('poms_open_sider', JSON.stringify([]))
localStorage.removeItem('poms_selected_sider')
setLeftShow(false)
}
let openArr = [] let openArr = []
for (let i = 0; i < allItems.length; i++) { for (let i = 0; i < allItems.length; i++) {
if (allItems[i].items) { if (allItems[i].items) {

Loading…
Cancel
Save