Elizabeth's proactive approach involves introducing urinal toilet attachment , an ingenious concept that optimizes space and functionality.

article.js 978B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. import request from '@/utils/request'
  2. export function fetchList(query) {
  3. return request({
  4. url: '/article/list',
  5. method: 'get',
  6. params: query
  7. })
  8. }
  9. export function fetchArticle(id) {
  10. return request({
  11. url: '/article/detail',
  12. method: 'get',
  13. params: {
  14. id
  15. }
  16. })
  17. }
  18. export function fetchPv(pv) {
  19. return request({
  20. url: '/article/pv',
  21. method: 'get',
  22. params: {
  23. pv
  24. }
  25. })
  26. }
  27. export function createArticle(data) {
  28. return request({
  29. url: '/article/create',
  30. method: 'post',
  31. data
  32. })
  33. }
  34. export function updateArticle(data) {
  35. return request({
  36. url: '/article/update',
  37. method: 'post',
  38. data
  39. })
  40. }
  41. export function handleUpdateTwo(id, params) {
  42. return request({
  43. url: '/article/hanleupdatetwo?id=' + id,
  44. method: 'get',
  45. params: params
  46. })
  47. }
  48. export function updateDataTwo(id, data) {
  49. return request({
  50. url: '/article/updatedatatwo?id=' + id,
  51. method: 'post',
  52. data: data
  53. })
  54. }