201 lines
4.9 KiB
Vue
201 lines
4.9 KiB
Vue
<template>
|
|
<div>
|
|
<HeaderTools
|
|
:header-tools="headerTools"
|
|
@header-tools-action="headerToolsAction"
|
|
></HeaderTools>
|
|
<div class="p-4 pt-0 w-full lg:flex-1">
|
|
<MyContent
|
|
:mainSchema="myContentSchema"
|
|
:pagination="pagination"
|
|
@my-content-action="myContentAction"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import myContentJson from "@/json/data-entry/myContentJson.json";
|
|
import refineCodes from "@/json/refineCodes.json";
|
|
import MyContent from "@/components/lazy-load/global/MyContent.vue";
|
|
const { $http: httpService } = useNuxtApp();
|
|
const props = defineProps({
|
|
listConflicts: {
|
|
type: Array,
|
|
default: () => [],
|
|
},
|
|
pagination: {
|
|
type: Object,
|
|
default: () => {},
|
|
},
|
|
});
|
|
const emit = defineEmits(["conflict-details"]);
|
|
|
|
const myContentSchema = computed(() => {
|
|
const baseSchema = JSON.parse(JSON.stringify(myContentJson));
|
|
|
|
return {
|
|
...baseSchema,
|
|
items: props.listConflicts?.hits ?? [],
|
|
pagination: props.pagination,
|
|
};
|
|
});
|
|
const headerTools = ref([
|
|
[
|
|
{
|
|
items: [
|
|
{ key: "label", label: "کد:", style: "code-title" },
|
|
{
|
|
type: "dropdown",
|
|
key: "dropdown",
|
|
name: "refine_codes",
|
|
dropdownSchema: {
|
|
width: "18em",
|
|
modelValue: null,
|
|
optionAttribute: "title",
|
|
valueAttribute: "value",
|
|
searchable: false,
|
|
placeholder: "انتخاب کنید",
|
|
items: refineCodes,
|
|
},
|
|
},
|
|
{ key: "label", label: "نوع رابطه:", style: "code-title" },
|
|
{
|
|
type: "dropdown",
|
|
key: "dropdown",
|
|
name: "refine_codes",
|
|
dropdownSchema: {
|
|
width: "10em",
|
|
modelValue: null,
|
|
optionAttribute: "title",
|
|
valueAttribute: "value",
|
|
searchable: false,
|
|
placeholder: "انتخاب کنید",
|
|
items: [
|
|
{
|
|
title: "تعارض",
|
|
value: "1",
|
|
},
|
|
{
|
|
title: "تینت",
|
|
value: "2",
|
|
},
|
|
{
|
|
title: "ییی",
|
|
value: "3",
|
|
},
|
|
{
|
|
title: "ییی",
|
|
value: "4",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
{ key: "label", label: "وضعیت اعتبار:", style: "code-title" },
|
|
{
|
|
type: "dropdown",
|
|
key: "dropdown",
|
|
name: "refine_codes",
|
|
dropdownSchema: {
|
|
width: "10em",
|
|
modelValue: null,
|
|
optionAttribute: "title",
|
|
valueAttribute: "value",
|
|
searchable: false,
|
|
placeholder: "انتخاب کنید",
|
|
placeholder: "انتخاب کنید",
|
|
items: [
|
|
{
|
|
title: "تعارض",
|
|
value: "1",
|
|
},
|
|
{
|
|
title: "تینت",
|
|
value: "2",
|
|
},
|
|
{
|
|
title: "ییی",
|
|
value: "3",
|
|
},
|
|
{
|
|
title: "ییی",
|
|
value: "4",
|
|
},
|
|
],
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
items: [
|
|
{
|
|
key: "autoComplation",
|
|
placeholder: "جستجوی ...",
|
|
debounceTime: 500,
|
|
// autocompleteUrl: "/repo/monir/complation/sanad",
|
|
minCharsForAutocomplete: 3,
|
|
maxHistoryItems: 20,
|
|
showSearchButton: false,
|
|
filters: [
|
|
{
|
|
label: "همه اجزاء",
|
|
value: "all",
|
|
},
|
|
{
|
|
label: "عنوان جلسه",
|
|
value: "title",
|
|
},
|
|
{
|
|
label: "عنوان دوره",
|
|
value: "branch",
|
|
},
|
|
{
|
|
label: " فقط فهرست",
|
|
value: "mindex",
|
|
},
|
|
{
|
|
label: " فقط کدها",
|
|
value: "codes",
|
|
},
|
|
{
|
|
label: " دوره",
|
|
value: "advance",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
key: "prevNext",
|
|
name: "entityNavigator",
|
|
prevDisabled: false,
|
|
nextDisabled: true,
|
|
},
|
|
],
|
|
},
|
|
],
|
|
]);
|
|
|
|
function headerToolsAction({ action, data }) {
|
|
if (action == "auto-complation") {
|
|
if (data.action == "complete-search") {
|
|
// console.log("data ==> ", data);
|
|
|
|
emit("my-header-tools-search", data.item);
|
|
}
|
|
}
|
|
if (action === "prev-click") {
|
|
}
|
|
|
|
if (action === "next-click") {
|
|
}
|
|
}
|
|
function myContentAction({ action, payload }) {
|
|
if (action === "conflict_Details") {
|
|
emit("conflict-details", payload);
|
|
} else {
|
|
emit("my-content-action", { action, payload });
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style lang="scss"></style>
|