Compare commits
No commits in common. "c460543f5d0e3b69f93d3bfd244d4718a118286c" and "da8d31dfccc6147340e71af11da502a0face2f7a" have entirely different histories.
c460543f5d
...
da8d31dfcc
1
.env
1
.env
|
@ -55,6 +55,7 @@ VITE_ENTITY_SYSTEM=entity-view-system
|
||||||
VITE_BORHAN_SYSTEM=borhan-system
|
VITE_BORHAN_SYSTEM=borhan-system
|
||||||
VITE_THIQAT_SYSTEM=thiqat-system
|
VITE_THIQAT_SYSTEM=thiqat-system
|
||||||
VITE_CHAT_SYSTEM=chat-system
|
VITE_CHAT_SYSTEM=chat-system
|
||||||
|
VITE_TASK_SYSTEM=task-system
|
||||||
VITE_REPORT_SYSTEM=report-system
|
VITE_REPORT_SYSTEM=report-system
|
||||||
VITE_ADMIN_SYSTEM=admin-panel
|
VITE_ADMIN_SYSTEM=admin-panel
|
||||||
VITE_TAHRIR_SYSTEM=tahrir-system
|
VITE_TAHRIR_SYSTEM=tahrir-system
|
||||||
|
|
|
@ -21,7 +21,6 @@ VITE_TAHRIR_PAGE_TITLE = قانون - سامانه ای برای سندنگار
|
||||||
VITE_REPORT_PAGE_TITLE = قانون - سامانه گزارش گیری داده
|
VITE_REPORT_PAGE_TITLE = قانون - سامانه گزارش گیری داده
|
||||||
VITE_PERMISSION_PAGE_TITLE = قانون - سامانه کنترل وظایف
|
VITE_PERMISSION_PAGE_TITLE = قانون - سامانه کنترل وظایف
|
||||||
VITE_CHAT_PAGE_TITLE = قانون - سامانه گفتگو
|
VITE_CHAT_PAGE_TITLE = قانون - سامانه گفتگو
|
||||||
VITE_TASK_PAGE_TITLE = قانون - سامانه وظایف
|
|
||||||
VITE_RESEARCH_PAGE_TITLE = قانون - تحقیقات من
|
VITE_RESEARCH_PAGE_TITLE = قانون - تحقیقات من
|
||||||
VITE_AI_TOOLS_PAGE_TITLE = قانون - حاشیه نویسی
|
VITE_AI_TOOLS_PAGE_TITLE = قانون - حاشیه نویسی
|
||||||
|
|
||||||
|
|
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -10,6 +10,3 @@
|
||||||
[submodule "systems/chat_ui"]
|
[submodule "systems/chat_ui"]
|
||||||
path = systems/chat_ui
|
path = systems/chat_ui
|
||||||
url = https://git2.tavasi.ir/front/chat_ui.git
|
url = https://git2.tavasi.ir/front/chat_ui.git
|
||||||
[submodule "systems/task_ui"]
|
|
||||||
path = systems/task_ui
|
|
||||||
url = https://git2.tavasi.ir/front/task_ui.git
|
|
||||||
|
|
|
@ -6,7 +6,6 @@ import chat from "./routes/chat";
|
||||||
import haditha from "./routes/haditha";
|
import haditha from "./routes/haditha";
|
||||||
import search from "./routes/search";
|
import search from "./routes/search";
|
||||||
import research from "./routes/research";
|
import research from "./routes/research";
|
||||||
import task from "./routes/task";
|
|
||||||
|
|
||||||
const envs = import.meta.env;
|
const envs = import.meta.env;
|
||||||
let sassEnvVariables = "";
|
let sassEnvVariables = "";
|
||||||
|
@ -45,7 +44,7 @@ export default defineNuxtConfig({
|
||||||
|
|
||||||
"pages:extend"(pages) {
|
"pages:extend"(pages) {
|
||||||
// Add custom routes
|
// Add custom routes
|
||||||
pages.push(...search, ...research, ...haditha, ...chat, ...task);
|
pages.push(...search, ...research, ...haditha, ...chat);
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -171,7 +170,6 @@ export default defineNuxtConfig({
|
||||||
"@research": "~/systems/research_ui",
|
"@research": "~/systems/research_ui",
|
||||||
"@haditha": "~/systems/hadith_ui",
|
"@haditha": "~/systems/hadith_ui",
|
||||||
"@chat": "~/systems/chat_ui",
|
"@chat": "~/systems/chat_ui",
|
||||||
"@task": "~/systems/task_ui",
|
|
||||||
},
|
},
|
||||||
vite: {
|
vite: {
|
||||||
resolve: {},
|
resolve: {},
|
||||||
|
|
|
@ -1,53 +0,0 @@
|
||||||
export default [
|
|
||||||
{
|
|
||||||
path: "/task",
|
|
||||||
file: "@task/pages/index.vue",
|
|
||||||
meta: { breadcrumb: "سامانه وظایف" },
|
|
||||||
children: [
|
|
||||||
{
|
|
||||||
path: "",
|
|
||||||
redirect: { name: "taskDashboard" },
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "dashboard",
|
|
||||||
name: "taskDashboard",
|
|
||||||
file: "@task/pages/TaskDashboard.vue",
|
|
||||||
meta: {
|
|
||||||
breadcrumb: "پیشخوان مدیریت وظایف",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "times/list",
|
|
||||||
name: "taskTimes",
|
|
||||||
file: "@task/pages/Task.vue",
|
|
||||||
meta: {
|
|
||||||
breadcrumb: "ساعات",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "tasks/list",
|
|
||||||
name: "taskList",
|
|
||||||
file: "@task/pages/Task.vue",
|
|
||||||
meta: {
|
|
||||||
breadcrumb: "وظایف",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "teams/list",
|
|
||||||
name: "teams",
|
|
||||||
file: "@task/pages/TaskTeams.vue",
|
|
||||||
meta: {
|
|
||||||
breadcrumb: "تیم ها",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: "admin/list",
|
|
||||||
name: "taskReport",
|
|
||||||
file: "@task/pages/TaskReport.vue",
|
|
||||||
meta: {
|
|
||||||
breadcrumb: "گزارش وظایف",
|
|
||||||
},
|
|
||||||
},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
];
|
|
|
@ -1 +0,0 @@
|
||||||
Subproject commit ad470940f4cf986638b575d4b8afaa2ec50c267c
|
|
Loading…
Reference in New Issue
Block a user