Browse Source

草稿小问题

SanHQin 1 year ago
parent
commit
c54c54537c

+ 2 - 2
src/views/activityManage/newMarkerActivity.vue

@@ -239,12 +239,12 @@ export default {
         };
         this.ajax
           .post(this.$store.state.api + "/ActivityApply", pram)
-          .then((result) => {
+          .then(async (result) => {
             if (result["data"] == 1) {
               this.$message.success("活动提交成功");
               //提交项目成功,查看sessionStore是否有数据,有则删
               if (localStorage.getItem("makerActivityApplyData"))localStorage.removeItem("makerActivityApplyData");
-							this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:2})
+							await this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:2})
               this.$router.push("/makerActvity");
             } else {
               this.$message.error("活动提交失败");

+ 2 - 2
src/views/projectApply/MakerSpaceApply.vue

@@ -349,13 +349,13 @@ export default {
         // return console.log(pram);
         this.ajax
           .post(this.$store.state.api + "/MakerSpaceWordApply", pram)
-          .then((result) => {
+          .then(async (result) => {
             console.log(result);
             if (result["data"] == 1) {
               this.$message.success("项目提交成功");
               //提交项目成功,查看sessionStore是否有数据,有则删
               if (localStorage.getItem("MakerSpaceApplyData"))localStorage.removeItem("MakerSpaceApplyData");
-							this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:1})
+							await this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:1})
               this.$router.push("/projectApplication");
             } else {
               this.$message.error("项目提交失败");

+ 8 - 9
src/views/projectApply/newStudentProjectApply.vue

@@ -347,15 +347,13 @@ export default {
         this.ajax
           .post(this.$store.state.api + "/studentProjectWordApply", pram)
           .then(
-            (result) => {
+            async (result) => {
               console.log(result);
               if (result["data"] == 1) {
                 this.$message.success("项目提交成功");
                 //提交项目成功,查看sessionStore是否有数据,有则删
-                if (localStorage.getItem("StudentProjectApplyData")){
-									localStorage.removeItem("StudentProjectApplyData");
-								}
-                this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:0})
+								localStorage.removeItem("StudentProjectApplyData");
+                await this.ajax.post(this.$store.state.api+"/delDraft",{userid:this.$store.state.userInfo.userid,type:0})
                 this.$router.push("/projectApplication");
               } else {
                 this.$message.error("项目提交失败");
@@ -406,10 +404,11 @@ export default {
 				if(res.data[0].length){
 					this.wordData = JSON.parse(res.data[0][0].json)
 				}else{
-					if (localStorage.getItem("StudentProjectApplyData"))
-      		this.wordData = JSON.parse(
-      		  localStorage.getItem("StudentProjectApplyData")
-      		);
+					if (localStorage.getItem("StudentProjectApplyData")){
+						this.wordData = JSON.parse(
+      			  localStorage.getItem("StudentProjectApplyData")
+      			);
+					}
 				}
 				this.loading = false;
 			})