派生自 wuyushui/SewerAndRainNetwork

seatonwan9
2021-05-31 d4fca49a4b70fe60c730d7e32e2035153a91fcc5
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
]