agreement.js 264 B

123456789101112
  1. export default function ({ $axios }) {
  2. return {
  3. getContentByType: (agreementCoding, type = 1) =>
  4. $axios.$get('/public/v5/agreementApi/content/getContentByType', {
  5. params: {
  6. agreementCoding,
  7. type,
  8. },
  9. }),
  10. };
  11. }