fix: ลบ โค้ค ไม่ได้ใช้

This commit is contained in:
Net 2024-06-21 15:59:58 +07:00
parent b490b04828
commit 2b0d1a2e4a

View file

@ -6,54 +6,17 @@ import { moveItemUp, moveItemDown, deleteItem, dialog } from 'src/stores/utils';
import NoData from 'src/components/NoData.vue';
import WorkManagementComponent from './WorkManagementComponent.vue';
import useProductServiceStore from 'src/stores/product-service';
const productServiceStore = useProductServiceStore();
const { t } = useI18n();
import { WorkItems, ProductList } from 'src/stores/product-service/types';
const serviceName = defineModel<string>('serviceName');
const product = defineModel<ProductList[]>();
const workItems = defineModel<WorkItems[]>('workItems', { default: [] });
// const workItems = ref([
// {
// id: '1',
// product: [
// {
// id: '1',
// label: ' 2 555',
// labelEn: '2 year work permit fee',
// code: 'AC101',
// price: 1200,
// time: '14',
// },
// ],
// },
// {
// id: '2',
// product: [
// {
// id: '1',
// label: ' 2 ',
// labelEn: '2 year work permit fee',
// code: 'AC101',
// price: 1200,
// time: '14',
// },
// {
// id: '1',
// label:
// ' MOU',
// labelEn:
// 'Service and processing fees for submitting a work permit application on behalf of an MOU foreign worker',
// code: 'AC102',
// price: 1200,
// time: '14',
// },
// ],
// },
// ]);
defineProps<{
dense?: boolean;
outlined?: boolean;