派生自 wuyushui/SewerAndRainNetwork

YANGDL
2021-03-04 54a48765e65feb888acc59d151d5df1557a00bf5
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
]