vue写一个审核(通过、拒绝)需求。拒绝需要二次确认,填写拒绝理由。类似poromt(),我想把所有逻辑都写在点击拒绝时触发的函数里,因为可以传入点击时所需审核的人id,问题是我着么才能等二次确认之后再执行之后的代码呢?好像自己写的poromt()实现不了。贴上代码 //审核团队,拒绝还是通过 chooseTeam(operation, id) { //alert("xxx") var params = { sessionId: this.sessionId, operation: operation, reason: "" }; if (params.operation == 2) { this.showpop = true; //显示二次确认框,输入理由后点击确认再发送ajax给后台 } this.$http("post", "/team/" + id, params).then((res) => { res = res.data; if (res.result == 1 && res.data) { this.getContent(); } }); } , resure(string,callback) { if(string =="yse"){ return true }else if(string=="no"){ return false }
添加回答
举报
0/150
提交
取消