guoshilong
2024-01-08 5b6c1dd063b723184ae434c02d2630ba0007e100
src/api/property/propertyCompany.js
@@ -47,3 +47,32 @@
    }
  })
}
export const getPayConfig = (id) => {
  return request({
    url: '/api/blade-propertyCompany/propertyCompany/getPayConfig',
    method: 'get',
    params: {
      id
    }
  })
}
export const saveOrUpdateWx = (row) => {
  return request({
    url: '/api/wxpay/saveOrUpdate',
    method: 'post',
    data: row
  })
}
export const saveOrUpdateAli = (row) => {
  return request({
    url: '/api/alipay/saveOrUpdate',
    method: 'post',
    data: row
  })
}