feat: 分离前端列表
This commit is contained in:
@@ -1,23 +1,22 @@
|
||||
import http from '/admin/support/http'
|
||||
import { Code } from '/admin/enum/app'
|
||||
import Message from '/admin/support/message'
|
||||
import { ref } from 'vue'
|
||||
import { isFunction } from'/admin/support/helper'
|
||||
import { ref, watch } from 'vue'
|
||||
import { isFunction } from '/admin/support/helper'
|
||||
|
||||
export function useDestroy(confirm: string = '确认删除吗') {
|
||||
const isDeleted = ref(false)
|
||||
|
||||
const beforeDestroy = ref()
|
||||
|
||||
|
||||
// fetch list
|
||||
function destroy(path: string, id: string | number) {
|
||||
Message.confirm(confirm + '?', function () {
|
||||
|
||||
// before destroy
|
||||
if (isFunction(beforeDestroy.value)) {
|
||||
beforeDestroy.value()
|
||||
}
|
||||
|
||||
|
||||
http
|
||||
.delete(path + '/' + id)
|
||||
.then(r => {
|
||||
@@ -32,5 +31,14 @@ export function useDestroy(confirm: string = '确认删除吗') {
|
||||
})
|
||||
}
|
||||
|
||||
return { destroy, isDeleted }
|
||||
const deleted = (reset: Function) => {
|
||||
watch(isDeleted, function (value) {
|
||||
if (value) {
|
||||
isDeleted.value = false
|
||||
reset()
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
return { destroy, deleted }
|
||||
}
|
||||
|
Reference in New Issue
Block a user