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

View File

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

View File

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

View File

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