checkUpdate.js 366 B

123456789101112131415161718
  1. export const checkUpdateFormPgyer = (buildVersion) =>
  2. uni.$u?.http.post(
  3. "/apiv2/app/check",
  4. {
  5. _api_key: "",
  6. appKey: "",
  7. buildVersion,
  8. },
  9. {
  10. custom: {
  11. isPgyerApi: true,
  12. },
  13. dataType: "x-www-form-urlencoded",
  14. header: {
  15. "Content-Type": "application/x-www-form-urlencoded",
  16. },
  17. },
  18. );