/Static

模块功能

静态资源中有的资源对于本用户是默认不变的,但实质上为其他用户可变的,这里储存哪些在一定情况下可变的内容


GET接口

/orgList: 所有机构获取

request:

header:
  • content-type=
  • token=登录令牌token

    response:

    body:
    1. {
    2. code:20000,
    3. msg:"",
    4. data:{
    5. "orgList":[{},{},{}]
    6. }
    7. }

/orgListByUser: 本用户机构获取

request:

header:
  • content-type=
  • token=登录令牌token

    response:

    body:
    1. {
    2. code:20000,
    3. msg:"",
    4. data:{
    5. "orgList":[{},{},{}]
    6. }
    7. }

/userList:所有用户获取

request:

header:
  • content-type=
  • token=登录令牌token

    response:

    body:
    1. {
    2. code:20000,
    3. msg:"",
    4. data:{
    5. "userList":[{},{},{}]
    6. }
    7. }

/usercodeList:所有用户usercode获取

request:

header:
  • content-type=
  • token=登录令牌token

    response:

    body:
    1. {
    2. code:20000,
    3. msg:"",
    4. data:{
    5. "usercodeList":[{},{},{}]
    6. }
    7. }

/provinceList:所有省市获取

注:暂时不使用:只是作为摆设—当前城市为不可修改的固定项

request:

header:
  • content-type=
  • token=登录令牌token

    response:

    body:
    1. {
    2. code:20000,
    3. msg:"",
    4. data:{
    5. "provinceList":[{},{},{}]
    6. }
    7. }