shuishen
2024-01-08 fdd088f0ada3ba493cdf13ee77d9fb0db9ac4a13
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
  })
}