var the = this;
let url = "/api/Purchase_Enter/CancelEnter"; let params = { Enter_Id: Enter_Id, isFullPlate: 1 }; let ref = the.$refs[this.dataListRef]; var callback = res => { the.common.showMsg(res); if (res.Result) { ref.loadData(); } }; the.common.ajax(url, params, callback, ref);
----------------------------------------------------