Browse Source

修改地址

pre-production
pref_mail@163.com 1 month ago
parent
commit
ff3cdc7ca7
  1. 10
      src/api/desk/notice.js

10
src/api/desk/notice.js

@ -9,7 +9,7 @@ export const getList = (current, size, params) => {
current,
size,
},
cryptoToken: true,
cryptoToken: false,
});
};
@ -20,7 +20,7 @@ export const remove = ids => {
params: {
ids,
},
cryptoToken: true,
cryptoToken: false,
});
};
@ -29,7 +29,7 @@ export const add = row => {
url: '/logpm-basic/notice/submit',
method: 'post',
data: row,
cryptoToken: true,
cryptoToken: false,
});
};
@ -38,7 +38,7 @@ export const update = row => {
url: '/logpm-basic/notice/submit',
method: 'post',
data: row,
cryptoToken: true,
cryptoToken: false,
});
};
@ -49,6 +49,6 @@ export const getNotice = id => {
params: {
id,
},
cryptoToken: true,
cryptoToken: false,
});
};

Loading…
Cancel
Save