|
@@ -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;
|
|
|
})
|