123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641 |
- import { request } from './request';
- export function loginPasswordLogin(option) {
- return request({
- url: '/api/Login/passwordLogin',
- method: 'POST',
- ...option,
- });
- }
- export function loginPhoneCodeRegister(option) {
- return request({
- url: '/api/Login/phoneCodeRegister',
- method: 'POST',
- ...option,
- });
- }
- export function loginPhoneCodeLogin(option) {
- return request({
- url: '/api/Login/phoneCodeLogin',
- method: 'POST',
- ...option,
- });
- }
- export function loginGetCaptcha(option) {
- return request({
- url: '/api/Login/getCaptcha',
- method: 'GET',
- ...option,
- });
- }
- export function loginResetPassword(option) {
- return request({
- url: '/api/Login/resetPassword',
- method: 'POST',
- ...option,
- });
- }
- export function generalSendSms(option) {
- return request({
- url: '/api/General/sendSms',
- method: 'POST',
- ...option,
- });
- }
- export function generalGetUserMessage(option) {
- return request({
- url: '/api/General/getUserMessage',
- method: 'GET',
- ...option,
- });
- }
- export function generalGetQrCode(option) {
- return request({
- url: '/api/General/getQrCode',
- method: 'GET',
- ...option,
- });
- }
- export function generalDeliveryDetails(option) {
- return request({
- url: '/api/General/deliveryDetails',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetBanner(option) {
- return request({
- url: '/api/Expedite/getBanner',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetIndexMenu(option) {
- return request({
- url: '/api/Expedite/getIndexMenu',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetGoodsList(option) {
- return request({
- url: '/api/Expedite/getGoodsList',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetGoodsDetail(option) {
- return request({
- url: '/api/Expedite/getGoodsDetail',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetExchangeGoodsDetail(option) {
- return request({
- url: '/api/Expedite/getExchangeGoodsDetail',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetGoodsComment(option) {
- return request({
- url: '/api/Expedite/getGoodsComment',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetSysConfig(option) {
- return request({
- url: '/api/Expedite/getSysConfig',
- method: 'GET',
- ...option,
- });
- }
- export function expediteGetCouponConfig(option) {
- return request({
- url: '/api/Expedite/getCouponConfig',
- method: 'GET',
- ...option,
- });
- }
- export function informationGetCateTree(option) {
- return request({
- url: '/api/Information/getCateTree',
- method: 'GET',
- ...option,
- });
- }
- export function informationGetBanner(option) {
- return request({
- url: '/api/Information/getBanner',
- method: 'GET',
- ...option,
- });
- }
- export function informationGetInformationList(option) {
- return request({
- url: '/api/Information/getInformationList',
- method: 'GET',
- ...option,
- });
- }
- export function informationGetInformationGoods(option) {
- return request({
- url: '/api/Information/getInformationGoods',
- method: 'GET',
- ...option,
- });
- }
- export function userCenterGetUserInfo(option) {
- return request({
- url: '/api/User_center/getUserInfo',
- method: 'GET',
- ...option,
- });
- }
- export function userCenterUpdateUserInfo(option) {
- return request({
- url: '/api/User_center/updateUserInfo',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterModifyPhone(option) {
- return request({
- url: '/api/User_center/modifyPhone',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterCheckBindPhone(option) {
- return request({
- url: '/api/User_center/checkBindPhone',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterModifyPassword(option) {
- return request({
- url: '/api/User_center/modifyPassword',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterUserCertification(option) {
- return request({
- url: '/api/User_center/userCertification',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterCancelUserInfo(option) {
- return request({
- url: '/api/User_center/cancelUserInfo',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterGetMyAliAccount(option) {
- return request({
- url: '/api/User_center/getMyAliAccount',
- method: 'GET',
- ...option,
- });
- }
- export function userCenterBindAliAccount(option) {
- return request({
- url: '/api/User_center/bindAliAccount',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterBindBankAccount(option) {
- return request({
- url: '/api/User_center/bindBankAccount',
- method: 'POST',
- ...option,
- });
- }
- export function userCenterGetBandAccountDetail(option) {
- return request({
- url: '/api/User_center/getBandAccountDetail',
- method: 'GET',
- ...option,
- });
- }
- export function userCenterGetBankAccountList(option) {
- return request({
- url: '/api/User_center/getBankAccountList',
- method: 'GET',
- ...option,
- });
- }
- export function signCheckSign(option) {
- return request({
- url: '/api/Sign/checkSign',
- method: 'GET',
- ...option,
- });
- }
- export function signGetContinuousSign(option) {
- return request({
- url: '/api/Sign/getContinuousSign',
- method: 'GET',
- ...option,
- });
- }
- export function signUserSign(option) {
- return request({
- url: '/api/Sign/userSign',
- method: 'POST',
- ...option,
- });
- }
- export function signGetSignCard(option) {
- return request({
- url: '/api/Sign/getSignCard',
- method: 'POST',
- ...option,
- });
- }
- export function signRetroactive(option) {
- return request({
- url: '/api/Sign/retroactive',
- method: 'POST',
- ...option,
- });
- }
- export function signGetSignList(option) {
- return request({
- url: '/api/Sign/getSignList',
- method: 'GET',
- ...option,
- });
- }
- export function walletManageWalletInfo(option) {
- return request({
- url: '/api/Wallet_manage/walletInfo',
- method: 'GET',
- ...option,
- });
- }
- export function walletManageWithdraw(option) {
- return request({
- url: '/api/Wallet_manage/withdraw',
- method: 'GET',
- ...option,
- });
- }
- export function walletManageGetWithdrawLog(option) {
- return request({
- url: '/api/Wallet_manage/getWithdrawLog',
- method: 'GET',
- ...option,
- });
- }
- export function walletManageGetUserMoneyInfo(option) {
- return request({
- url: '/api/Wallet_manage/getUserMoneyInfo',
- method: 'GET',
- ...option,
- });
- }
- export function walletManageGetUserIntegralLog(option) {
- return request({
- url: '/api/Wallet_manage/getUserIntegralLog',
- method: 'GET',
- ...option,
- });
- }
- export function userManageLeaveFeedback(option) {
- return request({
- url: '/api/User_manage/leaveFeedback',
- method: 'POST',
- ...option,
- });
- }
- export function userManageSetDeliveryAddress(option) {
- return request({
- url: '/api/User_manage/setDeliveryAddress',
- method: 'POST',
- ...option,
- });
- }
- export function userManageChangeApproveDelivery(option) {
- return request({
- url: '/api/User_manage/changeApproveDelivery',
- method: 'POST',
- ...option,
- });
- }
- export function userManageDelDeliveryAddress(option) {
- return request({
- url: '/api/User_manage/delDeliveryAddress',
- method: 'POST',
- ...option,
- });
- }
- export function userManageGetDeliveryAddressList(option) {
- return request({
- url: '/api/User_manage/getDeliveryAddressList',
- method: 'GET',
- ...option,
- });
- }
- export function userManageGetDeliveryAddressDetail(option) {
- return request({
- url: '/api/User_manage/getDeliveryAddressDetail',
- method: 'GET',
- ...option,
- });
- }
- export function areaGetAreaChildrenByID(option) {
- return request({
- url: '/api/area/getAreaChildrenByID',
- method: 'GET',
- ...option,
- });
- }
- export function collectGetCollectSet(option) {
- return request({
- url: '/api/Collect/getCollectSet',
- method: 'GET',
- ...option,
- });
- }
- export function collectGetUserCollectList(option) {
- return request({
- url: '/api/Collect/getUserCollectList',
- method: 'GET',
- ...option,
- });
- }
- export function collectCancelCollect(option) {
- return request({
- url: '/api/Collect/cancelCollect',
- method: 'POST',
- ...option,
- });
- }
- export function trolleyAddTrolley(option) {
- return request({
- url: '/api/Trolley/addTrolley',
- method: 'POST',
- ...option,
- });
- }
|