business.js 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. import request from '@/utils/request'
  2. // ******商家列表******
  3. // 商家管理查询
  4. export function businessListGetAll(data) {
  5. return request({
  6. url: '/shop/getAll',
  7. method: 'post',
  8. data
  9. })
  10. }
  11. // 新增商家
  12. export function businessListSave(data) {
  13. return request({
  14. url: '/shop/save',
  15. method: 'post',
  16. data
  17. })
  18. }
  19. // 商家编辑查询
  20. export function businessListGetById(data) {
  21. return request({
  22. url: '/shop/getById',
  23. method: 'post',
  24. data
  25. })
  26. }
  27. // 修改商家
  28. export function businessListUpdate(data) {
  29. return request({
  30. url: '/shop/update',
  31. method: 'post',
  32. data
  33. })
  34. }
  35. // 启停用商家
  36. export function businessListStart(data) {
  37. return request({
  38. url: '/shop/start',
  39. method: 'post',
  40. data
  41. })
  42. }
  43. export function delBusinessById(data) {
  44. return request({
  45. url: '/shop/cleanShop',
  46. method: 'post',
  47. data
  48. })
  49. }
  50. // 入驻申请
  51. // 入驻申请管理查询
  52. export function settlementGetAll(data) {
  53. return request({
  54. url: '/check/getAll',
  55. method: 'post',
  56. data
  57. })
  58. }
  59. // 入驻申请详情
  60. export function settlementGetById(data) {
  61. return request({
  62. url: '/check/getById',
  63. method: 'post',
  64. data
  65. })
  66. }
  67. // 处理
  68. export function settlementHandle(data) {
  69. return request({
  70. url: '/check/handle',
  71. method: 'post',
  72. data
  73. })
  74. }
  75. // 删除
  76. export function settlementDelete(data) {
  77. return request({
  78. url: '/check/delete',
  79. method: 'post',
  80. data
  81. })
  82. }
  83. // **********************关键词**********************
  84. // 启停用
  85. export function wordStart(data) {
  86. return request({
  87. url: '/word/start',
  88. method: 'post',
  89. data
  90. })
  91. }
  92. // 启停用
  93. export function wordGetAll(data) {
  94. return request({
  95. url: '/word/getAll',
  96. method: 'post',
  97. data
  98. })
  99. }
  100. // 添加关键词
  101. export function wordAdd(data) {
  102. return request({
  103. url: '/word/save',
  104. method: 'post',
  105. data
  106. })
  107. }
  108. // 修改关键词查询
  109. export function wordGetById(data) {
  110. return request({
  111. url: '/word/getById',
  112. method: 'post',
  113. data
  114. })
  115. }
  116. // 修改关键词
  117. export function wordUpdate(data) {
  118. return request({
  119. url: '/word/update',
  120. method: 'post',
  121. data
  122. })
  123. }
  124. // 删除关键词
  125. export function wordDelete(data) {
  126. return request({
  127. url: '/word/delete',
  128. method: 'post',
  129. data
  130. })
  131. }
  132. // **********************商家分类**********************
  133. // 添加商家分类
  134. export function businessClassList(data) {
  135. return request({
  136. url: '/shopCategory/getAll',
  137. method: "post",
  138. data
  139. })
  140. }
  141. // 根据一级获取
  142. export function businessClassListById(data) {
  143. return request({
  144. url: "/shopCategory/getById",
  145. method: "post",
  146. data
  147. })
  148. }
  149. // 删除标签分类
  150. export function deleteBusinessClass(data) {
  151. return request({
  152. url: "/shopCategory/deleteCategory",
  153. method: "post",
  154. data
  155. })
  156. }
  157. // 更新标签
  158. export function updateBusinessClass(data) {
  159. return request({
  160. url: "/shopCategory/updateCategory",
  161. method: "post",
  162. data
  163. })
  164. }
  165. // 添加分类
  166. export function addBusinessClass(data) {
  167. return request({
  168. url: '/shopCategory/addCategory',
  169. data,
  170. method: "post"
  171. })
  172. }
  173. // **********品牌工厂***********
  174. // 获取所有分类
  175. export function factoryClassList(data) {
  176. return request({
  177. url: '/shopCategoryMall/getAll',
  178. method: "post",
  179. data
  180. })
  181. }
  182. export function factoryClassListById(data) {
  183. return request({
  184. url: "/shopCategoryMall/getById",
  185. method: "post",
  186. data
  187. })
  188. }
  189. // 删除标签分类
  190. export function deleteFactoryClass(data) {
  191. return request({
  192. url: "/shopCategoryMall/deleteCategory",
  193. method: "post",
  194. data
  195. })
  196. }
  197. // 更新标签
  198. export function updateFactoryClass(data) {
  199. return request({
  200. url: "/shopCategoryMall/updateCategory",
  201. method: "post",
  202. data
  203. })
  204. }
  205. // 添加分类
  206. export function addFactoryClass(data) {
  207. return request({
  208. url: '/shopCategoryMall/addCategory',
  209. data,
  210. method: "post"
  211. })
  212. }
  213. // 获取所有分类树
  214. export function getAllCategoryClassTree(data) {
  215. return request({
  216. url: "shopCategory/getAllTree",
  217. data,
  218. method: "get"
  219. })
  220. }
  221. // 分页查询商家的收款码
  222. export function getAllPaymentCode(data) {
  223. return request({
  224. url: "/paymentCode/getAll",
  225. data,
  226. method: "post"
  227. })
  228. }
  229. // 禁用该收款码
  230. export function disablePaymentCode(data) {
  231. return request({
  232. url: "/paymentCode/handle",
  233. data,
  234. method: "post"
  235. })
  236. }
  237. // **********商家代金券提现申请***********
  238. // 查询申请列表
  239. export function getWithdrawalApplicationList(data) {
  240. return request({
  241. url: "/shop-vouchers-withdrawal-qualification/getWithdrawalQualificationAll",
  242. data,
  243. method: "post"
  244. })
  245. }
  246. // 审核
  247. export function examineWithdrawalApplication(data) {
  248. return request({
  249. url: "/shop-vouchers-withdrawal-qualification/auditWithdrawalQualification",
  250. data,
  251. method: "post"
  252. })
  253. }
  254. // 代金券提现记录
  255. export function getWithdrawalRecortAllApi(data) {
  256. return request({
  257. url: "/shop-vouchers-withdrawal-qualification/getWithdrawalRecortAll",
  258. data,
  259. method: "post"
  260. })
  261. }