diff --git a/src/views/Chalani/Chalani.vue b/src/views/Chalani/Chalani.vue index d317529..13afb7c 100644 --- a/src/views/Chalani/Chalani.vue +++ b/src/views/Chalani/Chalani.vue @@ -13,18 +13,17 @@ /> - + diff --git a/src/views/Chalani/CreateChalani.vue b/src/views/Chalani/CreateChalani.vue new file mode 100644 index 0000000..4bda12c --- /dev/null +++ b/src/views/Chalani/CreateChalani.vue @@ -0,0 +1,245 @@ + + + diff --git a/src/views/Darta/Create.vue b/src/views/Darta/Create.vue index 7734a94..53d4094 100644 --- a/src/views/Darta/Create.vue +++ b/src/views/Darta/Create.vue @@ -192,6 +192,7 @@ + @@ -211,6 +212,7 @@ const documentTypeStore = createGenericStore("document-type")(); const departmentStore = createGenericStore("department")(); const emit = defineEmits(["onSave"]); const towser = ref({ + title: [{ name: "Darta", link: "#" }, { name: "Create" }], title: [{ name: "Darta", link: "#" }, { name: "Create" }], action: [ { @@ -223,7 +225,16 @@ const towser = ref({ }, ], }); +}); +const departments = ref([ + { id: 1, name: "Administration" }, + { id: 2, name: "HR" }, +]); +const documentCategories = ref([ + { id: 1, name: "Confidential" }, + { id: 2, name: "Public" }, +]); const departments = ref([ { id: 1, name: "Administration" }, { id: 2, name: "HR" }, @@ -245,6 +256,15 @@ const formData = reactive({ issuedDate: "", dispatchDate: "", attachments: [] as File[], + documentNumber: "", + subject: "", + body: "", + recipientName: "", + recipientContact: "", + recipientAddress: "", + issuedDate: "", + dispatchDate: "", + attachments: [] as File[], }); const fileInputRef = ref(null); @@ -271,3 +291,4 @@ const removeFile = (index: number) => { }; + diff --git a/src/views/Darta/Darta.vue b/src/views/Darta/Darta.vue index 923290d..45850fb 100644 --- a/src/views/Darta/Darta.vue +++ b/src/views/Darta/Darta.vue @@ -16,10 +16,9 @@ - +