aleyds 1 year ago
parent
commit
68998a8980
1 changed files with 4 additions and 4 deletions
  1. 4 4
      src/api/system/post.js

+ 4 - 4
src/api/system/post.js

@@ -12,7 +12,7 @@ export function listPost(query) {
 // 查询岗位详细
 export function getPost(postId) {
   return request({
-    url: '/merchant/merchantSyspost/post/' + postId,
+    url: '/merchant/merchantSyspost/' + postId,
     method: 'get'
   })
 }
@@ -20,7 +20,7 @@ export function getPost(postId) {
 // 新增岗位
 export function addPost(data) {
   return request({
-    url: '/merchant/merchantSyspost/post',
+    url: '/merchant/merchantSyspost',
     method: 'post',
     data: data
   })
@@ -29,7 +29,7 @@ export function addPost(data) {
 // 修改岗位
 export function updatePost(data) {
   return request({
-    url: '/merchant/merchantSyspost/post',
+    url: '/merchant/merchantSyspost',
     method: 'put',
     data: data
   })
@@ -38,7 +38,7 @@ export function updatePost(data) {
 // 删除岗位
 export function delPost(postId) {
   return request({
-    url: '/merchant/merchantSyspost/post/' + postId,
+    url: '/merchant/merchantSyspost/' + postId,
     method: 'delete'
   })
 }