feat: permissions

This commit is contained in:
JaguarJack
2022-12-07 19:28:57 +08:00
parent a1d9468a91
commit 8c537e6656
45 changed files with 1030 additions and 372 deletions

View File

@@ -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 }
}