Refactoring code module 15_development
This commit is contained in:
parent
895bfe98f2
commit
32ff7bdc96
25 changed files with 271 additions and 1440 deletions
|
|
@ -55,22 +55,25 @@ const checkRoutePermission = ref<boolean>(
|
|||
const step = ref<string>("");
|
||||
|
||||
/***** ตัวชี้วัดความสำเร็จ ******/
|
||||
const modalDialog = ref<boolean>(false);
|
||||
const isEdit = ref<boolean>(false);
|
||||
const indicatorId = ref<string>("");
|
||||
const typeAction = ref<string>("");
|
||||
const modalDialog = ref<boolean>(false); //popup ตัวชี้วัด
|
||||
const isEdit = ref<boolean>(false); // check edit
|
||||
const indicatorId = ref<string>(""); //id ตัวชี้วัด
|
||||
const typeAction = ref<string>(""); //แยกประเภท ผลการดำเนินการ /แก้ไขตัวชี้วัด /เพิ่มตัวชี้วัด
|
||||
const formIndicators = reactive<FormIndicators>({
|
||||
indicators: "",
|
||||
target: null,
|
||||
metricType: "",
|
||||
calculation: "",
|
||||
measuRement: "",
|
||||
results: "",
|
||||
indicators: "", //ตัวชี้วัด
|
||||
target: null, //เป้าหมาย
|
||||
metricType: "", //ประเภทตัวชี้วัด
|
||||
calculation: "", //วิธีการคำนวณ/เครื่องมือ
|
||||
measuRement: "", //ระยะเวลาวัดผล
|
||||
results: "", //ผลการดำเนิดการ
|
||||
obstacles: "",
|
||||
suggestions: "",
|
||||
});
|
||||
/** ข้อมูล Table */
|
||||
const rows = ref<DevelopmentEvaluations[]>([]); // ข้อมูลรายการ
|
||||
const progressTracking = ref<string>(""); //การติดตามความก้าวหน้า
|
||||
const projectEvaluation = ref<string>(""); // การประเมินผลโครงการ
|
||||
|
||||
const columns = ref<QTableProps["columns"]>([
|
||||
{
|
||||
name: "indicators",
|
||||
|
|
@ -144,9 +147,6 @@ const metricTypeOp = ref<DataOption[]>([
|
|||
},
|
||||
]);
|
||||
|
||||
const progressTracking = ref<string>(""); //การติดตามความก้าวหน้า
|
||||
const projectEvaluation = ref<string>(""); // การประเมินผลโครงการ
|
||||
|
||||
/**
|
||||
* ดึงข้อมูลการติดตามผลและการประเมิน
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue