| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- import aop from 'submodule/utils/aop/webapi'
- export default {
- batch_truck: {
- realUrl: 'account/account_balance/batch_truck'
- },
- transfer_carrier: {
- realUrl: 'account/account_balance/transfer_carrier'
- },
- /** 运营策略中心 */
- strategy: {
- /** 运营平台新增车辆 */
- add_carnumber_oppc: {
- realUrl: '/strategy/truck/add_carnumber_oppc'
- },
- /** 通过userid获取绑定车辆列表 */
- find_binding_truck: {
- realUrl: 'strategy/truck/find_binding_truck'
- }
- },
- /** 账户中心 */
- account: {
- /** 获取长城奥扬提现账户列表 */
- list_gway: {
- realUrl: 'account/org_account/list_gway'
- },
- /** 分页查询公对公流水导出 */
- carreir_p2p_log_download: {
- realUrl: 'account/carreir_p2p_log/download',
- responseType: 'blob'
- }
- },
- /** 用户中心 */
- user: {
- /** 变更其他付款启用状态 */
- change_otherpay: {
- realUrl: 'user/carrier_account/change_otherpay'
- },
- /** 修改物流管理者账号 */
- edit_carrier: {
- realUrl: 'user/user/edit_carrier'
- },
- /** 重置密码 */
- reset_password: {
- realUrl: 'user/user/reset_password'
- },
- /** 解绑驾驶员 */
- truck_driver_remove: {
- realUrl: 'user/truck_driver_remove/remove'
- },
- /** 添加物流管理者 */
- add_carrier: {
- realUrl: 'user/user/add_carrier'
- },
- /** 添加物流驾驶员 */
- add_driver: {
- realUrl: 'user/user/add_driver'
- },
- /** 运营平台-修改组织状态 */
- edit_status: {
- realUrl: 'user/org/edit_status'
- },
- /** 物流公司合同签约 */
- carrier_contract: {
- realUrl: 'user/org/carrier_contract'
- },
- /** 物流管理者刷新token(完成物流认证后,需要刷新增加org信息) */
- refresh_carrier_token: {
- realUrl: 'user/oauth/refresh_carrier_token'
- },
- /** 新增驾驶员 */
- add_drivers: {
- realUrl: 'user/driver_white_list/add_drivers'
- },
- /** 导入用户 */
- import_user: {
- realUrl: 'user/import/import_user'
- },
- /** 获取物流公司的所有信息(包含基本信息,认证信息,授权信息等) */
- get_carrier_info: {
- realUrl: 'user/org/get_carrier_info',
- AOP: {
- AR: [aop.AR.storeRes]
- }
- },
- /** 道路运输许可证发起认证 */
- road_transport_up: {
- realUrl: 'user/org_pic/road_transport_up'
- },
- /** 物流开票补充信息保存 */
- carrier_fp_save: {
- realUrl: 'user/org/carrier_fp_save'
- },
- /** 根据关键字获取银行列表 */
- list_by_keywords: {
- realUrl: 'user/bank/list_by_keywords'
- },
- /** 道路运输许可证运营审核 */
- road_transport_audit: {
- realUrl: 'user/org_pic/road_transport_audit'
- }
- },
- /** 消息中心 */
- message: {
- /** OCR识别信息 */
- orc: {
- realUrl: 'message/ocr/orc'
- }
- },
- /** 支付中心 */
- pay: {
- /** 提现协议查询 */
- query_withdraw_protocol: {
- realUrl: 'pay/member/query_withdraw_protocol'
- },
- /** 物流认证通联(会员创建+开户认证+营业执照和法人身份证上传) */
- carrier_open_account: {
- realUrl: 'pay/member/carrier_open_account'
- },
- /** 转账授权 */
- sign_balance_protocol: {
- realUrl: 'pay/member/sign_balance_protocol'
- },
- /** 提现授权 */
- sign_withdraw_protocol: {
- realUrl: 'pay/member/sign_withdraw_protocol'
- },
- /** 企业绑定对公户 */
- bind_bank: {
- realUrl: '/pay/member/bind_bank'
- }
- }
- }
|