|
@@ -297,6 +297,12 @@ export default {
|
|
if(this.projectDetail.planEndDate) {
|
|
if(this.projectDetail.planEndDate) {
|
|
formData.append("planEndDate", this.projectDetail.planEndDate);
|
|
formData.append("planEndDate", this.projectDetail.planEndDate);
|
|
}
|
|
}
|
|
|
|
+ if (this.projectDetail.auditUserIds) {
|
|
|
|
+ formData.append("auditUserIds", JSON.stringify(this.projectDetail.auditUserIds));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ // console.log(this.projectDetail)
|
|
|
|
+ // return
|
|
this.$axios.post("/project/editProject", formData)
|
|
this.$axios.post("/project/editProject", formData)
|
|
.then(res => {
|
|
.then(res => {
|
|
if(res.code == "ok") {
|
|
if(res.code == "ok") {
|