feat: permissions
This commit is contained in:
@@ -1,19 +1,24 @@
|
||||
import http from '/admin/support/http'
|
||||
import { Code } from '/admin/assets/enum/app'
|
||||
import Message from '/admin/support/message'
|
||||
import { ref } from 'vue'
|
||||
import { ref, watch } from 'vue'
|
||||
import { isFunction } from '/admin/support/helper'
|
||||
|
||||
export function useEnabled() {
|
||||
const success = ref(false)
|
||||
const isSuccess = ref(false)
|
||||
const loading = ref<boolean>(false)
|
||||
const afterEnabled = ref()
|
||||
function enabled(path: string, id: string | number, data: object = {}) {
|
||||
loading.value = true
|
||||
http
|
||||
.put(path + '/enable/' + id, data)
|
||||
.then(r => {
|
||||
if (r.data.code === Code.SUCCESS) {
|
||||
success.value = true
|
||||
isSuccess.value = true
|
||||
Message.success(r.data.message)
|
||||
if (isFunction(afterEnabled.value)) {
|
||||
afterEnabled.value()
|
||||
}
|
||||
} else {
|
||||
Message.error(r.data.message)
|
||||
}
|
||||
@@ -23,5 +28,12 @@ export function useEnabled() {
|
||||
})
|
||||
}
|
||||
|
||||
return { enabled, success, loading }
|
||||
const success = (func: Function) => {
|
||||
watch(isSuccess, function () {
|
||||
isSuccess.value = false
|
||||
func()
|
||||
})
|
||||
}
|
||||
|
||||
return { enabled, success, loading, afterEnabled }
|
||||
}
|
||||
|
Reference in New Issue
Block a user