派生自 wuyushui/SewerAndRainNetwork

徐旺旺
2021-05-10 cb85033879c74f34925a303402c1ad3e4a8646f2
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
]