conflictSelected

This commit is contained in:
Baghi330 2026-02-14 11:16:55 +03:30
parent d3873be2b5
commit f88deee0c3
4 changed files with 18 additions and 14 deletions

View File

@ -25,6 +25,7 @@ const props = defineProps({
default: () => [],
},
});
const emit = defineEmits(["conflict-details"]);
const pagination = ref({
total: 0,
page: 1,
@ -77,8 +78,10 @@ function headerToolsAction({ action, data }) {
if (action === "next-click") {
}
}
function myContentAction({ action, data }) {
console.log(action, data);
function myContentAction({ action, payload }) {
if (action === "conflict_Details") {
emit("conflict-details", payload);
}
}
</script>

View File

@ -11,6 +11,10 @@ const props = defineProps({
type: Array,
default: () => [],
},
conflictSelected: {
type: Object,
default: () => {},
},
});
const accordionItems = [
{

View File

@ -2,20 +2,9 @@
"items": [],
"tableActions": [
{
"key": "meta_infos",
"key": "conflict_Details",
"icon": "i-lucide-info",
"title": "ورود اطلاعات"
},
{
"key": "manageFiles",
"icon": "i-lucide-upload",
"title": "بارگذاری فایل"
},
{
"key": "hasMedia",
"icon": "lucide:list-checks",
"title": ""
}
],
"tableColumns": [

View File

@ -14,6 +14,8 @@
v-if="currentComponent"
:activeTabKey="activeTabKey"
:listConflicts="listConflicts"
:conflictSelected="conflictSelected"
@conflict-details="conflictDetails"
/>
</div>
</template>
@ -78,6 +80,7 @@ const handleTabChange = (tab) => {
}
};
const headerSchema = ref({});
const conflictSelected = ref({});
headerSchema.value = {
breadcrumb: true,
logo: false,
@ -132,6 +135,11 @@ const getListConflict = async (textSearch = "", filterExtended = "") => {
console.error("خطا در دریافت داده:", err);
}
};
function conflictDetails(event) {
conflictSelected.value = event;
activeTabKey.value = "RelationEdit";
console.log("event", event);
}
onMounted(() => {
getListConflict();
activeTabKey.value = headerTabs.value[0]?.id || "";