猫妈狗爸伴宠师小程序前端代码
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.

10 lines
219 B

  1. import request from '@/utils/request'
  2. // 获取配置信息
  3. export function getConfigList() {
  4. return request({
  5. 'url': '/applet/config/configList',
  6. 'method': 'get'
  7. }).then(res => {
  8. return res.data
  9. })
  10. }