pull/1/head
Saeid 5 years ago
commit ef9a084fdf

5011
package-lock.json generated

File diff suppressed because it is too large Load Diff

@ -1,6 +1,6 @@
{ {
"/js/vue/Authentication/app.js": "/js/vue/Authentication/app.js?id=c0dad36c5b62e25c181a", "/js/vue/Authentication/app.js": "/js/vue/Authentication/app.js?id=ae0020c3ea87585d11e2",
"/js/vue/Home/app.js": "/js/vue/Home/app.js?id=dfef9cd82f38d626bd59", "/js/vue/Home/app.js": "/js/vue/Home/app.js?id=a60eee632dda35e62e92",
"/js/vue/Modules/CRM/app.js": "/js/vue/Modules/CRM/app.js?id=df5383183b662623e128", "/js/vue/Modules/CRM/app.js": "/js/vue/Modules/CRM/app.js?id=7701333a8c35f7da26ba",
"/js/vue/User/app.js": "/js/vue/User/app.js?id=d2f6a49dd0b581e57419" "/js/vue/User/app.js": "/js/vue/User/app.js?id=620f4775165bb2cb796d"
} }

@ -5,8 +5,9 @@
<a :href="mainHref"> <a :href="mainHref">
<v-icon class="Home" dark>fas fa-home</v-icon> <v-icon class="Home" dark>fas fa-home</v-icon>
</a> </a>
<div class="Name caption"> {{ getAuthUser.name }} </div>
<div class="Time"> <div class="Time">
<div class="WM-Font-22 En ExtraBold">{{ timeNow }}</div> <div class="WM-Font-22 En Bold">{{ timeNow }}</div>
<div class="WM-Font-14 Fa FaNum">{{ new Date() | moment("dddd jDD jMMMM jYYYY") }}</div> <div class="WM-Font-14 Fa FaNum">{{ new Date() | moment("dddd jDD jMMMM jYYYY") }}</div>
</div> </div>
<!-- <div class="Notification" dark> <!-- <div class="Notification" dark>
@ -145,6 +146,14 @@ export default {
right: 50px; right: 50px;
top: 20px; top: 20px;
} }
.Header .Name {
position: absolute;
right: 80px;
top: 20px;
color: #fff;
line-height: 18px;
}
.Notification { .Notification {
position: absolute; position: absolute;
left: 20px; left: 20px;

@ -29,4 +29,7 @@ export default {
.v-breadcrumbs li:nth-child(2n) { .v-breadcrumbs li:nth-child(2n) {
padding: 0 12px 0 30px; padding: 0 12px 0 30px;
} }
.v-breadcrumbs .WM-Link {
font-size: 14px;
}
</style> </style>

@ -1,7 +1,7 @@
<template> <template>
<div class="WM-Info-Block" :class='direction'> <div class="WM-Info-Block" :class='direction'>
<div class="Label"><v-icon>fas fa-{{icon}}</v-icon> {{label}} </div> <div class="Label"><v-icon>fas fa-{{icon}}</v-icon> {{ label }} </div>
<div class="Value"> {{value}} </div> <div class="Value" :class='valueClass' > {{ value }} </div>
</div> </div>
</template> </template>
@ -12,6 +12,7 @@ export default {
label: { default: " عنوان " }, label: { default: " عنوان " },
value: { default: " پسر خوب " }, value: { default: " پسر خوب " },
direction: { default: '' }, direction: { default: '' },
valueClass: { default: '' },
}, },
}; };
</script> </script>
@ -31,11 +32,11 @@ export default {
} }
.WM-Info-Block .Label { .WM-Info-Block .Label {
color: #797979; color: #797979;
font-size: 14px; font-size: 12px;
} }
.WM-Info-Block .Value { .WM-Info-Block .Value {
color: #000; color: #000;
font-size: 18px; font-size: 16px;
} }
.WM-Info-Block .v-icon { .WM-Info-Block .v-icon {
margin-top: -5px; margin-top: -5px;

@ -4,7 +4,7 @@ import Vue from 'vue';
import "@Global/scss/style.scss"; import "@Global/scss/style.scss";
// global Components // global Components
import PartTitle from "@Global/components/Dividers/PartTitle.vue"; import PartTitle from "@Global/components/Dividers/PartTitle.vue";
import PageTitle from "@Global/components/Dividers/PageTitle.vue"; import PageTitle from "@Global/components/Dividers/PageTitle.vue";
import Checkbox from "@Global/components/Inputs/Checkbox.vue"; import Checkbox from "@Global/components/Inputs/Checkbox.vue";
@ -15,7 +15,7 @@ import Dialog from "@Global/components/Misc/Dialog.vue";
Vue.component("WM-PartTitle", PartTitle); Vue.component("WM-PartTitle", PartTitle);
Vue.component("WM-PageTitle", PageTitle); Vue.component("WM-PageTitle", PageTitle);
Vue.component("WM-Checkbox", Checkbox); Vue.component("WM-Checkbox", Checkbox);
Vue.component("WM-InfoBlock", InfoBlock); Vue.component("wm-info-block", InfoBlock);
Vue.component("wm-breadcrumbs", Breadcrumbs); Vue.component("wm-breadcrumbs", Breadcrumbs);
Vue.component("wm-dialog", Dialog); Vue.component("wm-dialog", Dialog);
@ -23,5 +23,4 @@ Vue.component("wm-dialog", Dialog);
import jalaliMoment from "vue-jalali-moment" import jalaliMoment from "vue-jalali-moment"
import momment from "moment" import momment from "moment"
momment.locale('fa'); momment.locale('fa');
Vue.use(jalaliMoment); Vue.use(jalaliMoment);

@ -178,7 +178,7 @@ table.v-table tbody td {
} }
.v-data-footer { .v-data-footer {
padding-left: 70px; padding-left: 90px;
} }
.orange.darken-2 { .orange.darken-2 {
@ -206,7 +206,7 @@ table.v-table tbody td {
.Buttons { .Buttons {
text-align: center; text-align: center;
display: inline-flex; display: contents;
} }
.v-btn { .v-btn {

Loading…
Cancel
Save