config.js 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. import {
  2. myRequest
  3. } from './request.js'
  4. // 店铺信息头
  5. export function queyrConfig(data) {
  6. return myRequest({
  7. url: 'merchant_service/systemConfigValue/queyrConfig',
  8. method: 'post',
  9. data
  10. })
  11. }
  12. // 获取门店分润值
  13. export function getShopBonusSetting(data) {
  14. return myRequest({
  15. url: 'merchant_service/systemConfigValue/getShopBonusSetting',
  16. method: 'post',
  17. data
  18. })
  19. }
  20. // 修改门店分润值
  21. export function updateShopBonusSetting(data) {
  22. return myRequest({
  23. url: 'merchant_service/systemConfigValue/updateShopBonusSetting',
  24. method: 'post',
  25. data
  26. })
  27. }
  28. // 锁定用户信息
  29. export function queryOrderUser(data) {
  30. return myRequest({
  31. url: 'order_service/orderService/queryOrderUser',
  32. method: 'post',
  33. data
  34. })
  35. }
  36. // 锁定用户信息
  37. export function merchantYxadd(data) {
  38. return myRequest({
  39. url: 'merchant_service/merchantYx/add',
  40. method: 'post',
  41. data
  42. })
  43. }
  44. // 查询音响是否绑定
  45. export function queryByMerId(data) {
  46. return myRequest({
  47. url: 'merchant_service/merchantYx/queryByMerId ',
  48. method: 'post',
  49. data
  50. })
  51. }