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.

11 lines
258 B

  1. // 小程序-配置信息
  2. import request from '@/utils/request'
  3. // 小程序-配置信息列表数据查询
  4. export function getConfigList() {
  5. return request({
  6. 'url': '/applet/config/configList',
  7. 'method': 'get'
  8. }).then(res => {
  9. return res.data
  10. })
  11. }