How to use axios.post method in Appium

Best JavaScript code snippet using appium

apis.js

Source:apis.js Github

copy

Full Screen

1import axios from 'axios';2// function to get number from DB calling our Server API3export const getNumbersFromDb = () =>{4 return new Promise((resolve,reject)=>{5 axios.post(`/getNumbers`, {})6 .then(function (response) {7 resolve(response.data);8 })9 .catch(function (error) {10 reject(error)11 });12 })13}14export const putNumbersToDb = (request) =>{15 return new Promise((resolve,reject)=>{16 axios.post(`/putNumbers`, JSON.parse(request))17 .then(function (response) {18 resolve(response);19 })20 .catch(function (error) {21 reject(error)22 });23 })24}25export const signUp = (request) =>{26 return new Promise((resolve,reject)=>{27 axios.post(`/signUp`, JSON.parse(request))28 .then(function (response) {29 resolve(response);30 })31 .catch(function (error) {32 reject(error)33 });34 })35}36export const singUpWithToken = (request) =>{37 return new Promise((resolve,reject)=>{38 axios.post(`/singUpWithToken`, JSON.parse(request))39 .then(function (response) {40 resolve(response);41 })42 .catch(function (error) {43 reject(error)44 });45 })46}47export const logIn = (request) =>{48 return new Promise((resolve,reject)=>{49 axios.post(`/logIn`, JSON.parse(request),{withCredentials: true})50 .then(function (response) {51 resolve(response);52 })53 .catch(function (error) {54 reject(error)55 });56 })57}58export const reSendVerficationEmail = (request) =>{59 return new Promise((resolve,reject)=>{60 axios.post(`/reSendVerficationEmail`, request,{withCredentials: true})61 .then(function (response) {62 resolve(response);63 })64 .catch(function (error) {65 reject(error)66 });67 })68}69export const logInHidden = (request) =>{70 return new Promise((resolve,reject)=>{71 axios.post(`/logInHidden`, JSON.parse(request),{withCredentials: true})72 .then(function (response) {73 resolve(response);74 })75 .catch(function (error) {76 reject(error)77 });78 })79}80export const loginWithoutEmail = (request) =>{81 return new Promise((resolve,reject)=>{82 axios.post(`/LoginWithoutEmail`, request,{withCredentials: true})83 .then(function (response) {84 resolve(response);85 })86 .catch(function (error) {87 reject(error)88 });89 })90}91export const mergeVideos = (request) =>{92 return new Promise((resolve,reject)=>{93 axios.post(`/merge-video`, request,{withCredentials: true})94 .then(function (response) {95 resolve(response);96 })97 .catch(function (error) {98 reject(error)99 });100 })101}102export const trimVideo = (request) =>{103 return new Promise((resolve,reject)=>{104 axios.post(`/trimVideo`, request,{withCredentials: true})105 .then(function (response) {106 resolve(response);107 })108 .catch(function (error) {109 reject(error)110 });111 })112}113export const flipVideo = (request) =>{114 return new Promise((resolve,reject)=>{115 axios.post(`/api/v1/flipVideo`, request,{withCredentials: true})116 .then(function (response) {117 resolve(response);118 })119 .catch(function (error) {120 reject(error)121 });122 })123}124export const setUserPassword = (request) =>{125 return new Promise((resolve,reject)=>{126 axios.post(`/setUserPassword`, request,{withCredentials: true})127 .then(function (response) {128 resolve(response);129 })130 .catch(function (error) {131 reject(error)132 });133 })134}135export const InviteUser = (request) =>{136 return new Promise((resolve,reject)=>{137 axios.post(`/InviteUsers`, request,{withCredentials: true})138 .then(function (response) {139 resolve(response);140 })141 .catch(function (error) {142 reject(error)143 });144 })145}146export const updateUserDetails = (request) =>{147 return new Promise((resolve,reject)=>{148 axios.post(`/updateUserDetails`, JSON.parse(request),{withCredentials: true})149 .then(function (response) {150 resolve(response);151 })152 .catch(function (error) {153 reject(error)154 });155 })156}157export const updateUserMouthguardDetails = (request) =>{158 return new Promise((resolve,reject)=>{159 axios.post(`/updateUserMouthguardDetails`, JSON.parse(request),{withCredentials: true})160 .then(function (response) {161 resolve(response);162 })163 .catch(function (error) {164 reject(error)165 });166 })167}168export const VerifyVerificationCode = (request) =>{169 return new Promise((resolve,reject)=>{170 axios.post(`/VerifyVerificationCode`, request,{withCredentials: true})171 .then(function (response) {172 resolve(response);173 })174 .catch(function (error) {175 reject(error)176 });177 })178}179export const VerifyNumber = (request) =>{180 return new Promise((resolve,reject)=>{181 axios.post(`/VerifyNumber`, request,{withCredentials: true})182 .then(function (response) {183 resolve(response);184 })185 .catch(function (error) {186 reject(error)187 });188 })189}190export const logInFirstTime = (request) =>{191 return new Promise((resolve,reject)=>{192 axios.post(`/logInFirstTime`, JSON.parse(request),{withCredentials: true})193 .then(function (response) {194 resolve(response);195 })196 .catch(function (error) {197 reject(error)198 });199 })200}201export const isAuthenticated = (request) =>{202 return new Promise((resolve,reject)=>{203 axios.post(`/isAuthenticated`, JSON.parse(request),{withCredentials: true})204 .then(function (response) {205 resolve(response);206 })207 .catch(function (error) {208 reject(error)209 });210 })211}212export const listUsers = (request) =>{213 return new Promise((resolve,reject)=>{214 axios.post(`/listUsers`, {})215 .then(function (response) {216 resolve(response);217 })218 .catch(function (error) {219 reject(error)220 });221 })222}223export const enableUser = (request) =>{224 return new Promise((resolve,reject)=>{225 axios.post(`/enableUser`, JSON.parse(request))226 .then(function (response) {227 resolve(response);228 })229 .catch(function (error) {230 reject(error)231 });232 })233}234export const disableUser = (request) =>{235 return new Promise((resolve,reject)=>{236 axios.post(`/disableUser`, JSON.parse(request))237 .then(function (response) {238 resolve(response);239 })240 .catch(function (error) {241 reject(error)242 });243 })244}245export const uploadProfilePic = (request) =>{246 return new Promise((resolve,reject)=>{247 axios.post(`/uploadProfilePic`, request,{withCredentials: true})248 .then(function (response) {249 resolve(response);250 })251 .catch(function (error) {252 reject(error)253 });254 })255}256export const uploadProfileSelfie = (request) =>{257 return new Promise((resolve,reject)=>{258 axios.post(`/uploadProfileSelfie`, request,{withCredentials: true})259 .then(function (response) {260 resolve(response);261 })262 .catch(function (error) {263 reject(error)264 });265 })266}267export const uploadSensorDataAndCompute = (request) =>{268 return new Promise((resolve,reject)=>{269 axios.post(`/uploadSensorDataAndCompute`, request,{withCredentials: true})270 .then(function (response) {271 resolve(response);272 })273 .catch(function (error) {274 reject(error)275 });276 })277}278export const uploadSidelineImpactVideo = (request) =>{279 return new Promise((resolve,reject)=>{280 axios.post(`/uploadSidelineImpactVideo`, request,{withCredentials: true})281 .then(function (response) {282 resolve(response);283 })284 .catch(function (error) {285 reject(error)286 });287 })288}289export const removeVideo = (request) =>{290 return new Promise((resolve,reject)=>{291 axios.post(`/removeVideo`, request,{withCredentials: true})292 .then(function (response) {293 resolve(response);294 })295 .catch(function (error) {296 reject(error)297 });298 })299}300export const resetToOriginal = (request) =>{301 return new Promise((resolve,reject)=>{302 axios.post(`/resetToOriginal`, request,{withCredentials: true})303 .then(function (response) {304 resolve(response);305 })306 .catch(function (error) {307 reject(error)308 });309 })310}311export const getUserDetails = (request) =>{312 return new Promise((resolve,reject)=>{313 axios.post(`/getUserDetails`, request,{withCredentials: true})314 .then(function (response) {315 resolve(response);316 })317 .catch(function (error) {318 reject(error)319 });320 })321}322export const getAvatarInspection = (request) =>{323 return new Promise((resolve,reject)=>{324 axios.post(`/getAvatarInspection`, request,{withCredentials: true})325 .then(function (response) {326 resolve(response);327 })328 .catch(function (error) {329 reject(error)330 });331 })332}333export const getUserDBDetails = (request) =>{334 return new Promise((resolve,reject)=>{335 axios.post(`/getUserDBDetails`, request,{withCredentials: true})336 .then(function (response) {337 resolve(response);338 })339 .catch(function (error) {340 reject(error)341 });342 })343}344export const getUserDetailsByAccountID = (request) =>{345 return new Promise((resolve,reject)=>{346 axios.post(`/getUserDetailsByAccountID`, request,{withCredentials: true})347 .then(function (response) {348 resolve(response);349 })350 .catch(function (error) {351 reject(error)352 });353 })354}355export const getUserDataByPlayerID = (request) =>{356 return new Promise((resolve,reject)=>{357 axios.post(`/getUserDataByPlayerID`, request,{withCredentials: true})358 .then(function (response) {359 resolve(response);360 })361 .catch(function (error) {362 reject(error)363 });364 })365}366export const getUserTokenDBDetails = (request) =>{367 return new Promise((resolve,reject)=>{368 axios.post(`/getUserTokenDBDetails`, request,{withCredentials: true})369 .then(function (response) {370 resolve(response);371 })372 .catch(function (error) {373 reject(error)374 });375 })376}377export const getProfilePicLink = (request) =>{378 return new Promise((resolve,reject)=>{379 axios.post(`/getProfilePicLink`, JSON.parse(request),{withCredentials: true})380 .then(function (response) {381 resolve(response);382 })383 .catch(function (error) {384 reject(error)385 });386 })387}388export const getInpFileLink = (request) =>{389 return new Promise((resolve,reject)=>{390 axios.post(`/getInpFileLink`, JSON.parse(request),{withCredentials: true})391 .then(function (response) {392 resolve(response);393 })394 .catch(function (error) {395 reject(error)396 });397 })398}399export const getModelLink = (request) =>{400 return new Promise((resolve,reject)=>{401 axios.post(`/getModelFileLink`, JSON.parse(request),{withCredentials: true})402 .then(function (response) {403 resolve(response);404 })405 .catch(function (error) {406 reject(error)407 });408 })409}410export const getSimulationFile = (request) =>{411 return new Promise((resolve,reject)=>{412 axios.post(`/getSimulationFileLink`, JSON.parse(request),{withCredentials: true})413 .then(function (response) {414 resolve(response);415 })416 .catch(function (error) {417 reject(error)418 });419 })420}421export const verifyUser = (request) =>{422 return new Promise((resolve,reject)=>{423 axios.post(`/verifyUser`, {},{withCredentials: true})424 .then(function (response) {425 resolve(response);426 })427 .catch(function (error) {428 reject(error)429 });430 })431}432export const logOut = (request) =>{433 return new Promise((resolve,reject)=>{434 axios.post(`/logOut`, {},{withCredentials: true})435 .then(function (response) {436 resolve(response);437 })438 .catch(function (error) {439 reject(error)440 });441 })442}443export const createAvatar = (request) =>{444 return new Promise((resolve,reject)=>{445 axios.post(`/createAvatar`, request)446 .then(function (response) {447 resolve(response);448 })449 .catch(function (error) {450 reject(error)451 });452 })453}454export const getCumulativeEventPressureData = (request) =>{455 return new Promise((resolve,reject)=>{456 axios.post(`/getCumulativeEventPressureData`, {},{withCredentials: true})457 .then(function (response) {458 resolve(response);459 })460 .catch(function (error) {461 reject(error)462 });463 })464}465export const getCumulativeEventLoadData = (request) =>{466 return new Promise((resolve,reject)=>{467 axios.post(`/getCumulativeEventLoadData`, {},{withCredentials: true})468 .then(function (response) {469 resolve(response);470 })471 .catch(function (error) {472 reject(error)473 });474 })475}476export const getHeadAccelerationEvents = (request) =>{477 return new Promise((resolve,reject)=>{478 axios.post(`/getHeadAccelerationEvents`, request,{withCredentials: true})479 .then(function (response) {480 resolve(response);481 })482 .catch(function (error) {483 reject(error)484 });485 })486}487export const getTeamAdminData = (request) =>{488 return new Promise((resolve,reject)=>{489 axios.post(`/getTeamAdminData`, {},{withCredentials: true})490 .then(function (response) {491 resolve(response);492 })493 .catch(function (error) {494 reject(error)495 });496 })497}498export const getImpactHistory = (request) =>{499 return new Promise((resolve,reject)=>{500 axios.post(`/getImpactHistory`, {},{withCredentials: true})501 .then(function (response) {502 resolve(response);503 })504 .catch(function (error) {505 reject(error)506 });507 })508}509export const getImpactSummary = (request) =>{510 return new Promise((resolve,reject)=>{511 axios.post(`/getImpactSummary`, {},{withCredentials: true})512 .then(function (response) {513 resolve(response);514 })515 .catch(function (error) {516 reject(error)517 });518 })519}520export const getPlayersData = (request) =>{521 return new Promise((resolve,reject)=>{522 axios.post(`/getPlayersData`, request,{withCredentials: true})523 .then(function (response) {524 resolve(response);525 })526 .catch(function (error) {527 reject(error)528 });529 })530}531export const getRequestedPlayersData = (request) =>{532 return new Promise((resolve,reject)=>{533 axios.post(`/getRequestedPlayersData`, request,{withCredentials: true})534 .then(function (response) {535 resolve(response);536 })537 .catch(function (error) {538 reject(error)539 });540 })541}542export const getOrganizationAdminData = (request) =>{543 return new Promise((resolve,reject)=>{544 axios.post(`/getOrganizationAdminData`, request,{withCredentials: true})545 .then(function (response) {546 resolve(response);547 })548 .catch(function (error) {549 reject(error)550 });551 })552}553export const fetchAllTeamsInOrganization = (request) =>{554 return new Promise((resolve,reject)=>{555 axios.post(`/fetchAllTeamsInOrganization`, request,{withCredentials: true})556 .then(function (response) {557 resolve(response);558 })559 .catch(function (error) {560 reject(error)561 });562 })563}564export const getAllRosters = (request) =>{565 return new Promise((resolve,reject)=>{566 axios.post(`/getAllRosters`, {},{withCredentials: true})567 .then(function (response) {568 resolve(response);569 })570 .catch(function (error) {571 reject(error)572 });573 })574}575export const addTeam = (request) =>{576 return new Promise((resolve,reject)=>{577 axios.post(`/addTeam`, JSON.parse(request),{withCredentials: true})578 .then(function (response) {579 resolve(response);580 })581 .catch(function (error) {582 reject(error)583 });584 })585}586export const deleteTeam = (request) =>{587 return new Promise((resolve,reject)=>{588 axios.post(`/deleteTeam`, request,{withCredentials: true})589 .then(function (response) {590 resolve(response);591 })592 .catch(function (error) {593 reject(error)594 });595 })596}597export const getCumulativeAccelerationData = (request) =>{598 return new Promise((resolve,reject)=>{599 axios.post(`/getCumulativeAccelerationData`, request,{withCredentials: true})600 .then(function (response) {601 resolve(response);602 })603 .catch(function (error) {604 reject(error)605 });606 })607}608export const getSimulationFilePath = (request) =>{609 return new Promise((resolve,reject)=>{610 axios.post(`/getSimulationFilePath`, request,{withCredentials: true})611 .then(function (response) {612 resolve(response);613 })614 .catch(function (error) {615 reject(error)616 });617 })618}619export const getSimulationFilesOfPlayer = (request) =>{620 return new Promise((resolve,reject)=>{621 axios.post(`/getSimulationFilesOfPlayer`, request,{withCredentials: true})622 .then(function (response) {623 resolve(response);624 })625 .catch(function (error) {626 reject(error)627 });628 })629}630export const getCumulativeAccelerationTimeData = (request) =>{631 return new Promise((resolve,reject)=>{632 axios.post(`/getCumulativeAccelerationTimeData`, request,{withCredentials: true})633 .then(function (response) {634 resolve(response);635 })636 .catch(function (error) {637 reject(error)638 });639 })640}641export const uploadModelRealData= (request) =>{642 return new Promise((resolve,reject)=>{643 axios.post(`/uploadModelRealData`, request,{withCredentials: true})644 .then(function (response) {645 resolve(response);646 })647 .catch(function (error) {648 reject(error)649 });650 })651}652export const fetchStaffMembers = (request) => {653 return new Promise((resolve,reject)=>{654 axios.post(`/fetchStaffMembers`, request, {withCredentials: true})655 .then(function (response) {656 resolve(response);657 })658 .catch(function (error) {659 reject(error)660 });661 })662}663export const fetchAdminStaffMembers = (request) => {664 return new Promise((resolve,reject)=>{665 axios.post(`/fetchAdminStaffMembers`, request, {withCredentials: true})666 .then(function (response) {667 resolve(response);668 })669 .catch(function (error) {670 reject(error)671 });672 })673}674export const fetchOrgStaffMembers = (request) => {675 return new Promise((resolve,reject)=>{676 axios.post(`/fetchOrgStaffMembers`, request, {withCredentials: true})677 .then(function (response) {678 resolve(response);679 })680 .catch(function (error) {681 reject(error)682 });683 })684}685//fetchTeamStaffMembers686export const fetchTeamStaffMembers = (request) => {687 return new Promise((resolve,reject)=>{688 axios.post(`/fetchTeamStaffMembers`, request, {withCredentials: true})689 .then(function (response) {690 resolve(response);691 })692 .catch(function (error) {693 reject(error)694 });695 })696}697export const getAllCumulativeAccelerationTimeRecords = (request) =>{698 return new Promise((resolve,reject)=>{699 axios.post(`/getAllCumulativeAccelerationTimeRecords`, request,{withCredentials: true})700 .then(function (response) {701 resolve(response);702 })703 .catch(function (error) {704 reject(error)705 });706 })707}708export const getCumulativeAccelerationTimeRecords = (request) =>{709 return new Promise((resolve,reject)=>{710 axios.post(`/getCumulativeAccelerationTimeRecords`, request,{withCredentials: true})711 .then(function (response) {712 resolve(response);713 })714 .catch(function (error) {715 reject(error)716 });717 })718}719export const getMpsRankedData = (request) =>{720 return new Promise((resolve,reject)=>{721 axios.post(`/getMpsRankedData`, request,{withCredentials: true})722 .then(function (response) {723 resolve(response);724 })725 .catch(function (error) {726 reject(error)727 });728 })729}730export const AllCumulativeAccelerationTimeRecords = (request) =>{731 return new Promise((resolve,reject)=>{732 axios.post(`/AllCumulativeAccelerationTimeRecords`, request,{withCredentials: true})733 .then(function (response) {734 resolve(response);735 })736 .catch(function (error) {737 reject(error)738 });739 })740}741export const getSimulationDetail = (request) =>{742 return new Promise((resolve,reject)=>{743 axios.post(`/getSimulationDetail`, request,{withCredentials: true})744 .then(function (response) {745 resolve(response);746 })747 .catch(function (error) {748 reject(error)749 });750 })751}752export const getAllCumulativeAccelerationJsonData = (request) =>{753 return new Promise((resolve,reject)=>{754 axios.post(`/getAllCumulativeAccelerationJsonData`, request,{withCredentials: true})755 .then(function (response) {756 resolve(response);757 })758 .catch(function (error) {759 reject(error)760 });761 })762}763export const getSimulationStatusCount = (request) =>{764 return new Promise((resolve,reject)=>{765 axios.post(`/getSimulationStatusCount`, request,{withCredentials: true})766 .then(function (response) {767 resolve(response);768 })769 .catch(function (error) {770 reject(error)771 });772 })773}774export const checkIfPlayerExists = (request) =>{775 return new Promise((resolve,reject)=>{776 axios.post(`/checkIfPlayerExists`, request,{withCredentials: true})777 .then(function (response) {778 resolve(response);779 })780 .catch(function (error) {781 reject(error)782 });783 })784}785export const listAllUsers = (request) =>{786 return new Promise((resolve,reject)=>{787 axios.post(`/listAllUsers`, request,{withCredentials: true})788 .then(function (response) {789 resolve(response);790 })791 .catch(function (error) {792 reject(error)793 });794 })795}796export const getUserDetailsForIRB = (request) =>{797 return new Promise((resolve,reject)=>{798 axios.post(`/getUserDetailsForIRB`, request,{withCredentials: true})799 .then(function (response) {800 resolve(response);801 })802 .catch(function (error) {803 reject(error)804 });805 })806}807export const confirmGuardianIRBConsent = (request) =>{808 return new Promise((resolve,reject)=>{809 axios.post(`/confirmGuardianIRBConsent`, request,{withCredentials: true})810 .then(function (response) {811 resolve(response);812 })813 .catch(function (error) {814 reject(error)815 });816 })817}818export const getVtkFileLink = (request) =>{819 return new Promise((resolve,reject)=>{820 axios.post(`/getVtkFileLink`, JSON.parse(request),{withCredentials: true})821 .then(function (response) {822 resolve(response);823 })824 .catch(function (error) {825 reject(error)826 });827 })828}829export const getUpdatesAndNotifications = (request) =>{830 return new Promise((resolve,reject)=>{831 axios.post(`/getUpdatesAndNotifications`, request)832 .then(function (response) {833 resolve(response);834 })835 .catch(function (error) {836 reject(error)837 });838 })839}840export const getAllSensorBrands = (request) =>{841 return new Promise((resolve,reject)=>{842 axios.post(`/getAllSensorBrands`, {},{withCredentials: true})843 .then(function (response) {844 resolve(response);845 })846 .catch(function (error) {847 reject(error)848 });849 })850}851export const getAllSensorBrandsList = (request) =>{852 return new Promise((resolve,reject)=>{853 axios.post(`/getAllSensorBrandsList`, {},{withCredentials: true})854 .then(function (response) {855 resolve(response);856 })857 .catch(function (error) {858 reject(error)859 });860 })861}862export const getAllOrganizationsOfSensorBrand = (request) =>{863 return new Promise((resolve,reject)=>{864 axios.post(`/getAllOrganizationsOfSensorBrand`, request,{withCredentials: true})865 .then(function (response) {866 resolve(response);867 })868 .catch(function (error) {869 reject(error)870 });871 })872}873export const getAllOrganizationsSimultionCount = (request) =>{874 return new Promise((resolve,reject)=>{875 axios.post(`/getAllOrganizationsSimultionCount`, request,{withCredentials: true})876 .then(function (response) {877 resolve(response);878 })879 .catch(function (error) {880 reject(error)881 });882 })883}884export const getTeamSimultionCount = (request) =>{885 return new Promise((resolve,reject)=>{886 axios.post(`/getTeamSimultionCount`, request,{withCredentials: true})887 .then(function (response) {888 resolve(response);889 })890 .catch(function (error) {891 reject(error)892 });893 })894}895export const getAllOrganizationsOfSensorBrandList = (request) =>{896 return new Promise((resolve,reject)=>{897 axios.post(`/getAllOrganizationsOfSensorBrandList`, request,{withCredentials: true})898 .then(function (response) {899 resolve(response);900 })901 .catch(function (error) {902 reject(error)903 });904 })905}906export const getAllteamsOfOrganizationOfSensorBrand = (request) =>{907 return new Promise((resolve,reject)=>{908 axios.post(`/getAllteamsOfOrganizationOfSensorBrand`, request,{withCredentials: true})909 .then(function (response) {910 resolve(response);911 })912 .catch(function (error) {913 reject(error)914 });915 })916}917export const getAllteamsOfOrganizationOfSensorBrandList = (request) =>{918 return new Promise((resolve,reject)=>{919 axios.post(`/getAllteamsOfOrganizationOfSensorBrandList`, request,{withCredentials: true})920 .then(function (response) {921 resolve(response);922 })923 .catch(function (error) {924 reject(error)925 });926 })927}928export const getBrainSimulationMovie = (request) =>{929 return new Promise((resolve,reject)=>{930 axios.get(`/getBrainSimulationMovie/`+request, {withCredentials: true})931 .then(function (response) {932 resolve(response);933 })934 .catch(function (error) {935 reject(error)936 });937 })938}939export const getBrainSimulationLogFile = (request) =>{940 return new Promise((resolve,reject)=>{941 axios.get(`/getBrainSimulationLogFile/`+request, {withCredentials: true})942 .then(function (response) {943 resolve(response);944 })945 .catch(function (error) {946 reject(error)947 });948 })949}950export const downloadLogFileFromS3 = (request) =>{951 return new Promise((resolve,reject)=>{952 axios.get(`/downloadLogFileFromS3/`+request, {withCredentials: true})953 .then(function (response) {954 resolve(response);955 })956 .catch(function (error) {957 reject(error)958 });959 })960}961export const getOrganizationList = (request) =>{962 return new Promise((resolve,reject)=>{963 axios.post(`/getOrganizationList/`,request, {withCredentials: true})964 .then(function (response) {965 resolve(response);966 })967 .catch(function (error) {968 reject(error)969 });970 })971}972export const getOrganizationNameList = (request) =>{973 return new Promise((resolve,reject)=>{974 axios.post(`/getOrganizationNameList/`,request, {withCredentials: true})975 .then(function (response) {976 resolve(response);977 })978 .catch(function (error) {979 reject(error)980 });981 })982}983export const getTeamList = (request) =>{984 return new Promise((resolve,reject)=>{985 axios.post(`/getTeamList/`,request, {withCredentials: true})986 .then(function (response) {987 resolve(response);988 })989 .catch(function (error) {990 reject(error)991 });992 })993}994export const getTeamNameList = (request) =>{995 return new Promise((resolve,reject)=>{996 axios.post(`/getTeamNameList/`,request, {withCredentials: true})997 .then(function (response) {998 resolve(response);999 })1000 .catch(function (error) {1001 reject(error)1002 });1003 })1004}1005export const getTeamSpheres = (request) =>{1006 return new Promise((resolve,reject)=>{1007 axios.post(`/getTeamSpheres`, request,{withCredentials: true})1008 .then(function (response) {1009 resolve(response);1010 })1011 .catch(function (error) {1012 reject(error)1013 });1014 })1015}1016export const getMLplatformfiles = (request) =>{1017 return new Promise((resolve,reject)=>{1018 axios.post(`/getMLplatformfiles`, request,{withCredentials: true})1019 .then(function (response) {1020 resolve(response);1021 })1022 .catch(function (error) {1023 reject(error)1024 });1025 })1026}1027export const getFilterdTeamSpheres = (request) =>{1028 return new Promise((resolve,reject)=>{1029 axios.post(`/getFilterdTeamSpheres`, request,{withCredentials: true})1030 .then(function (response) {1031 resolve(response);1032 })1033 .catch(function (error) {1034 reject(error)1035 });1036 })1037}1038export const getFilterdTeamSpheresTest = (request) =>{1039 return new Promise((resolve,reject)=>{1040 axios.post(`/getFilterdTeamSpheresTest`, request,{withCredentials: true})1041 .then(function (response) {1042 resolve(response);1043 })1044 .catch(function (error) {1045 reject(error)1046 });1047 })1048}1049export const getPlayerList = (request) =>{1050 return new Promise((resolve,reject)=>{1051 axios.post(`/getPlayerList/`,request, {withCredentials: true})1052 .then(function (response) {1053 resolve(response);1054 })1055 .catch(function (error) {1056 reject(error)1057 });1058 })1059}1060export const loadMorePlayerList = (request) =>{1061 return new Promise((resolve,reject)=>{1062 axios.post(`/loadMorePlayerList/`,request, {withCredentials: true})1063 .then(function (response) {1064 resolve(response);1065 })1066 .catch(function (error) {1067 reject(error)1068 });1069 })1070}1071export const deleteItem = (request) =>{1072 return new Promise((resolve,reject)=>{1073 axios.post(`/deleteItem/`,request, {withCredentials: true})1074 .then(function (response) {1075 resolve(response);1076 })1077 .catch(function (error) {1078 reject(error)1079 });1080 })1081}1082export const renameOrganization = (request) =>{1083 return new Promise((resolve,reject)=>{1084 axios.post(`/renameOrganization/`,request, {withCredentials: true})1085 .then(function (response) {1086 resolve(response);1087 })1088 .catch(function (error) {1089 reject(error)1090 });1091 })1092}1093export const renameTeam = (request) =>{1094 return new Promise((resolve,reject)=>{1095 axios.post(`/renameTeam/`,request, {withCredentials: true})1096 .then(function (response) {1097 resolve(response);1098 })1099 .catch(function (error) {1100 reject(error)1101 });1102 })1103}1104export const addOrganization = (request) =>{1105 return new Promise((resolve,reject)=>{1106 axios.post(`/addOrganization/`,request, {withCredentials: true})1107 .then(function (response) {1108 resolve(response);1109 })1110 .catch(function (error) {1111 reject(error)1112 });1113 })1114}1115export const addorgTeam= (request) =>{1116 return new Promise((resolve,reject)=>{1117 axios.post(`/addorgTeam/`,request, {withCredentials: true})1118 .then(function (response) {1119 resolve(response);1120 })1121 .catch(function (error) {1122 reject(error)1123 });1124 })1125}1126export const updateUserStatus = (request) =>{1127 return new Promise((resolve,reject)=>{1128 axios.post(`/updateUserStatus/`,request, {withCredentials: true})1129 .then(function (response) {1130 resolve(response);1131 })1132 .catch(function (error) {1133 reject(error)1134 });1135 })1136}1137export const MergeOrganization = (request) =>{1138 return new Promise((resolve,reject)=>{1139 axios.post(`/MergeOrganization/`,request, {withCredentials: true})1140 .then(function (response) {1141 resolve(response);1142 })1143 .catch(function (error) {1144 reject(error)1145 });1146 })1147}1148export const MergeTeam = (request) =>{1149 return new Promise((resolve,reject)=>{1150 axios.post(`/MergeTeam/`,request, {withCredentials: true})1151 .then(function (response) {1152 resolve(response);1153 })1154 .catch(function (error) {1155 reject(error)1156 });1157 })1158}1159export const getOrgUniqueList = () =>{1160 return new Promise((resolve,reject)=>{1161 axios.post(`/getOrgUniqueList/`, {withCredentials: true})1162 .then(function (response) {1163 resolve(response);1164 })1165 .catch(function (error) {1166 reject(error)1167 });1168 })1169}1170export const getOrgUniqueTeams = (request) =>{1171 return new Promise((resolve,reject)=>{1172 axios.post(`/getOrgUniqueTeams/`,request, {withCredentials: true})1173 .then(function (response) {1174 resolve(response);1175 })1176 .catch(function (error) {1177 reject(error)1178 });1179 })1180}1181export const setVideoTime = (request) =>{1182 return new Promise((resolve,reject)=>{1183 axios.post(`/setVideoTime/`,request, {withCredentials: true})1184 .then(function (response) {1185 resolve(response);1186 })1187 .catch(function (error) {1188 reject(error)1189 });1190 })1191}1192//Demo api for team state page.1193export const getFilterdTeamSpheres_demo = (request) =>{1194 return new Promise((resolve,reject)=>{1195 axios.post(`/getFilterdTeamSpheres_demo`, request,{withCredentials: true})1196 .then(function (response) {1197 resolve(response);1198 })1199 .catch(function (error) {1200 reject(error)1201 });1202 })1203}1204export const getTeamSpheres_Demo = (request) =>{1205 return new Promise((resolve,reject)=>{1206 axios.post(`/getTeamSpheres_Demo`, request,{withCredentials: true})1207 .then(function (response) {1208 resolve(response);1209 })1210 .catch(function (error) {1211 reject(error)1212 });1213 })1214}1215export const modalValidationOutput = () =>{1216 return new Promise((resolve,reject)=>{1217 axios.post(`/modalValidationOutput`,{withCredentials: true})1218 .then(function (response) {1219 resolve(response);1220 })1221 .catch(function (error) {1222 reject(error)1223 });1224 })1225}1226//# submit jobs api called1227export const submitBrainsimulationJobs = (request) =>{1228 return new Promise((resolve,reject)=>{1229 axios.post(`/api/v2/upload/sensor/`, request, {withCredentials: true})1230 .then(function (response) {1231 resolve(response);1232 })1233 .catch(function (error) {1234 reject(error)1235 });1236 })1237}1238export const createJoblogs = (request) =>{1239 return new Promise((resolve,reject)=>{1240 axios.post(`/api/v1/jobs/insertlogs`, request,{withCredentials: true})1241 .then(function (response) {1242 resolve(response);1243 })1244 .catch(function (error) {1245 reject(error)1246 });1247 })1248}1249//# ...1250export const checkSensorDataExistsSimulationjsonData = (request) =>{1251 return new Promise((resolve,reject)=>{1252 axios.post(`/api/v2/checkSensorDataExists/json/`, request, {withCredentials: true})1253 .then(function (response) {1254 resolve(response);1255 })1256 .catch(function (error) {1257 reject(error)1258 });1259 })1260}1261//# getFailedSimulationList1262export const getFailedSimulationList = (request) =>{1263 return new Promise((resolve,reject)=>{1264 axios.post(`/getFailedSimulationList`, request, {withCredentials: true})1265 .then(function (response) {1266 resolve(response);1267 })1268 .catch(function (error) {1269 reject(error)1270 });1271 })1272}1273//# getCompleteSimulationList1274export const getCompleteSimulationList = (request) =>{1275 return new Promise((resolve,reject)=>{1276 axios.post(`/getCompleteSimulationList`, request, {withCredentials: true})1277 .then(function (response) {1278 resolve(response);1279 })1280 .catch(function (error) {1281 reject(error)1282 });1283 })1284}1285//# deleteuserfromteam1286export const deleteuserfromteam = (request) =>{1287 return new Promise((resolve,reject)=>{1288 axios.post(`/deleteuserfromteam`, request, {withCredentials: true})1289 .then(function (response) {1290 resolve(response);1291 })1292 .catch(function (error) {1293 reject(error)1294 });1295 })1296}1297//# getFailedSimulationList1298export const filterStrainMetric = (request) =>{1299 return new Promise((resolve,reject)=>{1300 axios.patch(`/filterStrainMetric`, request, {withCredentials: true})1301 .then(function (response) {1302 resolve(response);1303 })1304 .catch(function (error) {1305 reject(error)1306 });1307 })1308}1309//# getFailedSimulationList1310export const getplayerlistoforg = (request) =>{1311 return new Promise((resolve,reject)=>{1312 axios.post(`/getplayerlistoforg`, request, {withCredentials: true})1313 .then(function (response) {1314 resolve(response);1315 })1316 .catch(function (error) {1317 reject(error)1318 });1319 })1320}1321//# getBrainImageByAccountID1322export const getBrainImageByAccountID = (request) =>{1323 return new Promise((resolve,reject)=>{1324 axios.post(`/getBrainImageByAccountID`, request, {withCredentials: true})1325 .then(function (response) {1326 resolve(response);1327 })1328 .catch(function (error) {1329 reject(error)1330 });1331 })1332}1333//# getBrainImageByAccountID1334export const getBrainImageByimageID = (request) =>{1335 return new Promise((resolve,reject)=>{1336 axios.post(`/getBrainImageByimageID`, request, {withCredentials: true})1337 .then(function (response) {1338 resolve(response);1339 })1340 .catch(function (error) {1341 reject(error)1342 });1343 })1344}1345//# getAllBrainImageByimageID1346export const getAllBrainImageByimageID = (request) =>{1347 return new Promise((resolve,reject)=>{1348 axios.post(`/getAllBrainImageByimageID`, request, {withCredentials: true})1349 .then(function (response) {1350 resolve(response);1351 })1352 .catch(function (error) {1353 reject(error)1354 });1355 })1356}1357//# deleteOrgTeam1358export const deleteOrgTeam = (request) =>{1359 return new Promise((resolve,reject)=>{1360 axios.post(`/deleteOrgTeam`, request, {withCredentials: true})1361 .then(function (response) {1362 resolve(response);1363 })1364 .catch(function (error) {1365 reject(error)1366 });1367 })1368}1369//# deleteOrgTeam11370export const deleteOrgTeam1 = (request) =>{1371 return new Promise((resolve,reject)=>{1372 axios.post(`/deleteOrgTeam1`, request, {withCredentials: true})1373 .then(function (response) {1374 resolve(response);1375 })1376 .catch(function (error) {1377 reject(error)1378 });1379 })1380}1381//# deleteOrgTeam21382export const deleteOrgTeam2 = (request) =>{1383 return new Promise((resolve,reject)=>{1384 axios.post(`/deleteOrgTeam2`, request, {withCredentials: true})1385 .then(function (response) {1386 resolve(response);1387 })1388 .catch(function (error) {1389 reject(error)1390 });1391 })1392}1393//# deleteOrgTeam31394export const deleteOrgTeam3 = (request) =>{1395 return new Promise((resolve,reject)=>{1396 axios.post(`/deleteOrgTeam3`, request, {withCredentials: true})1397 .then(function (response) {1398 resolve(response);1399 })1400 .catch(function (error) {1401 reject(error)1402 });1403 })1404}1405//# deleteOrgTeam41406export const deleteOrgTeam4 = (request) =>{1407 return new Promise((resolve,reject)=>{1408 axios.post(`/deleteOrgTeam4`, request, {withCredentials: true})1409 .then(function (response) {1410 resolve(response);1411 })1412 .catch(function (error) {1413 reject(error)1414 });1415 })1416}1417//# deleteOrgTeam41418export const deleteEventByImageID = (request) =>{1419 return new Promise((resolve,reject)=>{1420 axios.post(`/deleteEventByImageID`, request, {withCredentials: true})1421 .then(function (response) {1422 resolve(response);1423 })1424 .catch(function (error) {1425 reject(error)1426 });1427 })...

Full Screen

Full Screen

index.js

Source:index.js Github

copy

Full Screen

...9 *10 * @param {any} params 登录的参数11 */12 Login(params) {13 return axios.post(path + '/login', params);14 },15 /**16 * 退出登录17 *18 * @returns19 */20 LoginOut() {21 return axios.get(path + '/AUser.aspx?act=loginOut')22 },23 /*======================================打印点=========================================== */24 /**25 * 得到打印点数据26 *27 * @param {any} params 参数对象,包含分页28 */29 GetPrintByPage(params) {30 return axios.post(path + '/Print.aspx?act=lists', params)31 },32 /**33 * 通过ID得到打印点数据34 *35 * @param {any} id 打印点ID36 * @returns37 */38 GetPrintById(id) {39 return axios.post(path + '/Print.aspx?act=get', {40 'id': id41 })42 },43 /**44 * 新增或者修改一个打印点信息(后台根据ID进行判断,猜测TODO:)45 *46 * @param {any} print 打印点对象47 * @returns48 */49 NewPrint(print) {50 return axios.post(path + '/Print.aspx?act=save', print)51 },52 /**53 * 修改一个打印点信息54 *55 * @param {any} print 打印点对象56 * @returns57 */58 UpdatePrint(params) {59 return axios.post(path + '/Print.aspx?act=update', params)60 },61 /**62 * 删除打印点信息63 *64 * @param {any} print 打印点对象65 * @returns66 */67 DelPrintById(id) {68 return axios.post(path + '/Print.aspx?act=delete', {69 'id': id70 })71 },72 /**73 * 检测重复74 *75 * @param {any} print 打印点对象76 * @returns77 */78 Check(params) {79 return axios.post(path + '/Print.aspx?act=check', params)80 },81 /**82 * 保存开放时间信息83 *84 * @param {any} print 打印点对象85 * @returns86 */87 SaveTrade(param) {88 return axios.post(path + '/Print.aspx?act=saveTrade', param)89 },90 /**91 * 获取开放时间信息92 *93 * @param {any} print 打印点对象94 * @returns95 */96 GetTrade(id) {97 return axios.post(path + '/Print.aspx?act=getTrade', {98 'dwPrinterSN': id99 })100 },101 /**102 * 修改开放时间信息103 *104 * @param {any} print 打印点对象105 * @returns106 */107 UpdateTrade(day, time, dwOpenFlag, dwPrinterSN) {108 return axios.post(path + '/Print.aspx?act=updateTrade', {109 'day': day,110 'time': time,111 'dwOpenFlag': dwOpenFlag,112 'dwPrinterSN': dwPrinterSN113 })114 },115 /*===================================================打印服务====================================================== */116 /**117 * 得到下拉的打印服务列表118 *119 */120 GetPrintServiceSelect() {121 return axios.post(path + '/PrintService.aspx?act=select')122 },123 /*===================================================运营商=========================================================== */124 /**125 * 得到运营商数据126 *127 * @param {any} params 参数对象,包含分页128 */129 GetManageByPage(params) {130 return axios.post(path + '/Company.aspx?act=lists', params)131 },132 /**133 * 通过ID得到运营商数据134 *135 * @param {any} id 打印点ID136 * @returns137 */138 GetManageById(id) {139 return axios.post(path + '/Company.aspx?act=get', {140 'id': id141 })142 },143 /**144 * 新增运营商145 *146 * @param {any} person147 * @returns148 */149 NewManage(params) {150 return axios.post(path + '/Company.aspx?act=save', params)151 },152 /**153 * 修改运营商154 *155 * @param {any} person156 * @returns157 */158 SetManage(params) {159 return axios.post(path + '/Company.aspx?act=update', params)160 },161 /**162 * 删除运营商163 *164 * @param {any} print 打印点对象165 * @returns166 */167 DelManageById(id) {168 return axios.post(path + '/Company.aspx?act=delete', {169 'id': id170 })171 },172 /*======================================联系人=========================================== */173 /**174 * 得到联系人数据175 *176 * @param {any} id 打印点ID177 * @returns178 */179 GetPersonByPage(params) {180 return axios.post(path + '/Contact.aspx?act=lists', params)181 },182 /**183 * 通过ID得到一个联系人数据184 *185 * @param {any} id186 * @returns187 */188 GetPersonById(id) {189 return axios.post(path + '/Contact.aspx?act=get', {190 'id': id191 })192 },193 /**194 * 新增联系人信息195 *196 * @param {any} person197 * @returns198 */199 NewPerson(params) {200 return axios.post(path + '/Contact.aspx?act=save', params)201 },202 /**203 * 修改联系人信息204 *205 * @param {any} person206 * @returns207 */208 SetPerson(params) {209 return axios.post(path + '/Contact.aspx?act=update', params)210 },211 /**212 * 删除联系人信息213 *214 * @param {any} print 打印点对象215 * @returns216 */217 DelPersonById(id) {218 return axios.post(path + '/Contact.aspx?act=delete', {219 'id': id220 })221 },222 /*======================================管理员=========================================== */223 /**224 * 得到联系人数据225 *226 * @param {any} id 打印点ID227 * @returns228 */229 GetManagerList(params) {230 return axios.post(path + '/Admin.aspx?act=lists', params)231 },232 /**233 * 通过ID得到一个联系人数据234 *235 * @param {any} id236 * @returns237 */238 SetPassword(params) {239 return axios.post(path + '/Admin.aspx?act=chgpwd', params)240 },241 /**242 * 新增联系人信息243 *244 * @param {any} person245 * @returns246 */247 NewManager(params) {248 return axios.post(path + '/Admin.aspx?act=save', params)249 },250 /**251 * 删除联系人信息252 *253 * @param {any} manage 管理员254 * @returns255 */256 DelManagerById(id) {257 return axios.post(path + '/Admin.aspx?act=delete', {258 'id': id259 })260 },261 /**262 * 检测管理员用户名是否重复263 *264 */265 CheckManage(param) {266 return axios.post(path + '/Admin.aspx?act=check', param)267 },268 /*======================================记录查询=========================================== */269 /**270 * 得到记录列表271 *272 * @param {any}273 * @returns274 */275 GetRecordList(params) {276 return axios.post(path + '/PrintQuery.aspx?act=lists', params)277 },278 ExportRecord(params) {279 return axios.post(path + '/PrintQuery.aspx?act=export', params)280 },281 /*======================================记录统计=========================================== */282 /**283 * 得到记录列表284 *285 * @param {any}286 * @returns287 */288 GetCountList(params) {289 return axios.post(path + '/PrintCount.aspx?act=lists', params)290 },291 /*======================================运营商统计=========================================== */292 /**293 * 得到统计列表294 *295 * @param {any}296 * @returns297 */298 GetRunCount(params) {299 return axios.post(path + '/PrintCount.aspx?act=companyCount', params)300 },301 /*======================================打印点统计=========================================== */302 /**303 * 得到记录列表304 *305 * @param {any}306 * @returns307 */308 GetPrintCount(params) {309 return axios.post(path + '/PrintCount.aspx?act=printCount', params)310 },311 /*======================================账户管理=========================================== */312 /**313 * 得到账户列表数据314 *315 * @param {any}316 * @returns317 */318 GetAccountList(params) {319 return axios.post(path + '/Account.aspx?act=lists', params)320 },321 /**322 * 得到电子账户列表数据323 *324 * @param {any}325 * @returns326 */327 GetEPay(params) {328 return axios.post(path + '/Account.aspx?act=ePayList', params)329 },330 /**331 * 充补助332 *333 * @param {any}334 * @returns335 */336 SetSup(params) {337 return axios.post(path + '/Account.aspx?act=setPromotion', params)338 },339 /**340 * 管理员充补助341 *342 * @param {any}343 * @returns344 */345 addSup(params) {346 return axios.post(path + '/Admin.aspx?act=addDeposit', params)347 },348 /**349 * 修改密码350 *351 * @param {any}352 * @returns353 */354 SetPIN(params) {355 return axios.post(path + '/Account.aspx?act=changePwd', params)356 },357 /**358 * 删除账户359 *360 * @param {any}361 * @returns362 */363 DelAccount(id) {364 return axios.post(path + '/Account.aspx?act=delete', id)365 },366 /**367 * 开卡368 *369 * @param {any}370 * @returns371 */372 SetCard(params) {373 return axios.post(path + '/Account.aspx?act=setCard', params)374 },375 /**376 * 绑定微信377 *378 * @param {any}379 * @returns380 */381 BlindCode(params) {382 return axios.post(path + '/Account.aspx?act=bindCode', params)383 },384 /**385 * 单个开户386 *387 * @param {any}388 * @returns389 */390 SaveAccount(params) {391 return axios.post(path + '/Account.aspx?act=save', params)392 },393 /**394 * 数据检测重复395 *396 * @param {any} params397 */398 CheckAccount(params) {399 return axios.post(path + '/Account.aspx?act=check', params);400 },401 /*======================================服务人员=========================================== */402 /**403 * 得到联系人数据404 *405 * @param {any} id 打印点ID406 * @returns407 */408 GetStaffByPage(params) {409 return axios.post(path + '/ServiceStaff.aspx?act=lists', params)410 },411 /**412 * 通过ID得到一个联系人数据413 *414 * @param {any} id415 * @returns416 */417 GetStaffById(id) {418 return axios.post(path + '/ServiceStaff.aspx?act=get', {419 'id': id420 })421 },422 /**423 * 新增联系人信息424 *425 * @param {any} person426 * @returns427 */428 NewStaff(params) {429 return axios.post(path + '/ServiceStaff.aspx?act=save', params)430 },431 /**432 * 修改联系人信息433 *434 * @param {any} person435 * @returns436 */437 UpdateStaff(params) {438 return axios.post(path + '/ServiceStaff.aspx?act=update', params)439 },440 /**441 * 删除联系人信息442 *443 * @param {any} print 打印点对象444 * @returns445 */446 DelStaffById(id, ComSN) {447 return axios.post(path + '/ServiceStaff.aspx?act=delete', {448 'id': id,449 'ComSN': ComSN450 })451 },452 /*======================================服务点接口=========================================== */453 GetServiceList(params) {454 return axios.post(path + '/PrintService.aspx?act=lists', params)455 },456 /**457 * 通过ID得到一个打印点数据458 *459 * @param {any} id460 * @returns461 */462 GetServiceById(id) {463 return axios.post(path + '/PrintService.aspx?act=get', {464 'id': id465 })466 },467 /**468 * 新增打印点信息469 *470 * @param {any} person471 * @returns472 */473 NewService(params) {474 return axios.post(path + '/PrintService.aspx?act=save', params)475 },476 /**477 * 修改打印点信息478 *479 * @param {any} person480 * @returns481 */482 UpdateService(params) {483 return axios.post(path + '/PrintService.aspx?act=update', params)484 },485 /**486 * 删除打印点信息487 *488 * @param {any} print 打印点对象489 * @returns490 */491 DelServiceById(id) {492 return axios.post(path + '/PrintService.aspx?act=delete', {493 'id': id494 })495 },496 /*======================================收费标准=========================================== */497 /**498 * 新增收费标准499 *500 * @param {any}501 * @returns502 */503 NewFee(params) {504 return axios.post(path + '/Fee.aspx?act=saveStd', params)505 },506 /**507 * 获取收费标准508 *509 * @param {any}510 * @returns511 */512 GetFee(id) {513 return axios.post(path + '/Fee.aspx?act=getStd', {514 'id': id515 })516 },517 /**518 * 修改收费标准519 *520 * @param {any}521 * @returns522 */523 UpdateFee(params) {524 return axios.post(path + '/Fee.aspx?act=updateStd', params)525 },526 /**527 *528 * 删除一个收费标准529 *530 * @param {any} params531 */532 DelFee(params) {533 return axios.post(path + '/Fee.aspx?act=delStd', params)534 },535 /**536 * 新增收费标准详情537 *538 * @param {any} params539 */540 NewFeeDetail(params) {541 return axios.post(path + '/Fee.aspx?act=saveDetail', params)542 },543 /**544 * 修改收费标准详情545 *546 * @param {any} params547 */548 UpdateFeeDetail(params) {549 return axios.post(path + '/Fee.aspx?act=updateDetail', params)550 },551 /*======================================AreaCode=========================================== */552 /**553 * 区域列表接口554 * 默认返回全国和省级555 *556 */557 GetAreaCodeSelect(param) {558 return axios.post(path + '/AreaCode.aspx?act=select', param)559 },560 /**561 * 获取对应的子级名称562 *563 * @param {any} param564 * @returns565 */566 GetSubArea(param) {567 return axios.post(path + '/AreaCode.aspx?act=getSub', param)568 },569 /**570 * 通过ID得到行政区域571 *572 * @param {any} id573 * @returns574 */575 GetArea(id) {576 return axios.post(path + '/AreaCode.aspx?act=get', {577 'id': id578 })579 },580 /*======================================退款记录接口=========================================== */581 /**582 * 得到退款记录接口583 *584 * @param {any} words585 */586 GetRefundList(params) {587 return axios.post(path + '/Rfunds.aspx?act=lists', params);588 },589 /*======================================现金和补助记录接口=========================================== */590 /**591 * 得到现金592 *593 * @param {any} words594 */595 GetCashList(params) {596 return axios.post(path + '/Cash.aspx?act=ePayList', params);597 },598 /**599 * 补助记录接口600 *601 * @param {any} params602 * @returns603 */604 GetSupplyList(params) {605 return axios.post(path + '/Cash.aspx?act=lists', params)606 },607 /*======================================纸型接口=========================================== */608 /**609 * 得到纸型接口610 *611 * @param {any} words612 */613 GetPaperList(words) {614 return axios.post(path + '/Print.aspx?act=paperList', {615 'q': words616 });617 },618 /*======================================修改纸型=========================================== */619 /**620 * 修改纸型接口621 *622 * @param {any} words623 */624 UpdatePaper(params) {625 return axios.post(path + '/Print.aspx?act=updatePaper', params);626 },627 /*======================================增加纸型=========================================== */628 /**629 * 增加纸型接口630 *631 * @param {any} words632 */633 SavePaper(params) {634 return axios.post(path + '/Print.aspx?act=savePaper', params);635 },636 /*======================================删除纸型=========================================== */637 /**638 * 删除纸型接口639 *640 * @param {any} words641 */642 DeletePaper(params) {643 return axios.post(path + '/Print.aspx?act=delPaper', params);644 },645 /*======================================运营商接口=========================================== */646 /**647 * 得到运营商接口648 *649 * @param {any} words650 */651 GetCompanySelect(words) {652 return axios.post(path + '/Company.aspx?act=select', {653 'q': words654 });655 },656 /*======================================打印点接口=========================================== */657 /**658 * 得到打印点接口659 *660 * @param {any} words661 */662 GetPrintSelect(words) {663 return axios.post(path + '/Print.aspx?act=select', {664 'q': words,665 });666 },667 /*======================================联系人接口=========================================== */668 /**669 * 得到联系人接口670 *671 * @param {any} words672 */673 GetContactSelect(words, sn) {674 return axios.post(path + '/Contact.aspx?act=select', {675 'q': words,676 'sn': sn677 });678 },679 /*======================================平台用户接口=========================================== */680 /**681 * 得到平台用户接口682 *683 * @param {any} words684 */685 GetAccountSelect(words) {686 return axios.post(path + '/Account.aspx?act=select', {687 'q': words688 });689 },690 /*======================================运营商检测重复接口=========================================== */691 /**692 * 检测运营商数据重复693 *694 * @param {any} para695 */696 CheckCompany(para) {697 return axios.post(path + '/Company.aspx?act=check', para);698 },699 /*======================================优惠码接口=========================================== */700 /**701 * 获取优惠码702 *703 * @param {any} para704 */705 GetProCode(params) {706 return axios.post(path + '/Promotion.aspx?act=getProCode', params);707 },708 /**709 * 获取列表710 *711 * @param {any} para712 */713 GetCodeList(params) {714 return axios.post(path + '/Promotion.aspx?act=lists', params);715 },716 /**717 * 保存优惠码718 *719 * @param {any} para720 */721 saveCode(params) {722 return axios.post(path + '/Promotion.aspx?act=save', params);723 },724 /**725 * 更新优惠码726 *727 * @param {any} para728 */729 updateCode(params) {730 return axios.post(path + '/Promotion.aspx?act=update', params);731 },732 /**733 * 获得一个优惠码734 *735 * @param {any} para736 */737 gainCode(para) {738 return axios.post(path + '/Promotion.aspx?act=get',para);739 },740 /**741 * 删除优惠码742 *743 * @param {any} para744 */745 delCode(para) {746 return axios.post(path + '/Promotion.aspx?act=delete',para);747 },748 /*======================================首页报表数据=========================================== */749 /**750 * 首页所用用户数据显示751 *752 * @returns753 */754 GetHomeUsers() {755 return axios.post(path + '/Utils.aspx?act=homeUsers');756 },757 /**758 * 首页所用报表数据759 *760 * @returns761 */762 GetReportData() {763 return axios.post(path + '/Utils.aspx?act=homeReport');764 },765 /*======================================日志查询=========================================== */766 /**767 *768 * 日志接口769 */770 GetAdminLog(params){771 return axios.post(path + '/Admin.aspx?act=getAdminLog',params);772 },773 /*======================================电子发票销售方接口=========================================== */774 /**775 * 获取列表776 *777 * @param {any} para778 */779 GetEInvoice(params) {780 return axios.post(path + '/EInvoice.aspx?act=lists', params);781 },782 /**783 * 保存发票784 *785 * @param {any} para786 */787 SaveEInvoice(params) {788 return axios.post(path + '/EInvoice.aspx?act=save', params);789 },790 /**791 * 通过id得到一个电子发票数据792 *793 * @param {any} para794 */795 SetEInvoice(id) {796 return axios.post(path + '/EInvoice.aspx?act=get', id);797 },798 /**799 * 修改发票800 *801 * @param {any} para802 */803 UpEInvoice(params) {804 return axios.post(path + '/EInvoice.aspx?act=update', params);805 },806 /**807 * 删除发票808 *809 * @param {any} para810 */811 DelEInvoice(id) {812 return axios.post(path + '/EInvoice.aspx?act=delete', id);813 },814 /*======================================电子发票开票方=========================================== */815 /**816 * 获取列表817 *818 * @param {any} para819 */820 GetItem(params) {821 return axios.post(path + '/EInvoiceItem.aspx?act=lists', params);822 },823 /**824 * 保存开票方825 *826 * @param {any} para827 */828 SaveItem(params) {829 return axios.post(path + '/EInvoiceItem.aspx?act=save', params);830 },831 /**832 * 通过id得到一个开票方数据833 *834 * @param {any} para835 */836 SetItem(id) {837 return axios.post(path + '/EInvoiceItem.aspx?act=get', id);838 },839 /**840 * 修改开票方841 *842 * @param {any} para843 */844 UpItem(params) {845 return axios.post(path + '/EInvoiceItem.aspx?act=update', params);846 },847 /**848 * 删除开票方849 *850 * @param {any} para851 */852 DelItem(id) {853 return axios.post(path + '/EInvoiceItem.aspx?act=delete', id);854 },855 /*======================================电子发票开票记录=========================================== */856 /**857 * 获取列表858 *859 * @param {any} para860 */861 GetInvinfo(params) {862 return axios.post(path + '/EInvoice.aspx?act=invoiceLists', params);863 }...

Full Screen

Full Screen

test.js

Source:test.js Github

copy

Full Screen

1import {axiosGet, axiosPost} from './baseApi'2// export const getTestList = (params,config)=>axiosGet('/getTestList',params,config);3// export const postTestList = (params,config)=>axiosPost('/sgw_system_web/sys/shop/getBaseInfo',params,config);4//mock接口5// export const postLoginSignIn = (params, config) => axiosPost('/login', params, config);6// export const getMenuList = (params, config) => axiosPost('/user/navlist', params, config);7//1111111118//获取验证码9export const postSendMessage = (params, config) => axiosPost('/login/sendMessage', params, config);10// export const postSendMessage = (params, config) => axiosPost('/login/sendDynamicMessage', params, config);11//登录接口12export const postLoginSignIn = (params, config) => axiosPost('/login/signIn', params, config);13//目录菜单14export const getMenuList = (params, config) => axiosGet('/common/menu', params, config);15//获取logo16export const getShopLogo = (params, config) => axiosGet('/login/getShopLogo', params, config);17//查询商户信息:18export const getBaseInfo = (params, config) => axiosPost('/sys/shop/getBaseInfo', params, config);19// 商户关闭分量20export const shopAllotSwitchCloseOrOpen = (params, config) => axiosPost('/sys/shop/shopAllotSwitchCloseOrOpen', params, config);21//提交参数配制22export const updateShopConfig = (params, config) => axiosPost('/sys/shop/updateShopConfig', params, config);23//商户充值申请:24export const rechargeProduct = (params, config) => axiosPost('/sys/shop/rechargeProduct', params, config);25//商户提现申请:26export const cashOutProduct = (params, config) => axiosPost('/sys/shop/cashOutProduct', params, config);27//验证码28export const sendMessage = (params, config) => axiosPost('sys/order/sendMessage', params, config);29//编辑还款配制30export const changeRepayConfig = (params, config) => axiosPost('/sys/shop/changeRepayConfig', params, config);31// 查询商户资金明细列表:32export const queryCostDetail = (params, config) => axiosPost('/sys/shop/queryCostDetail', params, config);33//用户列表查询:34export const cusList = (params, config) => axiosPost('/sys/cus/cusList', params, config);35//系统推广列表查询36export const sysPromotionList = (params, config) => axiosPost('/sys/cus/sysPromotionList', params, config);37//客服列表38export const cusServiceList = (params, config) => axiosPost('/sys/cus/cusServiceList', params, config);39//提交审核40export const subAnlyseCustomer = (params, config) => axiosPost('/sys/cus/subAnlyseCustomer', params, config);41//修改标签42export const changeLabel = (params, config) => axiosPost('/sys/cus/changeLabel', params, config);43//打回44export const repulseCus = (params, config) => axiosPost('/sys/cus/repulseCus', params, config);45//终审拒绝46export const refuseFinalAudit = (params, config) => axiosPost('/sys/cus/refuseFinalAudit', params, config);47//提交借贷认证上传图片48export const uploadLoanProve = (params, config) => axiosPost('/sys/cus/uploadLoanProve', params, config);49//用户审核列表查询:50export const cusAuthList = (params, config) => axiosPost('/sys/cus/cusAuthList', params, config);51//获取短信链接:52export const getlink = (params, config) => axiosPost('/sys/cus/getlink', params, config);53//审核人员认领:54export const claimCustomer = (params, config) => axiosPost('/sys/cus/claimCustomer', params, config);55//审核人员审核56export const auditCustomer = (params, config) => axiosPost('sys/cus/auditCustomer', params, config);57// 生成借条58export const artificiapay = (params, config) => axiosPost('sys/loan/artificiapay', params, config);59//查看用户信息:60export const getCusInfo = (params, config) => axiosPost('sys/cus/getCusInfo', params, config);61/// 终审列表的62export const finalAuditlist = (params, config) => axiosPost('sys/cus/finalAuditlist', params, config);63// 修改用户信息:64export const changeCusInfo = (params, config) => axiosPost('sys/cus/changeCusInfo', params, config);65//查看联系人:66export const getContactInfo = (params, config) => axiosPost('sys/cus/getContactInfo', params, config);67//获取紧急联系人268export const getLinkMan = (params, config) => axiosPost('sys/cus/getLinkMan', params, config);69//查看记录:70export const getCusRecord = (params, config) => axiosPost('sys/cus/getCusRecord', params, config);71//添加备注:72export const addCusRemark = (params, config) => axiosPost('sys/cus/addCusRemark', params, config);73//网贷黑名单74export const getTdBacklistInfo = (params, config) => axiosPost('sys/cus/getTdBacklistInfo', params, config);75//电商76export const getShopData = (params, config) => axiosPost('sys/cus/getShopData', params, config);77//手机运营商信息78export const getMhmobileDetailInfo = (params, config) => axiosPost('sys/cus/getMhmobileDetailInfo', params, config);79// 借贷宝80export const getCreditJiedaibaoInfo = (params, config) => axiosPost('sys/cus/getCreditJiedaibaoInfo', params, config);81// 今借到82export const getCreditJinjiedaoInfo = (params, config) => axiosPost('sys/cus/getCreditJinjiedaoInfo', params, config);83/// 手机通讯录数据84export const getCreditAddressInfo = (params, config) => axiosPost('sys/cus/getCreditAddressInfo', params, config);85//备注联系人86export const addLinkMan = (params, config) => axiosPost('sys/cus/addLinkMan', params, config);87//上传手机通讯录88export const upload = (params, config) => axiosPost('sys/cus/upload', params, config);89//网贷共享报告90export const getCreditWdgxInfo = (params, config) => axiosPost('sys/cus/getCreditWdgxInfo', params, config);91//借贷认证92export const getCusModuleInfo = (params, config) => axiosPost('sys/cus/getCusModuleInfo', params, config);93//查看自动审核信息:94export const getModuleInfo = (params, config) => axiosPost('sys/cus/getModuleInfo', params, config);95///推送消息96export const sendGeneralizeMessage = (params, config) => axiosPost('/sys/cus/sendGeneralizeMessage', params, config);97//获取借条信息98export const loanInfo = (params, config) => axiosPost('sys/loan/loanInfo', params, config);99//借款列表查询:100export const loanList = (params, config) => axiosPost('/sys/loan/loanList', params, config);101//借款记录列表102export const loanRecordList = (params, config) => axiosPost('/sys/loan/loanRecordList', params, config);103//打款审核(通过/不通过):104export const auditUserPay = (params, config) => axiosPost('/sys/loan/auditUserPay', params, config);105//还款列表查询:106export const repayDetailList = (params, config) => axiosPost('/sys/loan/repayDetailList', params, config);107// 还款记录:108// export const repayLogList = (params, config) => axiosPost('/sys/loan/repayLogList', params, config);109export const logOrderCusRepayRenewalList = (params, config) => axiosPost('/sys/loan/logOrderCusRepayRenewalList', params, config);110//还款审核(通过/不通过):111export const auditUserRepay = (params, config) => axiosPost('/sys/loan/auditUserRepay', params, config);112//新增还款流水记录113export const saveLogOrderCusRepay = (params, config) => axiosPost('/sys/loan/saveLogOrderCusRepay', params, config);114//新增续期流水记录115export const saveLogOrderCusRenewal = (params, config) => axiosPost('/sys/loan/saveLogOrderCusRenewal', params, config);116//用户列表117export const userList = (params, config) => axiosPost('sys/user/userList', params, config);118//是否推送开关119export const changeAllotSwith = (params, config) => axiosPost('/sys/user/changeAllotSwith', params, config);120//获取所有角色:121export const getAllRoles = (params, config) => axiosPost('sys/user/getAllRoles', params, config);122//添加用户:123export const addUser = (params, config) => axiosPost('/sys/user/addUser', params, config);124//修改用户:125export const changeUser = (params, config) => axiosPost('/sys/user/changeUser', params, config);126//删除用户:127export const delateUser = (params, config) => axiosPost('/sys/user/delateUser', params, config);128//修改密码:129export const changePwd = (params, config) => axiosPost('/sys/user/changePwd', params, config);130//重置密码:131export const resetPwd = (params, config) => axiosPost('/sys/user/resetPwd', params, config);132//获取运营人员133export const getoperactionInfo = (params, config) => axiosPost('/sys/proxy/getoperactionInfo', params, config);134//代理平台135export const proxyplatfrom = (params, config) => axiosPost('/sys/proxy/proxyplatfrom', params, config);136//代理列表137export const proxylist = (params, config) => axiosPost('/sys/proxy/proxylist', params, config);138//添加代理139export const addProxyUser = (params, config) => axiosPost('/sys/proxy/addProxyUser', params, config);140//编辑141export const updateProxy = (params, config) => axiosPost('/sys/proxy/updateProxy', params, config);142//获取权值143export const getsysProxyInfo = (params, config) => axiosPost('/sys/proxy/getsysProxyInfo', params, config);144//获取代理统计145export const proxyStatisticslist = (params, config) => axiosPost('/sys/proxy/proxyStatisticslist', params, config);146//////////////////////147//贷后管理148//提醒列表149export const loanCollectDayBeforeList = (params, config) => axiosPost('/sys/loanCollect/loanCollectDayBeforeList', params, config);150export const UpdateloanCollect = (params, config) => axiosPost('/sys/loanCollect/UpdateloanCollect', params, config);151//催收列表152export const loanCollectList = (params, config) => axiosPost('/sys/loanCollect/loanCollectList', params, config);153export const updateLoanDetailRemarks = (params, config) => axiosPost('/sys/loanCollect/updateLoanDetailRemarks', params, config);154export const getLoanCollects = (params, config) => axiosPost('/sys/loanCollect/getLoanCollects', params, config);155//统计管理156export const getServiceStatisList = (params, config) => axiosPost('/sys/statistics/getServiceStatisList', params, config);157export const statisticsReviewOfficer = (params, config) => axiosPost('/sys/statistics/statisticsReviewOfficer', params, config);158//首页159export const chargingList = (params, config) => axiosPost('/sys/statistics/chargingList', params, config);160//收费标准...

Full Screen

Full Screen

API.js

Source:API.js Github

copy

Full Screen

...6 user: user,7 notify: notify,8 image: image9 }10 return axios.post("/api/user/register", obj);11 },12 loginUser: function(loginData) {13 return axios.post("/api/user/login", loginData);14 },15 getUserbyId: function(id) {16 return axios.post("/api/user/" + id);17 },18 checkFriendRequest: function(username) {19 return axios.post("/api/user/friendRequest/" + username)20 },21 acceptFriendRequest: function(username, friendUsername) {22 return axios.post("/api/user/acceptFriendRequest/" + username, {friendUsername: friendUsername})23 },24 declineFriendRequest: function(username, friendUsername) {25 return axios.post("/api/user/declineFriendRequest/" + username, {friendUsername: friendUsername})26 },27 getAllUsersPantheon: function(username) {28 return axios.post("/api/user/allPantheon/" + username);29 },30 allUserPantheons: function(username, user) {31 return axios.post("/api/user/allUserPantheons/" + username, user)32 },33 // saveReview: function(user, review) {34 // return axios.post("/api/user/review/" + user, review);35 // },36 // getReview: function(id) {37 // return axios.post("/api/user/mediaReview/" + id);38 // },39 // getMaxRatings: function() {40 // return axios.post("api/maxRatings");41 // },42 addFriend: function(username, selector, input) {43 const obj = {44 username: username,45 selector: selector,46 input: input47 };48 return axios.post("api/user/addFriend/" + username, obj);49 },50 getFriends: function(username) {51 return axios.post("api/user/getFriends/" + username);52 },53 getFriendsPantheon: function (user) {54 return axios.post("api/user/getFriendsPantheon/" + user.username, user)55 },56 savePantheon: function(data) {57 return axios.post("api/pantheon", data);58 },59 getNonAcceptedPantheons: function(username) {60 return axios.post("api/pantheon/" + username);61 },62 getUserPantheonInteractions: function(username) {63 return axios.post("api/user/pantheonInteractions/" + username)64 },65 acceptPantheon: function(id, username) {66 const obj = {67 username: username68 };69 return axios.post("api/user/pantheon/" + id, obj)70 },71 declinePantheon: function(id, username) {72 const obj = {73 username: username74 };75 return axios.post("api/user/pantheonDeclined/" + id, obj)76 },77 getPantheonBattle: function(username) {78 return axios.post("api/pantheon/selectMusic/" + username)79 },80 saveSong: function(username, song, pantheonId) {81 const obj = {82 song: song,83 pantheonId: pantheonId84 };85 return axios.post("api/pantheon/song/" + username, obj)86 },87 checkPantheonTimer: function(username) {88 return axios.post("api/pantheon/timer/" + username);89 },90 submitVote: function(username, fighter, pantheonId, battle, number) {91 const obj = {92 username: username,93 fighter: fighter,94 battle: battle,95 number: number96 };97 return axios.post("api/pantheon/vote/" + pantheonId, obj)98 },99 finalVote: function(username) {100 return axios.post("api/pantheon/finalVote/" + username);101 },102 getResultsPantheon: function (username) {103 return axios.post("api/pantheon/results/" + username);104 },105 submitFinalVote: function(username, fighter, pantheonId, battle) {106 const obj = {107 username: username,108 fighter: fighter,109 battle: battle,110 };111 return axios.post("api/pantheon/finalVoting/" + pantheonId, obj)112 },113 checkFinalTimer: function(username) {114 return axios.post("api/pantheon/finalTimer/" + username);115 },116 getWinner: function(username) {117 return axios.post("api/pantheon/winner/" + username);118 },119 completePantheon: function(username) {120 return axios.post("api/pantheon/complete/" + username)121 }122 // getActivePantheon: function(id) {123 // return axios.post("api/pantheon/creator/" + id);124 // },125 // startMusic: function (item) {126 // console.log(item)127 // return axios.post("api/pantheon/music/" + item.id, item);128 // },129 // getMusic: function (username) {130 // return axios.post("api/pantheon/find/" + username)131 // },132 // submitBattle: function (obj, username) {133 // return axios.post("api/pantheon/battle/" + username, obj)134 // },135 // getVotingPantheon: function (username) {136 // return axios.post("api/pantheon/voting/" + username);137 // },138 // saveVotes: function (obj) {139 // return axios.post("api/pantheon/saveVotes/" + obj.username, obj)140 // },141 // getResults: function (username) {142 // return axios.post("api/pantheon/results/" + username)143 // },144 // createFinalBattle: function (id) {145 // return axios.post("api/pantheon/finalBattle/" + id)146 // },147 // getFinalMusic: function (username) {148 // return axios.post("api/pantheon/finalMusic/" + username)149 // },150 // submitFinalBattle: function (obj, username) {151 // return axios.post("api/pantheon/finalMusicChoice/" + username, obj)152 // },153 // getFinalVotingPantheon: function (username) {154 // return axios.post("api/pantheon/finalVoting/" + username);155 // },156 // saveFinalVotes: function (obj, username) {157 // return axios.post("api/pantheon/saveFinalVotes/" + username, obj)158 // },159 // getFinalResults: function (username) {160 // return axios.post("api/pantheon/finalResults/" + username)161 // },162 // completePantheon: function (pantheonId) {163 // return axios.post("api/pantheon/complete/" + pantheonId)164 // }...

Full Screen

Full Screen

service.js

Source:service.js Github

copy

Full Screen

2//if (process.env.NODE_ENV == 'development') {3 axios.defaults.baseURL = 'http://182.254.133.153:8088';4//}5const AppService = {6 book_data: request => axios.post('api/book/data', request),7 book_items: request => axios.post('api/book/items', request),8 book_item: request => axios.post('api/book/item', request),9 book_basic: request => axios.post('api/book/basic', request),10 book_count: request => axios.post('api/book/count', request),11 book_update: request => axios.post('api/book/update', request),12 book_create: request => axios.post('api/book/create', request),13 book_empty: request => axios.post('api/book/empty', request),14 book_enable: request => axios.post('api/book/enable', request),15 book_disable: request => axios.post('api/book/disable', request),16 tag_data: request => axios.post('api/tag/data', request),17 tag_items: request => axios.post('api/tag/items', request),18 tag_item: request => axios.post('api/tag/item', request),19 tag_basic: request => axios.post('api/tag/basic', request),20 tag_count: request => axios.post('api/tag/count', request),21 tag_update: request => axios.post('api/tag/update', request),22 tag_create: request => axios.post('api/tag/create', request),23 tag_empty: request => axios.post('api/tag/empty', request),24 tag_enable: request => axios.post('api/tag/enable', request),25 tag_disable: request => axios.post('api/tag/disable', request),26 category_data: request => axios.post('api/category/data', request),27 category_items: request => axios.post('api/category/items', request),28 category_item: request => axios.post('api/category/item', request),29 category_basic: request => axios.post('api/category/basic', request),30 category_count: request => axios.post('api/category/count', request),31 category_update: request => axios.post('api/category/update', request),32 category_create: request => axios.post('api/category/create', request),33 category_empty: request => axios.post('api/category/empty', request),34 category_enable: request => axios.post('api/category/enable', request),35 category_disable: request => axios.post('api/category/disable', request),36 pattern_data: request => axios.post('api/pattern/data', request),37 pattern_items: request => axios.post('api/pattern/items', request),38 pattern_item: request => axios.post('api/pattern/item', request),39 pattern_basic: request => axios.post('api/pattern/basic', request),40 pattern_count: request => axios.post('api/pattern/count', request),41 pattern_update: request => axios.post('api/pattern/update', request),42 pattern_create: request => axios.post('api/pattern/create', request),43 pattern_empty: request => axios.post('api/pattern/empty', request),44 pattern_enable: request => axios.post('api/pattern/enable', request),45 pattern_disable: request => axios.post('api/pattern/disable', request),46 metaStatus_items: request => axios.post('api/meta-status/items', request),47 metaStatus_selected_item: request => axios.post('api/meta-status/selected-item', request),48 metaStatus_selected_items: request => axios.post('api/meta-status/selected-items', request),49 metaColor_items: request => axios.post('api/meta-color/items', request),50 metaColor_selected_item: request => axios.post('api/meta-color/selected-item', request),51 metaColor_selected_items: request => axios.post('api/meta-color/selected-items', request),52 metaCategory_items: request => axios.post('api/meta-category/items', request),53 metaCategory_selected_item: request => axios.post('api/meta-category/selected-item', request),54 metaCategory_selected_items: request => axios.post('api/meta-category/selected-items', request),55 metaPattern_items: request => axios.post('api/meta-pattern/items', request),56 metaPattern_selected_item: request => axios.post('api/meta-pattern/selected-item', request),57 metaPattern_selected_items: request => axios.post('api/meta-pattern/selected-items', request),58 casTag_items: request => axios.post('api/cas-tag/items', request),59 casTag_selected_item: request => axios.post('api/cas-tag/selected-item', request),60 casTag_selected_items: request => axios.post('api/cas-tag/selected-items', request),61 casTag_basic: request => axios.post('api/cas-tag/basic', request),62 user_profile: request => axios.post('api/user/profile', request)63}...

Full Screen

Full Screen

depart.js

Source:depart.js Github

copy

Full Screen

...6 * 获取部门列表7 * @param {*} params8 */9export function getDepartSelect(params) {10 return $axios.post("/depart/select", params);11}12/**13 * 获取部门列表14 * @param {*} params15 */16export function getDepartList(params) {17 return $axios.post("/depart/list", params);18}19/**20 * 新增修改部门21 * @param {*} params22 */23export function addOrUpdateDepart(params) {24 return $axios.post("/depart/add", params);25}26/**27 * 资产列表28 * @param {*} params29 */30export function getAssetsList(params) {31 return $axios.post("/assests/list", params);32}33/**34 * 保存资产35 * @param {*} params36 */37export function addOrUpdateAssets(params) {38 return $axios.post("/assests/save", params);39}40/**41 * 删除资产42 * @param {*} id43 */44export function deleteAssetsById(id) {45 return $axios.post(`/assests/delete/${id}`);46}47/**48 * 报废资产49 * @param {*} id50 */51export function loseAssetsById(id) {52 return $axios.post(`/assests/lose/${id}`);53}54/**55 * 获取我申请的维修单56 * @param {*} params57 */58export function getKeepMyList(params) {59 return $axios.post("/keep/my/list", params);60}61/**62 * 维修人员63 * @param {*} params64 */65export function getKeepUserSelect(params) {66 return $axios.post("/keep/user/select", params);67}68/**69 * 待审核列表70 * @param {*} params71 */72export function getVerifyList(params) {73 return $axios.post("/keep/verify/list", params);74}75/**76 * 保存资产77 * @param {*} params78 */79export function addOrUpdateKeep(params) {80 return $axios.post("/keep/add", params);81}82/**83 * 维修申请待审核84 * @param {*} params85 */86export function getKeepApplyVerify(params) {87 return $axios.post("/keep/apply/verify", params);88}89/**90 * 维修申请拒绝91 * @param {*} params92 */93export function getKeepApplyRefuse(params) {94 return $axios.post("/keep/apply/refuse", params);95}96/**97 * 维修审核待审核98 * @param {*} params99 */100export function getKeepAdminVerify(params) {101 return $axios.post("/keep/admin/verify", params);102}103/**104 * 维修审核已驳回105 * @param {*} params106 */107export function getKeepAdminRefuse(params) {108 return $axios.post("/keep/admin/refuse", params);109}110/**111 * 审核维修单112 * @param {*} params113 */114export function shKeepVerify(params) {115 return $axios.post("/keep/verify", params);116}117/**118 * 维修进度待维修119 * @param {*} params120 */121export function getSpeedKeeping(params) {122 return $axios.post("/keep/speed/keeping", params);123}124/**125 * 维修进度待维修126 * @param {*} params127 */128export function getSpeedFinishi(params) {129 return $axios.post("/keep/speed/finish", params);130}131/**132 * 自主巡检133 * @param {*} params134 */135export function getPatrolAutoList(params) {136 return $axios.post("/patrol/auto/list", params);137}138/**139 * 定期巡检140 * @param {*} params141 */142export function getPatrolTimeList(params) {143 return $axios.post("/patrol/time/list", params);144}145/**146 * 新增编辑异常记录147 * @param {*} type148 * @param {*} params149 */150export function addOrUpdateYichang(type, params) {151 return $axios.post(`/patrol/${type}/save`, params);152}153/**154 * 删除巡检155 * @param {*} id156 */157export function deletePatrol(id) {158 return $axios.post(`/patrol/delete/${id}`);159}160export function getParrolDetail(id) {161 return $axios.post(`/patrol/find/${id}`);162}163/**164 * 获取首页数据165 */166export function getIndexData(params) {167 return $axios.post("/data/chart", params);168}169/**170 * 删除171 * @param {*} id172 */173export function deleteKeep(id) {174 return $axios.post(`/keep/delete/${id}`);175}176/**177 * 详情178 */179export function getKeepDetail(id) {180 return $axios.post(`/keep/find/${id}`);181}182export function subKeepRemark(params) {183 return $axios.post("/keep/remark", params);...

Full Screen

Full Screen

task.js

Source:task.js Github

copy

Full Screen

2axios.defaults.withCredentials = true3import API from "@/net/API"4export default {5 async loadAll() {6 return await axios.post(API.LOAD_ALL_TASK.path, {})7 },8 async loadTask() {9 return await axios.get(API.LOAD_TASK.path)10 },11 async getFavor(){12 return await axios.post(API.GET_FAVOR.path, {})13 },14 async getMiniTaskByTask(id){15 return await axios.post(API.GET_MINITASK_BY_TASK.path,{id})16 },17 async favor(id){18 return await axios.post(API.FAVOR.path, {id})19 },20 async isFavor(id){21 return await axios.post(API.IS_FAVOR.path, {id})22 },23 async createTask(cover, title, intro, deadline) {24 let formData = new FormData()25 formData.append('file', cover)26 let data = JSON.stringify({title, intro, deadline})27 formData.append('data', data) // 上传文件的同时, 也可以上传其他数据28 let config = {29 headers: {'Content-Type': 'multipart/form-data'}30 }31 return await axios.post(API.CREATE_TASK.path, formData, config)32 },33 async getTemplate(type) {34 return await axios.post(API.GET_TEMPLATE.path, { type })35 },36 async configTask(problems, id, deadline, taskTag, miniTasksNum, miniTasksBonus, miniTasksTime, miniTasksLimit, miniTasksType) {37 let formData = new FormData()38 formData.append('file', problems)39 let data = JSON.stringify({id, deadline, taskTag, miniTasksNum, miniTasksBonus, miniTasksTime, miniTasksLimit, miniTasksType})40 formData.append('data', data) // 上传文件的同时, 也可以上传其他数据41 let config = {42 headers: {'Content-Type': 'multipart/form-data'}43 }44 return await axios.post(API.CONFIG_TASK.path, formData, config)45 },46 async beforeReleaseTask(id) {47 return await axios.post(API.BEFORE_RELEASE_TASK.path, { id })48 },49 async releaseTask(id) {50 return await axios.post(API.RELEASE_TASK.path, { id })51 },52 async getTaskProgress(id) {53 return await axios.post(API.TASK_PROGRESS.path, { id })54 },55 async terminateTask(id) {56 return await axios.post(API.TERMINATE_TASK.path, { id })57 },58 async getMiniTasks(id) {59 return await axios.post(API.SEE_MINI_TASKS_OF_TASK.path, { id })60 },61 async getAnswerIds(id) {62 return await axios.post(API.SEE_ANSWERS_OF_USERS.path, { id })63 },64 async getProblemsAndUsers(id) {65 return await axios.post(API.SEE_ANSWERS_OF_USER.path, { id })66 },67 async refuseAnswer(id) {68 return await axios.post(API.REFUSE_ANSWERS_OF_USER.path, { id })69 },70 async continueRelease(id) {71 return await axios.post(API.CONTINUE_RELEASE.path, { id })72 },73 async getAnswerProgress(id) {74 return await axios.post(API.ANSWER_PROGRESS.path, { id })75 },76 async autoCheck(id) {77 return await axios.post(API.AUTO_CHECK.path, { id })78 },79 async settleTask(id) {80 return await axios.post(API.SETTLE_TASK.path, { id })81 },82 async exportTask(id) {83 return await axios.post(API.EXPORT_TASK.path, { id })84 },...

Full Screen

Full Screen

Myservices.js

Source:Myservices.js Github

copy

Full Screen

1import axios from 'axios'2import { MAIN_URL } from "./URL"3export function register(data) {4 return axios.post(`${MAIN_URL}/register`, data);5}6export function login(data) {7 return axios.post(`${MAIN_URL}/login`, data)8}9export function sociallogin(data) {10 return axios.post(`${MAIN_URL}/sociallogin`, data)11}12export function sendotp(data) {13 return axios.post(`${MAIN_URL}/sendotp`, data)14}15export function getinfo(data) {16 return axios.post(`${MAIN_URL}/getinfo`, data)17}18export function changepassword(data) {19 return axios.post(`${MAIN_URL}/changepassword`, data)20}21export function getproducts(data) {22 return axios.get(`${MAIN_URL}/getproducts${data}`)23}24export function forgetpassword(data) {25 return axios.post(`${MAIN_URL}/forgetpassword`, data)26}27export function addAddress(data) {28 return axios.post(`${MAIN_URL}/addAddress`, data)29}30export function viewproducts(id) {31 return axios.get(`${MAIN_URL}/viewproduct${id}`)32}33export function setAddress(data) {34 return axios.post(`${MAIN_URL}/setAddress`, data)35}36export function setcart(data) {37 return axios.post(`${MAIN_URL}/setcart`, data)38}39export function setorder(data) {40 return axios.post(`${MAIN_URL}/setorder`, data)41}42export function getorder(data) {43 return axios.post(`${MAIN_URL}/getorder`, data)44}45export function getcartinfo(data) {46 return axios.post(`${MAIN_URL}/getcartinfo`, data)47}48export function getCategory() {49 return axios.get(`${MAIN_URL}/getCategory`)50}51export function getColor() {52 return axios.get(`${MAIN_URL}/getColor`)53}54export function updateRating(data) {55 return axios.post(`${MAIN_URL}/updateRating`, data)56}57export function getsearch(data) {58 return axios.post(`${MAIN_URL}/getsearch`, data);59}60export function subscribe(data) {61 return axios.post(`${MAIN_URL}/subscribe`, data)...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1var axios = require('axios');2var fs = require('fs');3var FormData = require('form-data');4var form = new FormData();5form.append('file', fs.createReadStream('file.zip'));6 headers: form.getHeaders()7}).then(function (response) {8 console.log(response);9}).catch(function (error) {10 console.log(error);11});12var axios = require('axios');13var fs = require('fs');14var FormData = require('form-data');15var form = new FormData();16form.append('file', fs.createReadStream('file.zip'));17 headers: form.getHeaders()18}).then(function (response) {19 console.log(response);20}).catch(function (error) {21 console.log(error);22});23var axios = require('axios');24var fs = require('fs');25var FormData = require('form-data');26var form = new FormData();27form.append('file', fs.createReadStream('file.zip'));28 headers: form.getHeaders()29}).then(function (response) {30 console.log(response);31}).catch(function (error) {32 console.log(error);33});34var axios = require('axios');35var fs = require('fs');36var FormData = require('form-data');37var form = new FormData();38form.append('file', fs.createReadStream('file.zip'));39 headers: form.getHeaders()40}).then(function (response) {41 console.log(response);42}).catch(function (error) {43 console.log(error);44});45var axios = require('axios');46var fs = require('fs');47var FormData = require('form-data');48var form = new FormData();49form.append('file', fs.createReadStream('file.zip'));50 headers: form.getHeaders()51}).then(function (response)

Full Screen

Using AI Code Generation

copy

Full Screen

1const axios = require('axios')2const fs = require('fs')3const data = {4 "desiredCapabilities": {5 }6}7 .then((response) => {8 console.log(response.data);9 let data = JSON.stringify(response.data);10 fs.writeFileSync('session.json', data);11 }, (error) => {12 console.log(error);13 });14{15 "value": {16 "warnings": {},17 "desired": {18 },19 }20}21const axios = require('axios')22const fs = require('fs')23const session = fs.readFileSync('session.json');24const sessionData = JSON.parse(session);25const sessionId = sessionData.sessionId;26 .then((response) => {27 console.log(response.data);28 }, (error

Full Screen

Using AI Code Generation

copy

Full Screen

1var axios = require('axios');2var fs = require('fs');3var data = JSON.stringify({4 "desiredCapabilities": {5 }6});7var config = {8 headers: {9 },10};11axios(config)12.then(function (response) {13 console.log(JSON.stringify(response.data));14 fs.writeFile('response.json', JSON.stringify(response.data), function (err) {15 if (err) throw err;16 console.log('Saved!');17 });18})19.catch(function (error) {20 console.log(error);21});22{23 "value": {24 "viewportRect": {25 }26 }27}28var axios = require('axios');29var fs = require('fs');30var config = {

Full Screen

Using AI Code Generation

copy

Full Screen

1var axios = require('axios');2var config = {3 headers: { 4 },5 data : {}6};7axios(config)8.then(function (response) {9 console.log(JSON.stringify(response.data));10})11.catch(function (error) {12 console.log(error);13});14var axios = require('axios');15var config = {16 headers: { 17 },18 data : {}19};20axios(config)21.then(function (response) {22 console.log(JSON.stringify(response.data));23})24.catch(function (error) {25 console.log(error);26});27var axios = require('axios');28var config = {29 headers: { 30 },31 data : {}32};33axios(config)34.then(function (response) {35 console.log(JSON.stringify(response.data));36})37.catch(function (error) {38 console.log(error);39});40var axios = require('axios');41var config = {

Full Screen

Using AI Code Generation

copy

Full Screen

1const axios = require('axios');2const data = {3};4axios.post(url, data)5 .then(function (response) {6 console.log(response.data);7 const data2 = {8 };9 axios.post(url2, data2)10 .then(function (response) {11 console.log(response.data);12 })13 .catch(function (error) {14 console.log(error);15 });16 })17 .catch(function (error) {18 console.log(error);19 });20const axios = require('axios');21const data = {22};23axios.post(url, data)24 .then(function (response) {25 console.log(response.data);

Full Screen

Automation Testing Tutorials

Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.

LambdaTest Learning Hubs:

YouTube

You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.

Run Appium automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful