猫妈狗爸伴宠师小程序前端代码
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
281 B

  1. // 伴宠师-我的流程
  2. import request from '@/utils/request'
  3. // 获取我的评价列表数据带分页
  4. export function appletCommentList(params) {
  5. return request({
  6. headers: {
  7. "isToken": true
  8. },
  9. url: "/applet/info/appletCommentList",
  10. method: 'get',
  11. params
  12. })
  13. }