diff --git a/src/modules/18_command/components/Step/0_Main.vue b/src/modules/18_command/components/Step/0_Main.vue
new file mode 100644
index 000000000..3448f7ae1
--- /dev/null
+++ b/src/modules/18_command/components/Step/0_Main.vue
@@ -0,0 +1,3 @@
+
+
+ประมวลผลคำสั่ง
diff --git a/src/modules/18_command/views/detail.vue b/src/modules/18_command/views/detail.vue
index 1ceab02ec..cfccd57a6 100644
--- a/src/modules/18_command/views/detail.vue
+++ b/src/modules/18_command/views/detail.vue
@@ -6,6 +6,7 @@ import { useCommandDetail } from "@/modules/18_command/store/DetailStore";
import type { ItemTabs } from "@/modules/18_command/interface/index/Main";
+import Main from "@/modules/18_command/components/Step/0_Main.vue"; //ประมวลผลคำสั่ง
import Detail from "@/modules/18_command/components/Step/1_Detail.vue"; //รายละเอียดคำสั่ง
import ListPersons from "@/modules/18_command/components/Step/2_ListPersons.vue"; //รายชื่อผู้ออกคำสั่ง
import ReceivedCopy from "@/modules/18_command/components/Step/3_ReceivedCopy.vue"; //รายชื่อผู้ได้รับสำเนาคำสั่ง
@@ -27,16 +28,17 @@ const readonly = ref(route.name === "commandViewDetailPage"); //อ่
const isChangeData = ref(false); //การเปลี่ยนแปลงของข้อมูล
//รายการ Tab ละเอียดคำสั่ง
const tabsManu = ref([
+ { label: "ประมวลผลคำสั่ง", name: "Main" },
{ label: "รายละเอียดคำสั่ง", name: "Detail" },
{
- label: "รายชื่อผู้ออกคำสั่ง",
+ label: "รายชื่อผู้ได้รับคำสั่ง",
name: "ListPersons",
},
{
label: "รายชื่อผู้ได้รับสำเนาคำสั่ง",
name: "ReceivedCopy",
},
- { label: "คำสั่งและบัญชีแนบท้าบ", name: "Attached" },
+ { label: "พรีวิวคำสั่ง", name: "Attached" },
]);
/**
@@ -116,6 +118,16 @@ onMounted(() => {
+
+
+
+
+
+