You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
458 B
13 lines
458 B
1 year ago
|
'use strict';
|
||
|
const error = require('../../controllers/bigScreen/error');
|
||
|
|
||
|
module.exports = function (app, router, opts) {
|
||
|
|
||
|
|
||
|
app.fs.api.logAttr['GET/bigScreen/patrolRecordIssue'] = { content: '', visible: false };
|
||
|
router.get('/bigScreen/patrolRecordIssue',error.countIssueByState)
|
||
|
|
||
|
app.fs.api.logAttr['GET/bigScreen/patrolRecordDayIssue'] = { content: '', visible: false };
|
||
|
router.get('/bigScreen/patrolRecordDayIssue',error.countDayIssue)
|
||
|
|
||
|
}
|