update loss chk
This commit is contained in:
parent
a4b949bbfe
commit
27d2209ea2
@ -131,6 +131,7 @@ router
|
|||||||
let query = "select w.`name`, w.`mac` as wristband, \
|
let query = "select w.`name`, w.`mac` as wristband, \
|
||||||
coalesce(l.`name`, l2.`name`) as locname, \
|
coalesce(l.`name`, l2.`name`) as locname, \
|
||||||
coalesce(case when tmp2.`wlocrtloc` = 'NG' then null else tmp2.`wlocrtloc` end, ll.`devid`) as locid, \
|
coalesce(case when tmp2.`wlocrtloc` = 'NG' then null else tmp2.`wlocrtloc` end, ll.`devid`) as locid, \
|
||||||
|
case when tmp2.`wlocrtloc` = 'NG' then 1 else 0 end as loss, \
|
||||||
ll.* \
|
ll.* \
|
||||||
from ??.?? w \
|
from ??.?? w \
|
||||||
left join ??.?? tmp2 \
|
left join ??.?? tmp2 \
|
||||||
|
@ -5,7 +5,7 @@ import {convertTime, padding} from '../../../../tools';
|
|||||||
const ListItem = ({i18n, data}) => {
|
const ListItem = ({i18n, data}) => {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Table.Row style={{color: padding(data.timestamp, 13, 1, '0') < (Date.now() - 60000) ? '#f00' : 'inherit'}}>
|
<Table.Row style={{color: data.loss != 0 ? '#f00' : 'inherit'}}>
|
||||||
<Table.Cell>{data.wristband}</Table.Cell>
|
<Table.Cell>{data.wristband}</Table.Cell>
|
||||||
<Table.Cell>{data.name}</Table.Cell>
|
<Table.Cell>{data.name}</Table.Cell>
|
||||||
<Table.Cell>{data.locname}</Table.Cell>
|
<Table.Cell>{data.locname}</Table.Cell>
|
||||||
|
@ -94,7 +94,7 @@ class LocStatusWloc extends React.Component {
|
|||||||
{
|
{
|
||||||
t.list ?
|
t.list ?
|
||||||
t.list.map((tt, idx) => {
|
t.list.map((tt, idx) => {
|
||||||
let isExpire = padding(tt.timestamp, 13, 1, '0') < (Date.now() - 60000) ? true : false;
|
let isExpire = tt.loss == 1 ? true : false;
|
||||||
return (<List.Item key={idx}>
|
return (<List.Item key={idx}>
|
||||||
{
|
{
|
||||||
tt.name ? (
|
tt.name ? (
|
||||||
|
Loading…
Reference in New Issue
Block a user