派生自 wuyushui/SewerAndRainNetwork

XingChuan
2021-05-31 5d3cafca01c6ad878d51533b955b530e12f9d99a
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
]