add share to guest by web client

Cette révision appartient à :
ljw
2024-10-09 15:52:17 +08:00
Parent 3d203971b8
révision bf98a51285
15 fichiers modifiés avec 8729 ajouts et 14 suppressions
+13 -1
Voir le fichier
@@ -116,7 +116,16 @@ export function useRepositories (user_id) {
getList()
}
}
const shareToWebClientVisible = ref(false)
const shareToWebClientForm = reactive({
id: '',
hash: '',
})
const toShowShare = (row) => {
shareToWebClientForm.id = row.id
shareToWebClientForm.hash = row.hash
shareToWebClientVisible.value = true
}
return {
listRes,
listQuery,
@@ -129,5 +138,8 @@ export function useRepositories (user_id) {
toEdit,
toAdd,
submit,
shareToWebClientVisible,
shareToWebClientForm,
toShowShare,
}
}