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/Home/views/Home.vue

52 lines
2.6 KiB

<template>
<v-container fluid>
<v-layout row wrap>
5 years ago
<!-- <a href="/Main/Home" class="flex lg8 xs12">
<wm-tile TileClass="Inline LTR Padd10" TitleEn="My Store" TitleFa="فروشگاه من" Desc=" کالاها، خدمات، تخفیفات، فروش وِیژه و ... "
GradientBegin="feeae3" GradientEnd="feeae3" ImageURL="Store.png" ImageHeight="220px" Quantity="32">
</wm-tile>
</a>
<router-link to="/Main/Home" class="flex lg4 xs12">
<wm-tile TileClass="Padd10" TitleEn="My Portfolios" TitleFa=" نمونه کار های من " Desc=" کالاها، خدمات، تخفیفات، فروش وِیژه و ... "
GradientBegin="cab9a5" GradientEnd="f0ebe6" ImageURL="Portfolio2.png" ImageHeight="150px" Quantity="1250">
</wm-tile>
</router-link>
<router-link to="/Main/Home" class="flex lg12 xs12">
<wm-tile TileClass="Inline LTR Padd10" TileHeight="180" TitleEn="My Website" TitleFa="وبسایت من" Desc=" کالاها، خدمات، تخفیفات، فروش وِیژه و ... "
GradientBegin="f2f2f2" GradientEnd="e0e0e0" ImageURL="Website.png" >
</wm-tile>
5 years ago
</router-link> -->
<a href="/CRM/Home" class="flex lg8 xs12">
<wm-tile TileClass="Inline LTR Padd10" TitleEn="CRM" TitleFa=" مدیریت ارتباط با مشتری " Desc=" کالاها، خدمات، تخفیفات، فروش وِیژه و ... "
GradientBegin="d6e7de" GradientEnd="fff2f3" ImageURL="Members.png" ImageHeight="220px" >
</wm-tile>
</a>
<a href="/Reservation/Home" v-if="$_inCommingSoon('main-reservation')" class="flex lg4 xs12">
5 years ago
<wm-tile TileClass="Padd10" TitleEn="Reservations" TitleFa=" سیستم رزرو وقت " Desc=" کالاها، خدمات، تخفیفات، فروش وِیژه و ... "
GradientBegin="fff" GradientEnd="f7f7f7" ImageURL="Clock.png" ImageHeight="150px" >
5 years ago
</wm-tile>
</a>
</v-layout>
5 years ago
<router-link :to="{name: 'AddModule'}">
<v-btn large fab color="cyan" fixed bottom left dark style="left:5%"><v-icon dark>fas fa-plus</v-icon></v-btn>
</router-link>
</v-container>
</template>
<script>
import Tile from '@Global/components/Tiles/Tile';
export default {
components: {
'wm-tile':Tile,
},
};
</script>
<style scoped lang="scss">
</style>