派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-01-05 4670bf8584dfc0b3abb5b508f9674daeadc751b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// modules/user.js
const getEnterpriseInfo = {
  url: '/oauth/interface/info',
  type: 'get',
  response: () => {
    return {
      code: 200,
      data: {
        info: 'XXXX发生预警信息,XXXX发生预警信息,XXXX发生预警信息,XXXX发生预警信息,更多信息请持续关注!'
      }
    }
  }
}
 
module.exports = [
  getEnterpriseInfo
]