247 lines
6 KiB
Vue
247 lines
6 KiB
Vue
|
|
<script setup lang="ts">
|
||
|
|
import { ref, onMounted } from "vue";
|
||
|
|
import type { QTableProps } from "quasar";
|
||
|
|
import { useCounterMixin } from "@/stores/mixin";
|
||
|
|
import { useQuasar } from "quasar";
|
||
|
|
import { useRouter } from "vue-router";
|
||
|
|
|
||
|
|
import type{ DataOption } from '@/modules/14_KPI/interface/index/Main'
|
||
|
|
import http from "@/plugins/http";
|
||
|
|
import config from "@/app.config";
|
||
|
|
|
||
|
|
|
||
|
|
const router = useRouter()
|
||
|
|
const rows = ref<any>()
|
||
|
|
|
||
|
|
const competencyTypeOp = ref<DataOption[]>([
|
||
|
|
{
|
||
|
|
id:'ID1',
|
||
|
|
name:'สมรรถนะหลัก',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID2',
|
||
|
|
name:'สมรรถนะประจำกลุ่มงาน',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID3',
|
||
|
|
name:'สมรรถนะประจำกลุ่มงาน',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID4',
|
||
|
|
name:'สมรรถนะประจำผู้บริหารกรุงเทพมหานคร',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID5',
|
||
|
|
name:'สมรรถนะเฉพาะสำหรับตำแหน่ง ผอ.เขต ผช.ผอ.เขต และหัวหน้าฝ่ายในสังกัด สนง.เขต',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID6',
|
||
|
|
name:'สมรรถนะเฉพาะสำหรับตำแหน่งผู้ตรวจราชการ กทม. และผู้ตรวจราชการ',
|
||
|
|
},
|
||
|
|
])
|
||
|
|
const column = [
|
||
|
|
{
|
||
|
|
name: "competency",
|
||
|
|
align: "left",
|
||
|
|
label: "ชื่อสมรรถนะ",
|
||
|
|
sortable: true,
|
||
|
|
field: "competency",
|
||
|
|
headerStyle: "font-size: 14px",
|
||
|
|
style: "font-size: 14px",
|
||
|
|
sort: (a: string, b: string) =>
|
||
|
|
a.localeCompare(b, undefined, { numeric: true, sensitivity: "base" }),
|
||
|
|
},
|
||
|
|
] as const satisfies QTableProps["columns"];
|
||
|
|
|
||
|
|
const $q = useQuasar();
|
||
|
|
const mixin = useCounterMixin();
|
||
|
|
const { dialogRemove, messageError, showLoader, hideLoader, success } = mixin;
|
||
|
|
|
||
|
|
const competencyType = ref<string>('ID1')
|
||
|
|
const filterKeyword = ref<string>("");
|
||
|
|
|
||
|
|
const visibleColumns = ref<string[]>([
|
||
|
|
"competency",
|
||
|
|
]);
|
||
|
|
|
||
|
|
/** ดึงข้อมูล */
|
||
|
|
async function getData() {
|
||
|
|
const data = [
|
||
|
|
{
|
||
|
|
id:'ID1',
|
||
|
|
competency:'รายการสมรรถะ 1'
|
||
|
|
},
|
||
|
|
{
|
||
|
|
id:'ID2',
|
||
|
|
competency:'รายการสมรรถะ 2'
|
||
|
|
},
|
||
|
|
]
|
||
|
|
rows.value = data
|
||
|
|
// showLoader();
|
||
|
|
// await http
|
||
|
|
// .get(config.API.orgPrefix)
|
||
|
|
// .then(async (res) => {
|
||
|
|
// })
|
||
|
|
// .catch((err) => {
|
||
|
|
// messageError($q, err);
|
||
|
|
// })
|
||
|
|
// .finally(() => {
|
||
|
|
// hideLoader();
|
||
|
|
// });
|
||
|
|
}
|
||
|
|
|
||
|
|
async function editData(id: string) {
|
||
|
|
console.log(id)
|
||
|
|
// await http
|
||
|
|
// .put(config.API.orgPrefixId(id), {
|
||
|
|
// name: prefix.value,
|
||
|
|
// })
|
||
|
|
// .then(() => {
|
||
|
|
// getData();
|
||
|
|
// success($q, "บันทึกข้อมูลสำเร็จ");
|
||
|
|
// })
|
||
|
|
// .catch((err) => {
|
||
|
|
// messageError($q, err);
|
||
|
|
// })
|
||
|
|
// .finally(() => {
|
||
|
|
// hideLoader();
|
||
|
|
// });
|
||
|
|
}
|
||
|
|
|
||
|
|
async function deleteData(id: string) {
|
||
|
|
console.log(id)
|
||
|
|
// await http
|
||
|
|
// .delete(config.API.orgPrefixId(id))
|
||
|
|
// .then(() => {
|
||
|
|
// getData();
|
||
|
|
// success($q, "ลบข้อมูลสำเร็จ");
|
||
|
|
// })
|
||
|
|
// .catch((err) => {
|
||
|
|
// messageError($q, err);
|
||
|
|
// })
|
||
|
|
// .finally(() => {
|
||
|
|
// hideLoader();w
|
||
|
|
// });
|
||
|
|
}
|
||
|
|
|
||
|
|
/** เปลี่ยนเป็นหน้าเพิ่มข้อมูล */
|
||
|
|
function onAdd(){
|
||
|
|
router.push(`/KPI-competency/add`)
|
||
|
|
}
|
||
|
|
|
||
|
|
onMounted(async () => {
|
||
|
|
getData();
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<q-toolbar style="padding: 0">
|
||
|
|
<q-select
|
||
|
|
v-model="competencyType"
|
||
|
|
outlined
|
||
|
|
label="ประเภทสมรรถนะ"
|
||
|
|
dense
|
||
|
|
option-label="name"
|
||
|
|
option-value="id"
|
||
|
|
:options="competencyTypeOp"
|
||
|
|
style="min-width: 200px"
|
||
|
|
emit-value
|
||
|
|
map-options
|
||
|
|
/>
|
||
|
|
<q-btn
|
||
|
|
flat
|
||
|
|
round
|
||
|
|
color="primary"
|
||
|
|
icon="add"
|
||
|
|
@click="onAdd()"
|
||
|
|
>
|
||
|
|
<q-tooltip> เพิ่มข้อมูล </q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
<q-space />
|
||
|
|
<div class="row q-gutter-sm">
|
||
|
|
<q-input outlined dense v-model="filterKeyword" label="ค้นหา"></q-input>
|
||
|
|
<q-select
|
||
|
|
v-model="visibleColumns"
|
||
|
|
multiple
|
||
|
|
outlined
|
||
|
|
dense
|
||
|
|
options-dense
|
||
|
|
:display-value="$q.lang.table.columns"
|
||
|
|
emit-value
|
||
|
|
map-options
|
||
|
|
:options="column"
|
||
|
|
option-value="name"
|
||
|
|
options-cover
|
||
|
|
style="min-width: 150px"
|
||
|
|
/>
|
||
|
|
</div>
|
||
|
|
</q-toolbar>
|
||
|
|
|
||
|
|
<d-table
|
||
|
|
ref="table"
|
||
|
|
:columns="column"
|
||
|
|
:rows="rows"
|
||
|
|
:filter="filterKeyword"
|
||
|
|
row-key="id"
|
||
|
|
flat
|
||
|
|
bordered
|
||
|
|
:paging="true"
|
||
|
|
dense
|
||
|
|
class="custom-header-table"
|
||
|
|
:visible-columns="visibleColumns"
|
||
|
|
>
|
||
|
|
<template v-slot:header="props">
|
||
|
|
<q-tr :props="props">
|
||
|
|
<q-th v-for="col in props.cols" :key="col.name" :props="props">
|
||
|
|
<span class="text-weight-medium">{{ col.label }}</span>
|
||
|
|
</q-th>
|
||
|
|
<q-th auto-width />
|
||
|
|
</q-tr>
|
||
|
|
</template>
|
||
|
|
<template v-slot:body="props">
|
||
|
|
<q-tr :props="props" class="cursor-pointer">
|
||
|
|
<q-td v-for="col in props.cols" :key="col.id">
|
||
|
|
{{ col.value }}
|
||
|
|
</q-td>
|
||
|
|
<q-td auto-width>
|
||
|
|
<!-- <q-btn
|
||
|
|
color="edit"
|
||
|
|
flat
|
||
|
|
dense
|
||
|
|
round
|
||
|
|
class="q-mr-xs"
|
||
|
|
size="12px"
|
||
|
|
icon="edit"
|
||
|
|
clickable
|
||
|
|
@click.stop="
|
||
|
|
() => {
|
||
|
|
dialogStatus = 'edit';
|
||
|
|
dialog = true;
|
||
|
|
prefix = props.row.name;
|
||
|
|
editId = props.row.id;
|
||
|
|
}
|
||
|
|
"
|
||
|
|
>
|
||
|
|
<q-tooltip>แก้ไขข้อมูล</q-tooltip>
|
||
|
|
</q-btn> -->
|
||
|
|
<q-btn
|
||
|
|
color="red"
|
||
|
|
flat
|
||
|
|
dense
|
||
|
|
round
|
||
|
|
size="12px"
|
||
|
|
icon="mdi-delete"
|
||
|
|
clickable
|
||
|
|
@click.stop="
|
||
|
|
dialogRemove($q, async () => await deleteData(props.row.id))
|
||
|
|
"
|
||
|
|
v-close-popup
|
||
|
|
>
|
||
|
|
<q-tooltip>ลบข้อมูล</q-tooltip>
|
||
|
|
</q-btn>
|
||
|
|
</q-td>
|
||
|
|
</q-tr>
|
||
|
|
</template>
|
||
|
|
</d-table>
|
||
|
|
</template>
|