|
@@ -117,7 +117,7 @@ import Constant from "@/constant";
|
|
|
import recruitmentApi from "@/api/job/recruitment";
|
|
|
|
|
|
export default {
|
|
|
- props: ["businessKey", "title"],
|
|
|
+ props: ["businessKey", "approveKey", "title"],
|
|
|
data() {
|
|
|
return {
|
|
|
formModel: {},
|
|
@@ -136,6 +136,7 @@ export default {
|
|
|
(function () {
|
|
|
var formData = new FormData();
|
|
|
formData.append("id", self.businessKey);
|
|
|
+ formData.append("approveId", self.approveKey);
|
|
|
|
|
|
return recruitmentApi.checked(formData);
|
|
|
})().then(function (response) {
|