รวมไฟล์แก้งานงวด2
This commit is contained in:
parent
79889c9464
commit
2249097b07
89 changed files with 11287 additions and 7048 deletions
|
|
@ -221,7 +221,7 @@ const { manageData, changeManageColumns, getOrganization, dataOrganization } =
|
|||
const rows = ref<RequestItemsHistoryObject[]>([]); //list data table
|
||||
const rowsHistory = ref<RequestItemsHistoryObject[]>([]); //select data history
|
||||
const rawHistory = ref<RequestItemsHistoryObject[]>([]); //raw data history
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขชื่อหน่วยงาน"); //
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขชื่อหน่วยงาน/ส่วนราชการ"); //
|
||||
const myForm = ref<any>(null); //ref สำหรับเช็คข้อมูลว่ามีช่องว่างไหม
|
||||
const filter = ref<string>(""); //search data table
|
||||
const filterHistory = ref<string>(""); //search data table history
|
||||
|
|
|
|||
|
|
@ -266,7 +266,7 @@ const {
|
|||
const rows = ref<RequestItemsHistoryObject[]>([]); //list data table
|
||||
const rowsHistory = ref<RequestItemsHistoryObject[]>([]); //select data history
|
||||
const rawHistory = ref<RequestItemsHistoryObject[]>([]); //raw data history
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขชื่อหน่วยงาน"); //
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขตัวย่อหน่วยงาน/ส่วนราชการ"); //
|
||||
const myForm = ref<any>(null); //ref สำหรับเช็คข้อมูลว่ามีช่องว่างไหม
|
||||
const filter = ref<string>(""); //search data table
|
||||
const filterHistory = ref<string>(""); //search data table history
|
||||
|
|
@ -282,7 +282,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "agencyCode",
|
||||
align: "left",
|
||||
label: "รหัสหน่วยงาน",
|
||||
label: "หน่วยงานต้นสังกัด",
|
||||
sortable: true,
|
||||
field: "agencyCode",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -293,7 +293,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "governmentCode",
|
||||
align: "left",
|
||||
label: "รหัสส่วนราชการ",
|
||||
label: "ส่วนราชการต้นสังกัด",
|
||||
sortable: true,
|
||||
field: "governmentCode",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -304,7 +304,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "ตัวย่อหน่วยงาน",
|
||||
label: "ตัวย่อหน่วยงาน/ส่วนราชการ",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -387,7 +387,7 @@ const columnsHistory = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "agencyCode",
|
||||
align: "left",
|
||||
label: "รหัสหน่วยงาน",
|
||||
label: "หน่วยงานต้นสังกัด",
|
||||
sortable: true,
|
||||
field: "agencyCode",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -398,7 +398,7 @@ const columnsHistory = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "governmentCode",
|
||||
align: "left",
|
||||
label: "รหัสส่วนราชการ",
|
||||
label: "ส่วนราชการต้นสังกัด",
|
||||
sortable: true,
|
||||
field: "governmentCode",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -409,7 +409,7 @@ const columnsHistory = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "ตัวย่อหน่วยงาน",
|
||||
label: "ตัวย่อหน่วยงาน/ส่วนราชการ",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -691,7 +691,7 @@ const save = async (publish: boolean) => {
|
|||
|
||||
/**
|
||||
* เช็ครหัสซ้ำกับข้อมูลที่มีอยู่แล้ว
|
||||
* @param val input รหัสส่วนราชการ
|
||||
* @param val input ส่วนราชการต้นสังกัด
|
||||
*/
|
||||
const checkDupDataGovernmentCode = (gCode: string, aCode: string) => {
|
||||
if (gCode == null || gCode == "") return true;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!-- tab หมายเลขโทรศัพท์ภายนอก หน้าจัดการข้อมูลหลัก/ข้อมูลโครงสร้างหน่วยงาน -->
|
||||
<!-- tab หมายเลขโทรศัพท์ที่ติดต่อจากภายนอก หน้าจัดการข้อมูลหลัก/ข้อมูลโครงสร้างหน่วยงาน -->
|
||||
<template>
|
||||
<div>
|
||||
<q-form ref="myForm">
|
||||
|
|
@ -213,7 +213,9 @@ const {
|
|||
const rows = ref<RequestItemsHistoryObject[]>([]); //list data table
|
||||
const rowsHistory = ref<RequestItemsHistoryObject[]>([]); //select data history
|
||||
const rawHistory = ref<RequestItemsHistoryObject[]>([]); //raw data history
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขหมายเลขโทรศัพท์ภายนอก"); //
|
||||
const tittleHistory = ref<string>(
|
||||
"ประวัติแก้ไขหมายเลขโทรศัพท์ที่ติดต่อจากภายนอก"
|
||||
); //
|
||||
const myForm = ref<any>(null); //ref สำหรับเช็คข้อมูลว่ามีช่องว่างไหม
|
||||
const filter = ref<string>(""); //search data table
|
||||
const filterHistory = ref<string>(""); //search data table history
|
||||
|
|
@ -229,7 +231,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "หมายเลขโทรศัพท์ภายนอก",
|
||||
label: "หมายเลขโทรศัพท์ที่ติดต่อจากภายนอก",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -298,7 +300,7 @@ const columnsHistory = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "หมายเลขโทรศัพท์ภายนอก",
|
||||
label: "หมายเลขโทรศัพท์ที่ติดต่อจากภายนอก",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
<!-- tab หมายเลขโทรศัพท์ภายใน หน้าจัดการข้อมูลหลัก/ข้อมูลโครงสร้างหน่วยงาน -->
|
||||
<!-- tab หมายเลขโทรศัพท์ที่ติดต่อจากภายใน หน้าจัดการข้อมูลหลัก/ข้อมูลโครงสร้างหน่วยงาน -->
|
||||
<template>
|
||||
<div>
|
||||
<q-form ref="myForm">
|
||||
|
|
@ -213,7 +213,9 @@ const {
|
|||
const rows = ref<RequestItemsHistoryObject[]>([]); //list data table
|
||||
const rowsHistory = ref<RequestItemsHistoryObject[]>([]); //select data history
|
||||
const rawHistory = ref<RequestItemsHistoryObject[]>([]); //raw data history
|
||||
const tittleHistory = ref<string>("ประวัติแก้ไขหมายเลขโทรศัพท์ภายใน"); //
|
||||
const tittleHistory = ref<string>(
|
||||
"ประวัติแก้ไขหมายเลขโทรศัพท์ที่ติดต่อจากภายใน"
|
||||
); //
|
||||
const myForm = ref<any>(null); //ref สำหรับเช็คข้อมูลว่ามีช่องว่างไหม
|
||||
const filter = ref<string>(""); //search data table
|
||||
const filterHistory = ref<string>(""); //search data table history
|
||||
|
|
@ -229,7 +231,7 @@ const columns = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "หมายเลขโทรศัพท์ภายใน",
|
||||
label: "หมายเลขโทรศัพท์ที่ติดต่อจากภายใน",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
@ -298,7 +300,7 @@ const columnsHistory = ref<QTableProps["columns"]>([
|
|||
{
|
||||
name: "name",
|
||||
align: "left",
|
||||
label: "หมายเลขโทรศัพท์ภายใน",
|
||||
label: "หมายเลขโทรศัพท์ที่ติดต่อจากภายใน",
|
||||
sortable: true,
|
||||
field: "name",
|
||||
headerStyle: "font-size: 14px",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue