123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884 |
- const prefix = '/api/admin'
-
- export default {
- image: {
- uploadForAnt: {
- url: `${prefix}/antd/image`,
- method: 'POST',
- action: 'upload',
- },
- upload: {
- url: `${prefix}/image`,
- method: 'POST',
- action: 'upload',
- },
- },
- user: {
- updatePassword: {
- method: 'PUT',
- url: `${prefix}/update/password`,
- action: 'admin.update.password',
- },
- current: {
- method: 'GET',
- url: `${prefix}/taUser/current`,
- action: 'admin.taUser.current.get',
- },
- signin: {
- method: 'POST',
- url: `${prefix}/taUser/signin`,
- login: true,
- action: 'admin.taUser.signin.post',
- },
- signout: {
- method: 'POST',
- url: `${prefix}/taUser/signout`,
- logout: true,
- action: 'signout',
- },
- },
- building: {
- getList: {
- method: 'GET',
- url: `${prefix}/buildinglist`,
- action: 'admin.buildinglist.get',
- },
- updateStatus: {
- method: 'PUT',
- url: `${prefix}/building/update/status`,
- action: 'admin.building.update.status.put',
- },
- addBuilding: {
- method: 'POST',
- url: `${prefix}/building/add`,
- action: 'admin.building.add.post',
- },
- updateBuilding: {
- method: 'PUT',
- url: `${prefix}/building/update`,
- action: 'admin.building.update.put',
- },
- buildingGetById: {
- method: 'GET',
- url: `${prefix}/buildingSelectId/:id`,
- action: 'admin.buildingSelectId.id.get',
- },
- deleteBuilding: {
- method: 'DELETE',
- url: `${prefix}/building/delete/:id`,
- action: 'admin.building.delete.id.delete',
- },
- buildingApartment: {
- method: 'GET',
- url: `${prefix}/buildingApartment/buildingId/:id`,
- action: 'admin.buildingApartment.buildingId.id.get',
- },
- buildingApartmentGetById: {
- method: 'GET',
- url: `${prefix}/buildingApartment/:id`,
- action: 'admin.buildingApartment.id.get',
- },
- buildingApartmentUpdate: {
- method: 'PUT',
- url: `${prefix}/buildingApartment/update`,
- action: 'admin.buildingApartment.update.put',
- },
- buildingApartmentAdd: {
- method: 'POST',
- url: `${prefix}/buildingApartment/add`,
- action: 'admin.buildingApartment.add.post',
- },
- buildingApartmentDelete: {
- method: 'DELETE',
- url: `${prefix}/apartment/deleted/:id`,
- action: 'admin.apartment.deleted.id.delete',
- },
- buildingSelect: {
- url: `${prefix}/buildinglist/select`,
- method: 'GET',
- action: 'select',
- },
- getMiniappName: {
- url: `${prefix}/getMiniappName`,
- method: 'GET',
- action: 'select',
- },
- },
- buildingType: {
- getList: {
- method: 'GET',
- url: `${prefix}/tdBuildingType`,
- action: 'admin.tdBuildingType.get',
- },
- delete: {
- method: 'DELETE',
- url: `${prefix}/tdBuildingType/:id`,
- action: 'admin.tdBuildingType.id.delete',
- },
- update: {
- method: 'PUT',
- url: `${prefix}/tdBuildingType/:id`,
- action: 'admin.tdBuildingType.id.put',
- },
- add: {
- method: 'POST',
- url: `${prefix}/tdBuildingType`,
- action: 'admin.tdBuildingType.post',
- },
- getById: {
- method: 'GET',
- url: `${prefix}/tdBuildingType/:id`,
- action: 'admin.tdBuildingType.id.get',
- },
- },
- news: {
- getList: {
- method: 'GET',
- url: `${prefix}/taNews`,
- action: 'admin.taNews.get',
- },
- delete: {
- method: 'DELETE',
- url: `${prefix}/taNews/:id`,
- action: 'admin.taNews.id.delete',
- },
- cancel: {
- method: 'PUT',
- url: `${prefix}/taNews/:id`,
- action: 'admin.taNews.id.put',
- },
- get: {
- method: 'GET',
- url: `${prefix}/taNews/:id`,
- action: 'admin.taNews.id.get',
- },
- post: {
- method: 'POST',
- url: `${prefix}/taNews`,
- action: 'admin.taNews.post',
- },
- put: {
- method: 'PUT',
- url: `${prefix}/taNews/:id`,
- action: 'admin.taNews.id.put',
- },
- weight: {
- method: 'PUT',
- url: `${prefix}/taNews/weight`,
- action: 'admin.taNews.weight.put',
- }
- },
- newsType: {
- list: {
- method: 'GET',
- url: `${prefix}/taNewsType`,
- action: 'admin.taNewsType.get',
- },
- delete: {
- method: 'DELETE',
- url: `${prefix}/taNewsType/:id`,
- action: 'admin.taNewsType.id.delete',
- },
- put: {
- method: 'PUT',
- url: `${prefix}/taNewsType/:id`,
- action: 'admin.taNewsType.id.delete',
- },
- post: {
- method: 'POST',
- url: `${prefix}/taNewsType`,
- action: 'admin.taNewsType.post',
- },
- get: {
- method: 'GET',
- url: `${prefix}/taNewsType/:id`,
- action: 'admin.taNewsType.get',
- }
- },
- customer: {
- drift: {
- method: 'GET',
- url: `${prefix}/customer/recommend/drift`,
- action: 'admin.customer.recommend.drift.get',
- },
- report: {
- method: 'GET',
- url: `${prefix}/customer/recommend/report`,
- action: 'admin.customer.recommend.report.get',
- },
- recommender: {
- method: 'GET',
- url: `${prefix}/customer/recommend/recommender`,
- action: 'admin.customer.recommend.recommender.get',
- },
- auto: {
- method: 'PUT',
- url: `${prefix}/customer/recommend/verify/:id`,
- action: 'admin.customer.recommend.verify.id.put',
- },
- recommendGetById: {
- method: 'GET',
- url: `${prefix}/customer/recommend/getById/:id`,
- action: 'admin.customer.recommend.getById.id.get',
- },
- agents: {
- method: 'GET',
- url: `${prefix}/customer/agents`,
- action: 'admin.customer.agents.get',
- },
- customerRecommend: {
- method: 'GET',
- url: `${prefix}/customer/recommend`,
- action: 'admin.customer.recommend.get',
- },
- consultant: {
- method: 'GET',
- url: `${prefix}/consultant`,
- action: 'admin.consultant.get',
- },
- recommendEdit: {
- method: 'PUT',
- url: `${prefix}/customer/recommend/edit/:id`,
- action: 'admin.customer.recommend.edit.id.put',
- },
- taPointsRecords: {
- method: 'GET',
- url: `${prefix}/mine/taPointsRecords/:id`,
- action: 'admin.mine.taPointsRecords.id.get',
- },
- recommend: {
- method: 'GET',
- url: `${prefix}/customer/recommend/:id`,
- action: 'admin.customer.recommend.id.get',
- },
- InviteClientsList: {
- method: 'GET',
- url: `${prefix}/channel/InviteClientsList`,
- action: 'admin.channel.InviteClientsList.get',
- },
- CustomerRecommendGet: {
- method: 'GET',
- url: `${prefix}/customer/recommend/get/:id`,
- action: 'admin.customer.recommend.get.id.get',
- },
- customerRecommendRecommenderExport: { // 导出数据(推荐客户)
- method: 'GET',
- url: `${prefix}/customer/recommend/recommender/export`,
- action: 'admin.customer.recommend.recommender.export.get',
- },
- customerRecommendReportExport: { // 导出数据(报备客户)
- method: 'GET',
- url: `${prefix}/customer/recommend/report/export`,
- action: 'admin.customer.recommend.report.export.get',
- },
- customerRecommendAgentsExport: { // 导出数据(经纪人)
- method: 'GET',
- url: `${prefix}/customer/recommend/agents/export`,
- action: 'admin.customer.recommend.agents.export.get',
- },
- customerRecommendExport: { // 导出数据(客户列表)
- method: 'GET',
- url: `${prefix}/customer/recommend/export`,
- action: 'admin.customer.recommend.export.get',
- },
- },
- indexEcharts: {
- list:{
- method:'GET',
- url: `${prefix}/indexStatistical`,
- action: 'userStatistics',
- },
- userResource: {
- method: 'GET',
- url: `${prefix}/selectUserResource`,
- action: 'userStatistics',
- },
- list:{
- method:'Get',
- url: `${prefix}/indexStatistical`,
- action:'select',
- },
- userBehavior: {
- summary: {
- method: 'GET',
- url: `${prefix}/selectUserBehavior`,
- action: 'userBehaviorStatistics',
- },
- profile: {
- method: 'GET',
- url: `${prefix}/selectEventAll`,
- action: 'behaviorIncident',
- },
- },
- bizEvent: {
- dict: {
- method:'get',
- url: `${prefix}/tdBizEventType`,
- action:'select',
- },
- list: {
- method:'get',
- url: `${prefix}/tdBizEvent`,
- action:'select',
- },
- properties: {
- method:'get',
- url: `${prefix}/taEventProperties`,
- action:'select',
- },
- },
- userActive: {
- method: 'GET',
- url: `${prefix}/selectActiveUserCount`,
- action: 'selectActiveUserCount',
- },
- userSex: {
- method: 'GET',
- url: `${prefix}/selectSexUser`,
- action: 'selectSexUser',
- },
- newUser: {
- method: 'GET',
- url: `${prefix}/selectNewsUserCount`,
- action: 'selectNewsUserCount',
- },
- userConversion: {
- method: 'GET',
- url: `${prefix}/selectConversion`,
- action: 'selectConversion',
- },
- intentionUsers: {
- method: 'GET',
- url: `${prefix}/selectIntentionUser`,
- action: 'selectIntentionUser',
- },
- userCity: {
- method: 'get',
- url: `${prefix}/selectCityUser`,
- action: 'admin.selectCityUser.get',
- },
-
-
- },
- activity: {
- list: {
- method: 'GET',
- url: `${prefix}/iBuildingDynamicList`,
- action: 'admin.iBuildingDynamicList.get',
- },
- weight: {
- method: 'PUT',
- url: `${prefix}/buildingDynamic/weight`,
- action: 'admin.buildingDynamic.weight.put',
- },
- cancel: {
- method: 'PUT',
- url: `${prefix}/buildingDynamic/cancel/:id`,
- action: 'admin.buildingDynamic.cancel.dynamicId.put',
- },
- send: {
- url: `${prefix}/buildingDynamic/send/:id`,
- method: 'PUT',
- action: 'admin.buildingDynamic.send.dynamicId.put',
- },
- finish: {
- url: `${prefix}/buildingDynamic/finish`,
- method: 'PUT',
- action: 'admin.buildingDynamic.finish.put',
- },
- details: {
- url: `${prefix}/buildingDynamic/Details`,
- method: 'GET',
- action: 'admin.buildingDynamic.Details.get',
- },
- update: {
- url: `${prefix}/buildingDynamic/update`,
- method: 'PUT',
- action: 'admin.buildingDynamic.update.put',
- },
- add: {
- url: `${prefix}/buildingDynamic/add`,
- method: 'POST',
- action: 'admin.buildingDynamic.add.post',
- },
- poster: {
- url: `${prefix}/poster`,
- method: 'GET',
- action: 'admin.poster.get',
- },
- usedPoster: {
- url: `${prefix}/used/poster`,
- method: 'GET',
- action: 'admin.used.poster.get',
- },
- updatePoster: {
- url: `${prefix}/poster/:id`,
- method: 'PUT',
- action: 'admin.poster.id.put',
- },
- addPoster: {
- url: `${prefix}/poster`,
- method: 'POST',
- action: 'admin.poster.post',
- },
- shareContent: {
- url: `${prefix}/shareContent`,
- method: 'GET',
- action: 'admin.shareContent.get',
- },
- updateShareContent: {
- url: `${prefix}/shareContent/:id`,
- method: 'PUT',
- action: 'admin.shareContent.id.put',
- },
- addShareContent: {
- url: `${prefix}/shareContent`,
- method: 'POST',
- action: 'admin.shareContent.post',
- },
- signList: {
- url: `${prefix}/SignList`,
- method: 'GET',
- action: 'admin.SignList.get',
- },
- taDrainage: {
- url: `${prefix}/taDrainage`,
- method: 'GET',
- action: 'admin.taDrainage.get',
- },
- addtaDrainage: {
- url: `${prefix}/taDrainage/add`,
- method: 'POST',
- action: 'admin.taDrainage.add.post',
- },
- deletetaDrainage: {
- url: `${prefix}/taDrainage/:id`,
- method: 'DELETE',
- action: 'admin.taDrainage.id.delete',
- },
- updatetaDrainage: {
- url: `${prefix}/taDrainage/:id`,
- method: 'PUT',
- action: 'admin.taDrainage.id.put',
- },
- taDrainageRecord:{
- url: `${prefix}/taDrainageRecord`,
- method: 'GET',
- action: 'admin.taDrainageRecord.get',
- },
- exporttaDrainageRecord:{
- url: `${prefix}/taDrainageRecord/export`,
- method: 'GET',
- action: 'admin.taDrainageRecord/export.get',
- }
- },
- integralMall: {
- tdPointsRules: {
- url: `${prefix}/tdPointsRules`,
- method: 'GET',
- action: 'admin.tdPointsRules.get',
- },
- rulesDetail: {
- url: `${prefix}/tdPointsRules/:id`,
- method: 'GET',
- action: 'admin.tdPointsRules.id.get',
- },
- rulesUpdate: {
- url: `${prefix}/tdPointsRules`,
- method: 'PUT',
- action: 'admin.tdPointsRules.put',
- },
- change: {
- url: `${prefix}/tdPointsRules/change`,
- method: 'PUT',
- action: 'admin.tdPointsRules.change.put',
- },
- taGoods: {
- url: `${prefix}/taGoods/:id`,
- method: 'GET',
- action: 'admin.taGoods.id.get',
- },
- updateTaGoods: {
- url: `${prefix}/taGoods`,
- method: 'PUT',
- action: 'admin.taGoods.put',
- },
- addTaGoods: {
- url: `${prefix}/taGoods/add`,
- method: 'POST',
- action: 'admin.taGoods.add.post',
- },
- taPointsExchange: {
- url: `${prefix}/taPointsExchange`,
- method: 'GET',
- action: 'admin.taPointsExchange.get',
- },
- getTaGoods: {
- url: `${prefix}/taGoods`,
- method: 'GET',
- action: 'admin.taGoods.get',
- },
- changeTaGoods: {
- url: `${prefix}/taGoods/change`,
- method: 'PUT',
- action: 'admin.taGoods.change.put',
- },
- changeTaPointsExchange: {
- url: `${prefix}/taPointsExchange/change`,
- method: 'PUT',
- action: 'admin.taPointsExchange.change.put',
- },
- },
- carsuseFigure: {
- extendContent: {
- url: `${prefix}/extendContent`,
- method: 'GET',
- action: 'admin.extendContent.get',
- },
- finish: {
- url: `${prefix}/buildingDynamic/finish`,
- method: 'PUT',
- action: 'admin.buildingDynamic.finish.put',
- },
- updataExtendContent: {
- url: `${prefix}/extendContent/:id`,
- method: 'PUT',
- action: 'admin.extendContent.id.put',
- },
- getExtendContent: {
- url: `${prefix}/extendContent/:id`,
- method: 'GET',
- action: 'admin.extendContent.id.get',
- },
- addExtendContent: {
- url: `${prefix}/extendContent`,
- method: 'POST',
- action: 'admin.extendContent.post',
- },
- },
- system: {
- taPolicy: {
- url: `${prefix}/taPolicy/:id`,
- method: 'GET',
- action: 'admin.taPolicy.id.get',
- },
- updateTaPolicy: {
- url: `${prefix}/taPolicy/:id`,
- method: 'PUT',
- action: 'admin.taPolicy.id.put',
- },
- addTaPolicy: {
- url: `${prefix}/taPolicy`,
- method: 'POST',
- action: 'admin.taPolicy.post',
- },
- getTaPolicy: {
- url: `${prefix}/taPolicy`,
- method: 'GET',
- action: 'admin.taPolicy.get',
- },
- deleteTaPolicy: {
- url: `${prefix}/taPolicy/:id`,
- method: 'DELETE',
- action: 'admin.taPolicy.id.delete',
- },
- tdBizEventIntention: {
- url: `${prefix}/tdBizEventIntention`,
- method: 'GET',
- action: 'admin.tdBizEventIntention.get',
- },
- taBuildingIntentionAddOrUpdate: {
- url: `${prefix}/taBuildingIntentionAddOrUpdate/:id`,
- method: 'POST',
- action: 'admin.taBuildingIntentionAddOrUpdate.buildingId.post',
- },
- taCustomerMessage: {
- url: `${prefix}/taCustomerMessage`,
- method: 'GET',
- action: 'admin.taCustomerMessage.get',
- },
- tdReports: {
- url: `${prefix}/tdReports`,
- method: 'GET',
- action: 'admin.tdReports.get',
- },
- taBuildingReports: {
- url: `${prefix}/taBuildingReports`,
- method: 'GET',
- action: 'admin.taBuildingReports.get',
- },
- addTaBuildingReports: {
- url: `${prefix}/taBuildingReport/add`,
- method: 'POST',
- action: 'admin.taBuildingReport.add.post',
- },
-
- documentVerifylist:{
- url: `${prefix}/documentVerify`,
- method: 'GET',
- action: 'admin.documentVerify.get',
- },
- documentVerifyDetail:{
- url: `${prefix}/documentVerify/:id`,
- method: 'GET',
- action: 'admin.documentVerify.id.get',
- },
- updateTaPolicy: {
- url: `${prefix}/documentVerify/:id`,
- method: 'PUT',
- action: 'admin.documentVerify.id.put',
- },
- // /admin/documentVerify 查询审核列表,参数 pageNum, pageSize, name, tel
- // /documentVerify/{id} 根据id查询详情
- // /admin/documentVerify/{id} 根据Id修改
- },
- staff: {
- taUser: {
- url: `${prefix}/taUser`,
- method: 'GET',
- action: 'admin.taUser.get',
- },
- taTags: {
- url: `${prefix}/taTags`,
- method: 'GET',
- action: 'admin.taTags.get',
- },
- getTaUser: {
- url: `${prefix}/taUser/:id`,
- method: 'GET',
- action: 'admin.taUser.id.get',
- },
- updateTaUser: {
- url: `${prefix}/taUser/:id`,
- method: 'PUT',
- action: 'admin.taUser.id.put',
- },
- addTaUser: {
- url: `${prefix}/taUser`,
- method: 'POST',
- action: 'admin.taUser.post',
- },
- change: {
- url: `${prefix}/turn/taUser/:id/:type`,
- method: 'PUT',
- action: 'admin.turn.taUser.put',
- },
- },
- channelList: {
- getList: {
- url: `${prefix}/channel`,
- method: 'GET',
- action: 'admin.channel.get',
- },
- addChannel: {
- url: `${prefix}/channel`,
- method: 'POST',
- action: 'admin.channel.post',
- },
- getById: {
- url: `${prefix}/channel/:id`,
- method: 'GET',
- action: 'admin.channel.id.get',
- },
- editChannel: {
- url: `${prefix}/channel/:id`,
- method: 'PUT',
- action: 'admin.channel.id.put',
- },
- getListBroker: {
- url: `${prefix}/channel/broker`,
- method: 'GET',
- action: 'admin.channel.broker.get',
- },
- getListRecommend: {
- url: `${prefix}/customer/recommend/:id`,
- method: 'GET',
- action: 'admin.customer.recommend.id.get',
- },
- getListInvite: {
- url: `${prefix}/channel/InviteClientsList`,
- method: 'GET',
- action: 'admin.channel.InviteClientsList.get',
- },
- },
- role: {
- getRoleList: {
- url: `${prefix}/taRole`,
- method: 'GET',
- action: 'admin.taRole.get',
- },
- stop: {
- url: `${prefix}/taRole/stop/:id`,
- method: 'PUT',
- action: 'admin.taRole.stop.id.PUT',
- },
- menuList: {
- url: `${prefix}/menuList`,
- method: 'GET',
- action: 'admin.menuList.get',
- },
- buttonList: {
- url: `${prefix}/buttonList`,
- method: 'GET',
- action: 'admin.buttonList.get',
- },
- buttonAndMenuList: {
- url: `${prefix}/taRole/details/:id`,
- method: 'GET',
- action: 'admin.taRole.details.id.get'
- },
- updateAuthMenu: {
- url: `${prefix}/updateAuthMenu`,
- method: 'POST',
- action: 'admin.updateAuthMenu.post',
- },
- },
- helpActivity: {
- list: {
- url: `${prefix}/helpActivity/list`,
- method: 'GET',
- action: 'admin.taRole.get',
- },
- add: {
- url: `${prefix}/helpActivity/add`,
- method: 'post',
- action: 'admin.taRole.get',
- },
- details: {
- url: `${prefix}/helpActivity/details`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- update: {
- url: `${prefix}/helpActivity/update`,
- method: 'put',
- action: 'admin.taRole.get',
- },
- top: {
- url: `${prefix}/top/update`,
- method: 'post',
- action: 'admin.taRole.get',
- },
- record: {
- url: `${prefix}/helpRecord`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- helpPeopleDetails: {
- url: `${prefix}/taHelpRecord/details`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- verification: {
- url: `${prefix}/helpInitiateRecordVerify`,
- method: 'post',
- action: 'admin.taRole.get',
- },
- HelpInitiateRecordSucceed: {
- url: `${prefix}/HelpInitiateRecordSucceed/export`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- gethelpRecordExport: {
- url: `${prefix}/helpRecord/export`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- },
- groupActivity: {
- list: {
- url: `${prefix}/taShareActivity/list`,
- method: 'get',
- action: 'admin.taShareActivity.get',
- },
- add: {
- url: `${prefix}/taShareActivity`,
- method: 'post',
- action: 'admin.taRole.get',
- },
- details: {
- url: `${prefix}/taShareActivity/:id`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- avgScore: {
- url: `${prefix}/taShareActivity/avgScore`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- update: {
- url: `${prefix}/taShareActivity/update`,
- method: 'put',
- action: 'admin.taRole.get',
- },
- finish: {
- url: `${prefix}/taShareActivity/finish/:id`,
- method: 'put',
- action: 'admin.taShareActivity.finish',
- },
- top: {
- url: `${prefix}/taShareActivity/weight`,
- method: 'put',
- action: 'admin.taShareActivity.weight',
- },
- shareSuccList: {
- url: `${prefix}/taShareSuccessRecord`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- shareFailList : {
- url: `${prefix}/taShareFailAndProcessingRecord`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- shareChildList : {
- url: `${prefix}/taShareChildRecord`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- exportShareChildRecord: {
- url: `${prefix}/taShareChildRecord/export`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- exportShareRecord: {
- url: `${prefix}/taShareRecord/export`,
- method: 'get',
- action: 'admin.taRole.get',
- },
- verification: {
- url: `${prefix}/taShareRecord/verificate`,
- method: 'put',
- action: 'admin.taRole.get',
- }
- },
- third: {
- thirdPartyMiniapp: {
- url: `${prefix}/thirdPartyMiniapp`,
- method: 'GET',
- action: 'admin.thirdPartyMiniapp.get',
- },
- update: {
- url: `${prefix}/thirdPartyMiniapp/update`,
- method: 'PUT',
- action: 'admin.thirdPartyMiniapp.update.put',
- },
- add: {
- url: `${prefix}/thirdPartyMiniapp/add`,
- method: 'POST',
- action: 'admin.thirdPartyMiniapp.add.post',
- },
- details: {
- url: `${prefix}/thirdPartyMiniapp/:id`,
- method: 'GET',
- action: 'admin.thirdPartyMiniapp.id.get',
- },
- },
- poster: {
- posterTemplate: {
- url: `${prefix}/posterTemplate`,
- method: 'GET',
- action: 'admin.posterTemplate.get',
- },
- }
- }
|