标准清单

This commit is contained in:
宋伟佳
2021-06-22 18:15:29 +08:00
parent 1ebed43e06
commit 59e66310bf
7 changed files with 790 additions and 1864 deletions
+13
View File
@@ -447,5 +447,18 @@ export default {
}
exeFun.call(this, err)
})
},
/**
* @description: delete方法
* @author: chenxiaoxi
* @date: 2018-09-14 09:55:30
*/
postDelete (url, param, thenFun, exeFun) {
_axios.post(api() + url, {}).then(res => {
thenFun.call(this, res.data)
}).catch(err => {
exeFun.call(this, err)
})
}
}