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