store.js 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532
  1. // +----------------------------------------------------------------------
  2. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  3. // +----------------------------------------------------------------------
  4. // | Copyright (c) 2016~2021 https://www.crmeb.com All rights reserved.
  5. // +----------------------------------------------------------------------
  6. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  7. // +----------------------------------------------------------------------
  8. // | Author: CRMEB Team <admin@crmeb.com>
  9. // +----------------------------------------------------------------------
  10. import request from "@/utils/request.js";
  11. /**
  12. * 获取产品详情
  13. * @param int id
  14. *
  15. */
  16. export function getProductDetail(id) {
  17. return request.get('store/product/detail/' + id, {}, {
  18. noAuth: true
  19. });
  20. }
  21. /**
  22. * 获取预览商品详情
  23. * @param int id
  24. *
  25. */
  26. export function getPreviewProDetail(data) {
  27. return request.get('store/product/preview', data, {
  28. noAuth: true
  29. });
  30. }
  31. /**
  32. * 产品分享二维码 推广员
  33. * @param int id
  34. */
  35. export function getProductCode(id, data) {
  36. return request.get('store/product/qrcode/' + id, data);
  37. }
  38. /**
  39. * 添加收藏
  40. * @param int id
  41. * @param string category product=普通产品,product_seckill=秒杀产品
  42. */
  43. export function collectAdd(data) {
  44. return request.post('user/relation/create', data);
  45. }
  46. /**
  47. * 删除收藏产品
  48. * @param int id
  49. * @param string category product=普通产品,product_seckill=秒杀产品
  50. */
  51. export function collectDel(data) {
  52. return request.post('user/relation/delete', data);
  53. }
  54. /**
  55. * 购车添加
  56. *
  57. */
  58. export function postCartAdd(data) {
  59. return request.post('user/cart/create', data);
  60. }
  61. /**
  62. * 获取分类列表
  63. *
  64. */
  65. export function getCategoryList() {
  66. return request.get('store/product/category/lst', {}, {
  67. noAuth: true
  68. });
  69. }
  70. /**
  71. * 获取产品列表
  72. * @param object data
  73. */
  74. export function getProductslist(data) {
  75. if (data.brand_id && Array.isArray(data.brand_id)) {
  76. data = {
  77. ...data
  78. }
  79. data.brand_id = data.brand_id.toString()
  80. }
  81. return request.get('product/spu/lst', data, {
  82. noAuth: true
  83. });
  84. }
  85. /**
  86. * 获取优惠券商品列表
  87. * @param object data
  88. */
  89. export function getCouponProductlist(data) {
  90. if (data.brand_id && Array.isArray(data.brand_id)) {
  91. data = {
  92. ...data
  93. }
  94. data.brand_id = data.brand_id.toString()
  95. }
  96. return request.get('product/spu/coupon_product', data, {
  97. noAuth: true
  98. });
  99. }
  100. /**
  101. * 获取品牌列表
  102. * @param object data
  103. */
  104. export function getBrandlist(data) {
  105. return request.get('store/product/brand/lst', data, {
  106. noAuth: true
  107. });
  108. }
  109. /**
  110. * 获取推荐产品
  111. *
  112. */
  113. export function getProductHot(page, limit) {
  114. return request.get("product/spu/recommend", {
  115. page: page === undefined ? 1 : page,
  116. limit: limit === undefined ? 10 : limit
  117. }, {
  118. noAuth: true
  119. });
  120. }
  121. /**
  122. * 获取商户推荐产品
  123. *
  124. */
  125. export function getMerProductHot(id,data) {
  126. return request.get(`product/spu/recommend`, {
  127. page: data.page === undefined ? 1 : data.page,
  128. limit: data.limit === undefined ? 10 : data.limit,
  129. mer_id: id || ''
  130. }, {
  131. noAuth: true
  132. });
  133. }
  134. /**
  135. * 批量收藏
  136. *
  137. * @param object id
  138. * @param string category
  139. */
  140. export function collectAll(data) {
  141. return request.post('user/relation/batch/create', data);
  142. }
  143. /**
  144. * 首页产品的轮播图和产品信息
  145. * @param int type
  146. *
  147. */
  148. export function getGroomList(type, data) {
  149. return request.get('product/spu/hot/' + type, data, {
  150. noAuth: true
  151. });
  152. }
  153. /**
  154. * 获取商品收藏列表
  155. * @param object data
  156. */
  157. export function getCollectUserList(data) {
  158. return request.get('user/relation/product/lst', data)
  159. }
  160. /**
  161. * 获取商品收藏列表 -- 删除
  162. * @param object data
  163. */
  164. export function userCollectDel(data) {
  165. return request.post('user/relation/lst/delete', data)
  166. }
  167. /**
  168. * 获取产品评论
  169. * @param int id
  170. * @param object data
  171. *
  172. */
  173. export function getReplyList(id, data) {
  174. return request.get('store/product/reply/lst/' + id, data, {
  175. noAuth: true
  176. })
  177. }
  178. /**
  179. * 产品评价数量和好评度
  180. * @param int id
  181. */
  182. export function getReplyConfig(id) {
  183. return request.get('reply/config/' + id);
  184. }
  185. /**
  186. * 获取搜索关键字获取
  187. *
  188. */
  189. export function getSearchKeyword() {
  190. return request.get('common/hot_keyword', {}, {
  191. noAuth: true
  192. });
  193. }
  194. /**
  195. * 门店列表
  196. * @returns {*}
  197. */
  198. export function storeListApi(data) {
  199. return request.get("store_list", data, {
  200. noAuth: true
  201. });
  202. }
  203. /**
  204. * 商户列表
  205. * @returns {*}
  206. */
  207. export function storeMerchantList(data) {
  208. return request.get("store/merchant/lst", data, {
  209. noAuth: true
  210. });
  211. }
  212. /**
  213. * 获取商铺详情
  214. * @param {Object} id 商铺id
  215. * @param {Object} data 商铺数据
  216. */
  217. export function getStoreDetail(id, data) {
  218. return request.get("store/merchant/detail/" + id, data, {
  219. noAuth: true
  220. });
  221. }
  222. /**
  223. * 获取商铺商品列表
  224. * @param {Object} id 商铺 id
  225. * @param {Object} data 商铺商品列表数据
  226. */
  227. export function getStoreGoods(id, data) {
  228. return request.get("product/spu/merchant/" + id, data, {
  229. noAuth: true
  230. });
  231. }
  232. /**
  233. * 获取商铺分类列表
  234. * @param {Object} id 商铺 id
  235. * @param {Object} data
  236. */
  237. export function getStoreCategory(id, data) {
  238. return request.get("store/merchant/category/lst/" + id, data, {
  239. noAuth: true
  240. });
  241. }
  242. /**
  243. * 关注商铺
  244. * @param {Object} type_id 商铺 id
  245. */
  246. export function followStore(type_id) {
  247. return request.post("user/relation/create", {
  248. type: 10,
  249. type_id: type_id
  250. });
  251. }
  252. /**
  253. * 取消商铺关注
  254. * @param {Object} type_id 商铺 id
  255. */
  256. export function unfollowStore(type_id) {
  257. return request.post("user/relation/delete", {
  258. type: 10,
  259. type_id: type_id
  260. });
  261. }
  262. /**
  263. * 获取商铺优惠券
  264. * @param {Object} id
  265. */
  266. export function getStoreCoupon(id) {
  267. return request.get("coupon/store/" + id, {
  268. noAuth: true
  269. });
  270. }
  271. /**
  272. * 获取商铺优惠券
  273. */
  274. export function getMerchantLst(data) {
  275. return request.get("user/relation/merchant/lst", data, {
  276. noAuth: true
  277. });
  278. }
  279. /**
  280. * 物流信息
  281. */
  282. export function express(id) {
  283. return request.post("ordero/express/" + id, {
  284. noAuth: true
  285. });
  286. }
  287. /**
  288. * 子集分类
  289. * @returns {*}
  290. */
  291. export function storeCategory(pid) {
  292. return request.get("store/product/category", pid, {
  293. noAuth: true
  294. });
  295. }
  296. /**
  297. * 分销说明
  298. * @returns {*}
  299. */
  300. export function bagExplain() {
  301. return request.get("store/product/bag/explain");
  302. }
  303. /**
  304. * 分销礼包推荐列表
  305. * @returns {*}
  306. */
  307. export function bagRecommend() {
  308. return request.get("product/spu/bag/recommend");
  309. }
  310. /**
  311. * 分销礼包列表
  312. * @returns {*}
  313. */
  314. export function productBag(data) {
  315. return request.get("product/spu/bag", data, {
  316. noAuth: true
  317. });
  318. }
  319. /**
  320. * 商铺二维码
  321. * @returns {*}
  322. */
  323. export function merchantQrcode(id, data) {
  324. return request.get("store/merchant/qrcode/" + id, data, {
  325. noAuth: true
  326. });
  327. }
  328. /**
  329. * 推荐商品
  330. * @returns {*}
  331. */
  332. export function merchantProduct(id, data) {
  333. if (data.brand_id && Array.isArray(data.brand_id)) {
  334. data = {
  335. ...data
  336. }
  337. data.brand_id = data.brand_id.toString()
  338. }
  339. return request.get("product/spu/merchant/" + id, data, {
  340. noAuth: true
  341. });
  342. }
  343. /**
  344. * 推荐商品banner
  345. * @returns {*}
  346. */
  347. export function getHotBanner(type) {
  348. return request.get("common/hot_banner/" + type, {}, {
  349. noAuth: true
  350. });
  351. }
  352. /**
  353. * 商户入驻表单
  354. * @returns {*}
  355. */
  356. export function create(data) {
  357. return request.post("intention/create", data);
  358. }
  359. /**
  360. * 商户入驻短信验证码
  361. * @returns {*}
  362. */
  363. export function verify(data) {
  364. return request.post("auth/verify", data);
  365. }
  366. /**
  367. * 获取秒杀商品详情
  368. * @param int id
  369. *
  370. */
  371. export function getSeckillProductDetail(id) {
  372. return request.get('store/product/seckill/detail/' + id, {}, {
  373. noAuth: true
  374. });
  375. }
  376. /**
  377. * 直播推荐列表
  378. * @returns {*}
  379. */
  380. export function getLiveList(data) {
  381. return request.get(`broadcast/hot`, data, {
  382. noAuth: true
  383. });
  384. }
  385. /**
  386. * 直播列表
  387. * @returns {*}
  388. */
  389. export function getBroadcastListApi(data) {
  390. return request.get("broadcast/lst", data, {
  391. noAuth: true
  392. });
  393. }
  394. /**
  395. * 商户分类
  396. * @returns {*}
  397. */
  398. export function merClassifly() {
  399. return request.get("intention/cate", {}, {
  400. noAuth: true
  401. });
  402. }
  403. /**
  404. * 获取预售商品详情
  405. * @param int id
  406. *
  407. */
  408. export function getPresellProductDetail(id) {
  409. return request.get('store/product/presell/detail/' + id, {}, {
  410. noAuth: true
  411. });
  412. }
  413. /**
  414. * 获取商户申请记录
  415. * @param int id
  416. *
  417. */
  418. export function getApplicationRecordList(data) {
  419. return request.get('intention/lst', data);
  420. }
  421. /**
  422. * 获取商户申请详情
  423. * @param int id
  424. *
  425. */
  426. export function getGoodsDetails(id) {
  427. return request.get('intention/detail/' + id, {});
  428. }
  429. /**
  430. * 修改入驻信息
  431. * @param int id
  432. *
  433. */
  434. export function updateGoodsRecord(id, data) {
  435. return request.post('intention/update/' + id, data);
  436. }
  437. /**
  438. * 获取定位详细地址
  439. * @param int id
  440. *
  441. */
  442. export function getGeocoder(data) {
  443. return request.get(`lbs/geocoder?location=${data.lat},${data.long}`, {}, {
  444. noAuth: true
  445. });
  446. }
  447. /**
  448. * 获取店铺类型
  449. * @param int id
  450. *
  451. */
  452. export function getStoreTypeApi() {
  453. return request.get('intention/type', {}, {
  454. noAuth: true
  455. });
  456. }
  457. /**
  458. * 到货通知
  459. *
  460. */
  461. export function arrivalNoticeApi(data) {
  462. return request.post('store/product/increase_take',data);
  463. }
  464. /*
  465. 获取图片验证码
  466. */
  467. export function getCaptcha() {
  468. return request.get('captcha');
  469. }
  470. /*
  471. 获取店铺资质
  472. */
  473. export function storeCertificate(data) {
  474. return request.post(`store/certificate/${data.merId}`, data)
  475. }
  476. /**
  477. * 本地服务列表
  478. * @returns {*}
  479. */
  480. export function storeServiceList(id, data) {
  481. return request.get(`product/spu/local/${id}`, data, {
  482. noAuth: true
  483. });
  484. }
  485. /**
  486. * 复制口令
  487. * @returns {*}
  488. */
  489. export function copyPasswordApi(data) {
  490. return request.get(`product/spu/copy`, data, {
  491. noAuth: true
  492. });
  493. }
  494. /**
  495. * 口令搜索
  496. * @returns {*}
  497. */
  498. export function copyPasswordSearch(data) {
  499. return request.get(`command/copy`, data, {
  500. noAuth: true
  501. });
  502. }
  503. /**
  504. * 套餐列表
  505. * @returns {*}
  506. */
  507. export function getDiscountsLst(data) {
  508. return request.get(`discounts/lst`, data, {
  509. noAuth: true
  510. });
  511. }
  512. /**
  513. * 套餐--立即购买
  514. * @returns {*}
  515. */
  516. export function discountsCartAdd(data) {
  517. return request.post('user/cart/batchCreate', data);
  518. }
  519. /**
  520. * 商品--价格说明
  521. * @returns {*}
  522. */
  523. export function priceRuleApi(id) {
  524. return request.get(`store/product/price_rule/${id}`, {}, {
  525. noAuth: true
  526. });
  527. }