You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
willaengine/resources/js/Modules/CRM/components/Clients/Items.vue

82 lines
2.5 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

<template>
<div>
<v-layout row wrap class="Content">
<v-flex xl2 class="text-lg-right" style="margin-right:60px;">
نام مشتری
</v-flex>
<v-flex xl1 class="text-lg-center">
وضعیت
</v-flex>
<v-flex xl1 class="text-lg-center">
زمان
</v-flex>
<v-flex xl2 class="text-lg-center">
رویدادها
</v-flex>
<v-flex xl2 class="text-lg-center">
حجم تراکنش
</v-flex>
<v-flex xl2 class="text-lg-center">
ابزارها
</v-flex>
</v-layout>
<v-data-iterator :items="Clients" :rows-per-page-items="rowsPerPageItems" :pagination.sync="pagination" select-all row wrap rows-per-page-text="آیتم به ازای هر صفحه">
<template v-slot:item="props">
<wm-client-item :props="props"></wm-client-item>
</template>
<template v-slot:pageText="props">
آیتم {{ props.pageStart }} - {{ props.pageStop }} از {{ props.itemsLength }}
</template>
</v-data-iterator>
</div>
</template>
<script>
import ClientItem from "@CRM/components/Clients/Item.vue";
export default {
components: {
'wm-client-item' : ClientItem,
},
props: {
// Tile:TileData,
TileClass: { default: "xl12" },
TileHeight: { default: "70px" },
// --------------------------------------------
TitleFa: { default: " فرید الدین ساروی" },
TitleEn: { default: " Farid Saravi " },
Level: { default: 5 },
},
data: () => ({
rowsPerPageItems: [4, 8, 12],
pagination: {
rowsPerPage: 4
},
Clients: [
{
id:1,
TitleFa: ' فرید الدین ساروی ',
TitleEn: ' Farid Saravi ',
Level: 5,
Price: 1200000
},
{
id:2,
TitleFa: ' فرید الدین ساروی ',
TitleEn: ' Farid Saravi ',
Level: 5,
Price: 1200000
},
{
id:13,
TitleFa: ' فرید الدین ساروی ',
TitleEn: ' Farid Saravi ',
Level: 5,
Price: 1200000
},
]
})
};
</script>