| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import request from '@/utils/request'
- import constant from '@/constant'
- function pageList(formData) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/pageList", formData);
- }
- function create() {
- return request.get(constant.serverUrl + "/base/recruitInformationInfo/create");
- }
- function edit(id) {
- return request.get(constant.serverUrl + "/base/recruitInformationInfo/edit/" + id);
- }
- function add(formModel) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/add", formModel, {
- headers: {
- "Content-Type": "application/json"
- }
- });
- }
- function update(formModel) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/update", formModel, {
- headers: {
- "Content-Type": "application/json"
- }
- });
- }
- function remove(id) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/delete/" + id);
- }
- function batchRemove(idList) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/batchDelete", idList, {
- headers: {
- "Content-Type": "application/json"
- }
- });
- }
- function check(id) {
- return request.post(constant.serverUrl + "/base/recruitInformationInfo/check/" + id);
- }
- export default {
- pageList, create, edit, add, update, remove, batchRemove,check
- }
|