no message
This commit is contained in:
parent
142fc30d8b
commit
40e787af89
4 changed files with 0 additions and 10 deletions
|
|
@ -92,10 +92,6 @@ async function editPage(id: string) {
|
|||
router.push(`/discipline/investigatefacts/${id}`);
|
||||
}
|
||||
|
||||
function dataUpdate() {
|
||||
console.log(statusFilter.value);
|
||||
}
|
||||
|
||||
function filterFn() {
|
||||
getList();
|
||||
}
|
||||
|
|
|
|||
|
|
@ -181,8 +181,6 @@ const dateEndInputStyle = computed(() => {
|
|||
investigationDateEnd >= currentDate &&
|
||||
investigationDateEnd <=
|
||||
new Date(currentDate.getTime() + 7 * 24 * 60 * 60 * 1000);
|
||||
|
||||
console.log(isInNext7Days);
|
||||
return isInNext7Days ? "input-alert" : "";
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -42,7 +42,6 @@ function clickList(index: number, data: any) {
|
|||
lastName: i.lastName,
|
||||
fullName:`${i.prefix}${i.firstName} ${i.lastName}`
|
||||
}));
|
||||
console.log(data);
|
||||
}
|
||||
|
||||
watch(props, () => {
|
||||
|
|
@ -52,7 +51,6 @@ watch(props, () => {
|
|||
http
|
||||
.get(config.API.historyDirectorbyId(data.id, props.type as string))
|
||||
.then((res) => {
|
||||
console.log(res.data.result);
|
||||
listInvestigateDetail.value = res.data.result;
|
||||
})
|
||||
.catch((e) => {
|
||||
|
|
|
|||
|
|
@ -69,7 +69,6 @@ const formData = reactive<FormData>({
|
|||
* เก็บข้อมูลลง formData
|
||||
*/
|
||||
watch(props.data, async () => {
|
||||
// console.log("data==>", props.data)
|
||||
formData.prefix = props.data.prefix;
|
||||
formData.firstname = props.data.firstname;
|
||||
formData.lastname = props.data.lastname;
|
||||
|
|
@ -198,7 +197,6 @@ const visibleColumnsRespondent = ref<string[]>([
|
|||
*/
|
||||
function addEmployee() {
|
||||
if (idCard.value.length === 13) {
|
||||
console.log("idCard===>", idCard.value);
|
||||
showLoader();
|
||||
http
|
||||
.post(config.API.profileSearchPersonal(), {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue