// 確認
confirm(id) {
if (this.isEdit && this.form.list !== undefined && this.form.list.length <= 0) {
this.$notify({
title: '表身為空時不能確認',
type: 'error'
})
} else {
this.confirmLoading = true
inConfirm(id).then((res) => {
this.confirmLoading = false
this.getForm(this.form.id)//重新整理
this.$notify({
title: res,
type: 'success'
})
})
.catch(() => {
this.confirmLoading = false
})
}
},
// 轉採購退貨單和採購退貨出庫單
transfer(id) {
this.transferLoading = true
toTransfer(id).then((res) => {
this.transferLoading = false
this.$notify({
title: res,
type: 'success'
})
this.refresh()
})
.catch(() => {
this.transferLoading = false
})
},
vue js事件方法呼叫api並返回值
相關文章
- .net 呼叫API並解析Json資料方法APIJSON
- Js呼叫Java方法並互相傳參JSJava
- 外部js呼叫vue的methods中的方法JSVue
- js和vue方法的相互呼叫(iframe父子頁面的方法相互呼叫)。JSVue
- Spring 呼叫 Stored Procedure 並獲取返回值Spring
- Node.JS呼叫企業微信API:自建應用的回撥事件Node.jsAPI事件
- vue 方法與事件Vue事件
- js 呼叫 WebService 方法JSWeb
- C語言呼叫System命令並獲取命令的返回值C語言
- vue 父子元件的方法呼叫Vue元件
- Stable-diffusion WebUI API呼叫方法WebUIAPI
- dwr框架帶引數,而且有返回值的方法呼叫框架
- vue專案中獲取外部js,並使用其中方法VueJS
- 淺談API函式呼叫的方法API函式
- C++系統相關操作1 - 呼叫命令列並獲取返回值C++命令列
- shell請求api,獲取json返回值,做判斷APIJSON
- Vue.js原始碼——事件機制Vue.js原始碼事件
- 例項原始碼1:利用Java呼叫可執行命令並取得其返回值原始碼Java
- vue.js axios call api exampleVue.jsiOSAPI
- 反射-通過反射獲取無參無返回值成員方法、帶參帶返回值成員方法並使用反射
- 如何取出 API 呼叫返回的 JSON 資料APIJSON
- CefSharp ——js呼叫c#方法JSC#
- JS_建立物件+呼叫物件方法JS物件
- 如何在java中呼叫js方法JavaJS
- C#呼叫js庫的方法C#JS
- tweak 中常用的方法呼叫方法和 執行時APIAPI
- Vue入門—事件與方法詳解Vue事件
- 說說 Vue.js 的指令與事件Vue.js事件
- vue.js指令與事件(v-bind)Vue.js事件
- 淘寶API介面AG文件接入呼叫方法詳解API
- 兩種方法使vue實現jQuery呼叫VuejQuery
- Vue 子元件呼叫父元件方法總結Vue元件
- api呼叫方式API
- Vue例項方法之事件的實現Vue事件
- qt呼叫js,js呼叫qtQTJS
- Js 的 typeof 返回值JS
- 如何建立Electron + Vue3專案, 並呼叫C# dllVueC#
- Vue+ElementUI建立全域性元件方法及呼叫VueUI元件