service.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641
  1. import { request } from './request';
  2. // Login 用户登录
  3. /**
  4. * 手机密码登录
  5. */
  6. export function loginPasswordLogin(option) {
  7. return request({
  8. url: '/api/Login/passwordLogin',
  9. method: 'POST',
  10. ...option,
  11. });
  12. }
  13. /**
  14. * 手机验正码注册
  15. */
  16. export function loginPhoneCodeRegister(option) {
  17. return request({
  18. url: '/api/Login/phoneCodeRegister',
  19. method: 'POST',
  20. ...option,
  21. });
  22. }
  23. /**
  24. * 手机验证码登录
  25. */
  26. export function loginPhoneCodeLogin(option) {
  27. return request({
  28. url: '/api/Login/phoneCodeLogin',
  29. method: 'POST',
  30. ...option,
  31. });
  32. }
  33. /**
  34. * 获取验证码
  35. */
  36. export function loginGetCaptcha(option) {
  37. return request({
  38. url: '/api/Login/getCaptcha',
  39. method: 'GET',
  40. ...option,
  41. });
  42. }
  43. /**
  44. * 重置密码
  45. */
  46. export function loginResetPassword(option) {
  47. return request({
  48. url: '/api/Login/resetPassword',
  49. method: 'POST',
  50. ...option,
  51. });
  52. }
  53. // General 其他接口
  54. /**
  55. * 发送短信验证码
  56. */
  57. export function generalSendSms(option) {
  58. return request({
  59. url: '/api/General/sendSms',
  60. method: 'POST',
  61. ...option,
  62. });
  63. }
  64. /**
  65. * 获取消息
  66. */
  67. export function generalGetUserMessage(option) {
  68. return request({
  69. url: '/api/General/getUserMessage',
  70. method: 'GET',
  71. ...option,
  72. });
  73. }
  74. /**
  75. * 获取二维码
  76. */
  77. export function generalGetQrCode(option) {
  78. return request({
  79. url: '/api/General/getQrCode',
  80. method: 'GET',
  81. ...option,
  82. });
  83. }
  84. /**
  85. * 获取物流详情
  86. */
  87. export function generalDeliveryDetails(option) {
  88. return request({
  89. url: '/api/General/deliveryDetails',
  90. method: 'GET',
  91. ...option,
  92. });
  93. }
  94. // Expedite 不需要验证token接口(商品详情,商品列表等)
  95. /**
  96. * 获取首页轮播图
  97. */
  98. export function expediteGetBanner(option) {
  99. return request({
  100. url: '/api/Expedite/getBanner',
  101. method: 'GET',
  102. ...option,
  103. });
  104. }
  105. /**
  106. * 获取首页小菜单
  107. */
  108. export function expediteGetIndexMenu(option) {
  109. return request({
  110. url: '/api/Expedite/getIndexMenu',
  111. method: 'GET',
  112. ...option,
  113. });
  114. }
  115. /**
  116. * 获取商品列表 / 获取兑换商品列表
  117. */
  118. export function expediteGetGoodsList(option) {
  119. return request({
  120. url: '/api/Expedite/getGoodsList',
  121. method: 'GET',
  122. ...option,
  123. });
  124. }
  125. /**
  126. * 获取商品详情
  127. */
  128. export function expediteGetGoodsDetail(option) {
  129. return request({
  130. url: '/api/Expedite/getGoodsDetail',
  131. method: 'GET',
  132. ...option,
  133. });
  134. }
  135. // /**
  136. // * 获取兑换商品列表
  137. // */
  138. // export function expediteGetGoodsList(option) {
  139. // return request({
  140. // url: '/api/Expedite/getGoodsList',
  141. // method: 'GET',
  142. // ...option,
  143. // });
  144. // }
  145. /**
  146. * 获取兑换商品详情
  147. */
  148. export function expediteGetExchangeGoodsDetail(option) {
  149. return request({
  150. url: '/api/Expedite/getExchangeGoodsDetail',
  151. method: 'GET',
  152. ...option,
  153. });
  154. }
  155. /**
  156. * 获取商品评论
  157. */
  158. export function expediteGetGoodsComment(option) {
  159. return request({
  160. url: '/api/Expedite/getGoodsComment',
  161. method: 'GET',
  162. ...option,
  163. });
  164. }
  165. /**
  166. * 获取平台设置
  167. */
  168. export function expediteGetSysConfig(option) {
  169. return request({
  170. url: '/api/Expedite/getSysConfig',
  171. method: 'GET',
  172. ...option,
  173. });
  174. }
  175. /**
  176. * 获取所有的优惠券设置
  177. */
  178. export function expediteGetCouponConfig(option) {
  179. return request({
  180. url: '/api/Expedite/getCouponConfig',
  181. method: 'GET',
  182. ...option,
  183. });
  184. }
  185. // Information 营养百科
  186. /**
  187. * 获取分类
  188. */
  189. export function informationGetCateTree(option) {
  190. return request({
  191. url: '/api/Information/getCateTree',
  192. method: 'GET',
  193. ...option,
  194. });
  195. }
  196. /**
  197. * 获取轮播图
  198. */
  199. export function informationGetBanner(option) {
  200. return request({
  201. url: '/api/Information/getBanner',
  202. method: 'GET',
  203. ...option,
  204. });
  205. }
  206. /**
  207. * 获取资讯列表
  208. */
  209. export function informationGetInformationList(option) {
  210. return request({
  211. url: '/api/Information/getInformationList',
  212. method: 'GET',
  213. ...option,
  214. });
  215. }
  216. /**
  217. * 获取资讯相关商品
  218. */
  219. export function informationGetInformationGoods(option) {
  220. return request({
  221. url: '/api/Information/getInformationGoods',
  222. method: 'GET',
  223. ...option,
  224. });
  225. }
  226. // UserCenter 会员个人中心
  227. /**
  228. * 获取个人信息
  229. */
  230. export function userCenterGetUserInfo(option) {
  231. return request({
  232. url: '/api/User_center/getUserInfo',
  233. method: 'GET',
  234. ...option,
  235. });
  236. }
  237. /**
  238. * 编辑个人信息
  239. */
  240. export function userCenterUpdateUserInfo(option) {
  241. return request({
  242. url: '/api/User_center/updateUserInfo',
  243. method: 'POST',
  244. ...option,
  245. });
  246. }
  247. /**
  248. * 绑定手机号
  249. */
  250. export function userCenterModifyPhone(option) {
  251. return request({
  252. url: '/api/User_center/modifyPhone',
  253. method: 'POST',
  254. ...option,
  255. });
  256. }
  257. /**
  258. * 验证已绑定手机号是否正确
  259. */
  260. export function userCenterCheckBindPhone(option) {
  261. return request({
  262. url: '/api/User_center/checkBindPhone',
  263. method: 'POST',
  264. ...option,
  265. });
  266. }
  267. /**
  268. * 更换或设置密码
  269. */
  270. export function userCenterModifyPassword(option) {
  271. return request({
  272. url: '/api/User_center/modifyPassword',
  273. method: 'POST',
  274. ...option,
  275. });
  276. }
  277. /**
  278. * 实名认证
  279. */
  280. export function userCenterUserCertification(option) {
  281. return request({
  282. url: '/api/User_center/userCertification',
  283. method: 'POST',
  284. ...option,
  285. });
  286. }
  287. /**
  288. * 注销会员
  289. */
  290. export function userCenterCancelUserInfo(option) {
  291. return request({
  292. url: '/api/User_center/cancelUserInfo',
  293. method: 'POST',
  294. ...option,
  295. });
  296. }
  297. /**
  298. * 获取我绑定的支付宝账户
  299. */
  300. export function userCenterGetMyAliAccount(option) {
  301. return request({
  302. url: '/api/User_center/getMyAliAccount',
  303. method: 'GET',
  304. ...option,
  305. });
  306. }
  307. /**
  308. * 更改或绑定支付宝账户
  309. */
  310. export function userCenterBindAliAccount(option) {
  311. return request({
  312. url: '/api/User_center/bindAliAccount',
  313. method: 'POST',
  314. ...option,
  315. });
  316. }
  317. /**
  318. * 更改或绑定银行卡
  319. */
  320. export function userCenterBindBankAccount(option) {
  321. return request({
  322. url: '/api/User_center/bindBankAccount',
  323. method: 'POST',
  324. ...option,
  325. });
  326. }
  327. /**
  328. * 获取绑定银行卡详情
  329. */
  330. export function userCenterGetBandAccountDetail(option) {
  331. return request({
  332. url: '/api/User_center/getBandAccountDetail',
  333. method: 'GET',
  334. ...option,
  335. });
  336. }
  337. /**
  338. * 获取绑定银行卡列表
  339. */
  340. export function userCenterGetBankAccountList(option) {
  341. return request({
  342. url: '/api/User_center/getBankAccountList',
  343. method: 'GET',
  344. ...option,
  345. });
  346. }
  347. // Sign 会员签到
  348. /**
  349. * 验证会员当天是否签到
  350. */
  351. export function signCheckSign(option) {
  352. return request({
  353. url: '/api/Sign/checkSign',
  354. method: 'GET',
  355. ...option,
  356. });
  357. }
  358. /**
  359. * 获取会员连续签到天数
  360. */
  361. export function signGetContinuousSign(option) {
  362. return request({
  363. url: '/api/Sign/getContinuousSign',
  364. method: 'GET',
  365. ...option,
  366. });
  367. }
  368. /**
  369. * 会员签到
  370. */
  371. export function signUserSign(option) {
  372. return request({
  373. url: '/api/Sign/userSign',
  374. method: 'POST',
  375. ...option,
  376. });
  377. }
  378. /**
  379. * 会员领取签到卡
  380. */
  381. export function signGetSignCard(option) {
  382. return request({
  383. url: '/api/Sign/getSignCard',
  384. method: 'POST',
  385. ...option,
  386. });
  387. }
  388. /**
  389. * 会员补签
  390. */
  391. export function signRetroactive(option) {
  392. return request({
  393. url: '/api/Sign/retroactive',
  394. method: 'POST',
  395. ...option,
  396. });
  397. }
  398. /**
  399. * 会员签到列表
  400. */
  401. export function signGetSignList(option) {
  402. return request({
  403. url: '/api/Sign/getSignList',
  404. method: 'GET',
  405. ...option,
  406. });
  407. }
  408. // WalletManage 会员钱包管理(佣金提现,积分,经验...)
  409. /**
  410. * 获取钱包详情
  411. */
  412. export function walletManageWalletInfo(option) {
  413. return request({
  414. url: '/api/Wallet_manage/walletInfo',
  415. method: 'GET',
  416. ...option,
  417. });
  418. }
  419. /**
  420. * 佣金提现
  421. */
  422. export function walletManageWithdraw(option) {
  423. return request({
  424. url: '/api/Wallet_manage/withdraw',
  425. method: 'GET',
  426. ...option,
  427. });
  428. }
  429. /**
  430. * 获取用户提现日志
  431. */
  432. export function walletManageGetWithdrawLog(option) {
  433. return request({
  434. url: '/api/Wallet_manage/getWithdrawLog',
  435. method: 'GET',
  436. ...option,
  437. });
  438. }
  439. /**
  440. * 获取用户佣金变更记录
  441. */
  442. export function walletManageGetUserMoneyInfo(option) {
  443. return request({
  444. url: '/api/Wallet_manage/getUserMoneyInfo',
  445. method: 'GET',
  446. ...option,
  447. });
  448. }
  449. /**
  450. * 获取用户积分变更记录
  451. */
  452. export function walletManageGetUserIntegralLog(option) {
  453. return request({
  454. url: '/api/Wallet_manage/getUserIntegralLog',
  455. method: 'GET',
  456. ...option,
  457. });
  458. }
  459. // UserManage 会员管理
  460. /**
  461. * 用户反馈
  462. */
  463. export function userManageLeaveFeedback(option) {
  464. return request({
  465. url: '/api/User_manage/leaveFeedback',
  466. method: 'POST',
  467. ...option,
  468. });
  469. }
  470. /**
  471. * 设置收货地址(新增或修改)
  472. */
  473. export function userManageSetDeliveryAddress(option) {
  474. return request({
  475. url: '/api/User_manage/setDeliveryAddress',
  476. method: 'POST',
  477. ...option,
  478. });
  479. }
  480. /**
  481. * 修改默认收货地址
  482. */
  483. export function userManageChangeApproveDelivery(option) {
  484. return request({
  485. url: '/api/User_manage/changeApproveDelivery',
  486. method: 'POST',
  487. ...option,
  488. });
  489. }
  490. /**
  491. * 删除收货地址
  492. */
  493. export function userManageDelDeliveryAddress(option) {
  494. return request({
  495. url: '/api/User_manage/delDeliveryAddress',
  496. method: 'POST',
  497. ...option,
  498. });
  499. }
  500. /**
  501. * 获取收货地址列表
  502. */
  503. export function userManageGetDeliveryAddressList(option) {
  504. return request({
  505. url: '/api/User_manage/getDeliveryAddressList',
  506. method: 'GET',
  507. ...option,
  508. });
  509. }
  510. /**
  511. * 获取收货地址详情
  512. */
  513. export function userManageGetDeliveryAddressDetail(option) {
  514. return request({
  515. url: '/api/User_manage/getDeliveryAddressDetail',
  516. method: 'GET',
  517. ...option,
  518. });
  519. }
  520. // Area 地址库
  521. /**
  522. * 获取地址库ID获取下一级
  523. */
  524. export function areaGetAreaChildrenByID(option) {
  525. return request({
  526. url: '/api/area/getAreaChildrenByID',
  527. method: 'GET',
  528. ...option,
  529. });
  530. }
  531. // Collect 收藏
  532. /**
  533. * 获取收藏标题设置
  534. */
  535. export function collectGetCollectSet(option) {
  536. return request({
  537. url: '/api/Collect/getCollectSet',
  538. method: 'GET',
  539. ...option,
  540. });
  541. }
  542. /**
  543. * 获取用户收藏列表
  544. */
  545. export function collectGetUserCollectList(option) {
  546. return request({
  547. url: '/api/Collect/getUserCollectList',
  548. method: 'GET',
  549. ...option,
  550. });
  551. }
  552. /**
  553. * 取消收藏收藏
  554. */
  555. export function collectCancelCollect(option) {
  556. return request({
  557. url: '/api/Collect/cancelCollect',
  558. method: 'POST',
  559. ...option,
  560. });
  561. }
  562. // Trolley 购物车
  563. /**
  564. * 商品添加购物车(按规格加入)
  565. */
  566. export function trolleyAddTrolley(option) {
  567. return request({
  568. url: '/api/Trolley/addTrolley',
  569. method: 'POST',
  570. ...option,
  571. });
  572. }