任务正在删除,但页面需要刷新

时间:2018-08-28 21:56:17

标签: php laravel-5 vuejs2

每次执行一些任务时,删除所有内容都不会发生,但是刷新页面时会删除

这是我的帕格代码

button.btn.btn-danger.float-right#delete(v-on:click="delete_event(client_id,id)" type="button" style="margin-left:10px;")
                            i.fa.fa-trash(style="font-size:20px; color:whitesmoke;")

这是我的Vue.js函数

   delete_event:function(){

                this.loading=true;
                let url='/clients/' + this.client_id + '/events/' + this.event.id;
                this.$http.delete(url).then(res=>{
                if(res.data.errcode == 1){
                    this.$root.$refs.toastr.e(res.data.errmess,this.$t("template.Error"));
                }else{
                     this.$root.$refs.toastr.s(this.$t("client.Task_deleted"),this.$t("template.Success"));
               }      
               this.loading=false;
                },res=>{
                   this.$root.$refs.toastr.e(this.$t("template.Server_error").this.$t("template.Error"));
                   this.loading=false;
                });
           }

这是我的控制器

public function delete_event(Request $request,$client_id,$id){
        return response()->json(Event::destroy($id),200);

}

0 个答案:

没有答案