conflictSelected
This commit is contained in:
parent
d3873be2b5
commit
f88deee0c3
|
|
@ -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>
|
||||
|
||||
|
|
|
|||
|
|
@ -11,6 +11,10 @@ const props = defineProps({
|
|||
type: Array,
|
||||
default: () => [],
|
||||
},
|
||||
conflictSelected: {
|
||||
type: Object,
|
||||
default: () => {},
|
||||
},
|
||||
});
|
||||
const accordionItems = [
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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": [
|
||||
|
|
|
|||
|
|
@ -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 || "";
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user