2023-03-16 19:57:00 +07:00
|
|
|
<!-- card ข้อมูลที่อยู่ -->
|
2023-03-16 13:52:21 +07:00
|
|
|
<template>
|
|
|
|
|
<q-card flat bordered class="col-12 q-px-lg q-py-md q-mt-md">
|
|
|
|
|
<HeaderTop
|
|
|
|
|
v-model:edit="edit"
|
2023-03-16 19:57:00 +07:00
|
|
|
header="ข้อมูลที่อยู่"
|
2023-03-16 13:52:21 +07:00
|
|
|
icon="mdi-map-marker"
|
|
|
|
|
:save="saveData"
|
2023-03-21 12:06:30 +07:00
|
|
|
:addData="true"
|
|
|
|
|
:editOnly="false"
|
2023-03-17 17:42:45 +07:00
|
|
|
:cancel="cancelData"
|
2023-03-19 00:43:28 +07:00
|
|
|
:changeBtn="changeBtn"
|
2023-03-21 12:06:30 +07:00
|
|
|
:editData="step == 2"
|
|
|
|
|
:disable="statusEdit"
|
2023-03-16 13:52:21 +07:00
|
|
|
/>
|
|
|
|
|
<q-form ref="myform">
|
|
|
|
|
<div class="row col-12 items-center q-col-gutter-x-xs q-col-gutter-y-xs">
|
|
|
|
|
<div class="col-xs-12">
|
|
|
|
|
<q-input
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
type="textarea"
|
|
|
|
|
autogrow
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
v-model="addressData.address"
|
2023-03-16 19:57:00 +07:00
|
|
|
:rules="[(val) => !!val || `${'กรุณากรอก ที่อยู่ตามทะเบียนบ้าน'}`]"
|
|
|
|
|
:label="`${'ที่อยู่ตามทะเบียนบ้าน'}`"
|
2023-03-16 13:52:21 +07:00
|
|
|
/>
|
|
|
|
|
<!-- :filled="edit" -->
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก จังหวัด'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.provinceId"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="provinceOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'จังหวัด'}`"
|
2023-03-16 19:57:00 +07:00
|
|
|
@update:model-value="(value) => selectProvince(value, '1')"
|
2023-03-16 13:52:21 +07:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.districtId"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="districtOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'เขต / อำเภอ'}`"
|
2023-03-16 19:57:00 +07:00
|
|
|
@update:model-value="(value) => selectDistrict(value, '1')"
|
2023-03-16 13:52:21 +07:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก ตำบล / แขวง'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.subdistrictId"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="subdistrictOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'ตำบล / แขวง'}`"
|
2023-03-16 19:57:00 +07:00
|
|
|
@update:model-value="(value) => selectSubDistrict(value, '1')"
|
2023-03-16 13:52:21 +07:00
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3">
|
|
|
|
|
<q-input
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
readonly
|
|
|
|
|
borderless
|
2023-03-16 19:57:00 +07:00
|
|
|
v-model="addressData.code"
|
|
|
|
|
:style="!edit ? '' : 'padding:0 12px;'"
|
|
|
|
|
:label="`${'รหัสไปรษณีย์'}`"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-12 q-pt-lg"><q-separator /></div>
|
|
|
|
|
<div class="col-xs-12 q-gutter-sm items-center flex q-my-sm">
|
|
|
|
|
<label class="text-bold">ที่อยู่ปัจจุบันตรงกับที่อยู่ตามทะเบียนบ้าน</label>
|
|
|
|
|
<q-radio
|
|
|
|
|
v-model="addressData.same"
|
|
|
|
|
checked-icon="task_alt"
|
|
|
|
|
unchecked-icon="panorama_fish_eye"
|
|
|
|
|
val="1"
|
|
|
|
|
label="ใช่"
|
|
|
|
|
dense
|
|
|
|
|
:disable="!edit"
|
|
|
|
|
/>
|
|
|
|
|
<q-radio
|
|
|
|
|
v-model="addressData.same"
|
|
|
|
|
checked-icon="task_alt"
|
|
|
|
|
unchecked-icon="panorama_fish_eye"
|
|
|
|
|
val="0"
|
|
|
|
|
label="ไม่"
|
|
|
|
|
dense
|
|
|
|
|
:disable="!edit"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="col-xs-12" v-if="addressData.same == '0'">
|
|
|
|
|
<q-input
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
type="textarea"
|
|
|
|
|
autogrow
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
v-model="addressData.addressC"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณากรอก ที่อยู่ปัจจุบัน'}`]"
|
|
|
|
|
:label="`${'ที่อยู่ปัจจุบัน'}`"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3" v-if="addressData.same == '0'">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก จังหวัด'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.provinceIdC"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="provinceOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'จังหวัด'}`"
|
|
|
|
|
@update:model-value="(value) => selectProvince(value, '2')"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3" v-if="addressData.same == '0'">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก เขต / อำเภอ'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.districtIdC"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="districtCOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'เขต / อำเภอ'}`"
|
|
|
|
|
@update:model-value="(value) => selectDistrict(value, '2')"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3" v-if="addressData.same == '0'">
|
|
|
|
|
<q-select
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
:readonly="!edit"
|
|
|
|
|
:borderless="!edit"
|
|
|
|
|
:rules="[(val) => !!val || `${'กรุณาเลือก ตำบล / แขวง'}`]"
|
|
|
|
|
:outlined="edit"
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
v-model="addressData.subdistrictIdC"
|
|
|
|
|
emit-value
|
|
|
|
|
map-options
|
|
|
|
|
option-label="name"
|
|
|
|
|
:options="subdistrictCOptions"
|
|
|
|
|
option-value="id"
|
|
|
|
|
:label="`${'ตำบล / แขวง'}`"
|
|
|
|
|
@update:model-value="(value) => selectSubDistrict(value, '2')"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-xs-6 col-sm-3 col-md-3" v-if="addressData.same == '0'">
|
|
|
|
|
<q-input
|
|
|
|
|
:class="getClass(edit)"
|
|
|
|
|
hide-bottom-space
|
|
|
|
|
dense
|
|
|
|
|
lazy-rules
|
|
|
|
|
readonly
|
|
|
|
|
borderless
|
|
|
|
|
v-model="addressData.codeC"
|
2023-03-16 13:52:21 +07:00
|
|
|
:style="!edit ? '' : 'padding:0 12px;'"
|
|
|
|
|
:label="`${'รหัสไปรษณีย์'}`"
|
|
|
|
|
/>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</q-form>
|
|
|
|
|
</q-card>
|
2023-03-22 00:25:55 +07:00
|
|
|
<q-dialog :model-value="modalConsend" persistent>
|
|
|
|
|
<q-card style="min-width: 800px">
|
|
|
|
|
<Conference :ok="consendOk" :close="consenClose" />
|
|
|
|
|
</q-card>
|
|
|
|
|
</q-dialog>
|
2023-03-16 13:52:21 +07:00
|
|
|
</template>
|
|
|
|
|
<script setup lang="ts">
|
2023-03-17 17:42:45 +07:00
|
|
|
import { ref, onMounted, watch } from 'vue'
|
2023-03-16 19:57:00 +07:00
|
|
|
import { useCounterMixin } from '@/stores/mixin'
|
2023-03-16 13:52:21 +07:00
|
|
|
|
|
|
|
|
import http from '@/plugins/http'
|
|
|
|
|
import config from '@/app.config'
|
|
|
|
|
import type { Address, DataOption, zipCodeOption } from '@/modules/01_exam/interface/index/Main'
|
|
|
|
|
import { defaultAddress } from '@/modules/01_exam/interface/index/Main'
|
|
|
|
|
import HeaderTop from '@/components/top.vue'
|
2023-03-22 00:25:55 +07:00
|
|
|
import Conference from '@/modules/01_exam/components/Conference.vue'
|
|
|
|
|
import { useExamDataStore } from '@/modules/01_exam/store'
|
2023-03-16 13:52:21 +07:00
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const mixin = useCounterMixin()
|
2023-03-22 00:25:55 +07:00
|
|
|
const store = useExamDataStore()
|
2023-03-16 19:57:00 +07:00
|
|
|
const { date2Thai, calAge } = mixin
|
|
|
|
|
|
2023-03-16 13:52:21 +07:00
|
|
|
const edit = ref<boolean>(false)
|
|
|
|
|
const addressData = ref<Address>(defaultAddress)
|
|
|
|
|
const myform = ref<any>()
|
|
|
|
|
const codep = ref<string>('')
|
2023-03-16 19:57:00 +07:00
|
|
|
const codec = ref<string>('')
|
2023-03-22 00:25:55 +07:00
|
|
|
const modalConsend = ref<boolean>(false)
|
2023-03-16 13:52:21 +07:00
|
|
|
|
|
|
|
|
const provinceOptions = ref<DataOption[]>([])
|
|
|
|
|
const districtOptions = ref<DataOption[]>([])
|
2023-03-16 19:57:00 +07:00
|
|
|
const districtCOptions = ref<DataOption[]>([])
|
2023-03-16 13:52:21 +07:00
|
|
|
const subdistrictOptions = ref<zipCodeOption[]>([])
|
2023-03-16 19:57:00 +07:00
|
|
|
const subdistrictCOptions = ref<zipCodeOption[]>([])
|
2023-03-16 13:52:21 +07:00
|
|
|
|
2023-03-17 17:42:45 +07:00
|
|
|
const props = defineProps({
|
|
|
|
|
statusEdit: {
|
|
|
|
|
type: Boolean,
|
|
|
|
|
required: true
|
2023-03-19 00:43:28 +07:00
|
|
|
},
|
|
|
|
|
notiNoEdit: {
|
|
|
|
|
type: Function,
|
|
|
|
|
default: () => console.log('not function')
|
|
|
|
|
},
|
|
|
|
|
step: {
|
|
|
|
|
type: Number,
|
|
|
|
|
required: true
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
2023-03-17 17:42:45 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const emit = defineEmits(['update:statusEdit'])
|
|
|
|
|
|
2023-03-16 13:52:21 +07:00
|
|
|
onMounted(() => {
|
2023-03-17 17:42:45 +07:00
|
|
|
// fetchProvince()
|
|
|
|
|
// fetchDistrict(addressData.value.provinceId, '1')
|
|
|
|
|
// fetchDistrict(addressData.value.provinceIdC, '2')
|
2023-03-16 13:52:21 +07:00
|
|
|
})
|
|
|
|
|
|
|
|
|
|
const saveData = async () => {
|
2023-03-22 00:25:55 +07:00
|
|
|
if (store.consend == true) {
|
|
|
|
|
edit.value = false
|
|
|
|
|
emit('update:statusEdit', false)
|
|
|
|
|
await myform.value.validate().then(async (success: boolean) => {
|
|
|
|
|
if (success) {
|
|
|
|
|
} else {
|
|
|
|
|
}
|
|
|
|
|
})
|
|
|
|
|
} else {
|
|
|
|
|
modalConsend.value = true
|
|
|
|
|
}
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
2023-03-19 00:43:28 +07:00
|
|
|
const changeBtn = async () => {
|
|
|
|
|
if (edit.value == true) {
|
|
|
|
|
if (props.statusEdit === true) {
|
|
|
|
|
edit.value = false
|
|
|
|
|
props.notiNoEdit()
|
|
|
|
|
} else {
|
|
|
|
|
emit('update:statusEdit', true)
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
emit('update:statusEdit', false)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const selectProvince = (e: string, name: string) => {
|
|
|
|
|
if (name == '1') {
|
|
|
|
|
addressData.value.districtId = ''
|
|
|
|
|
addressData.value.subdistrictId = ''
|
|
|
|
|
codep.value = ''
|
|
|
|
|
} else {
|
|
|
|
|
addressData.value.districtIdC = ''
|
|
|
|
|
addressData.value.subdistrictIdC = ''
|
|
|
|
|
codec.value = ''
|
|
|
|
|
}
|
2023-03-16 13:52:21 +07:00
|
|
|
|
|
|
|
|
myform.value.resetValidation()
|
2023-03-16 19:57:00 +07:00
|
|
|
fetchDistrict(e, name)
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const selectDistrict = (e: string, name: string) => {
|
|
|
|
|
if (name == '1') {
|
|
|
|
|
addressData.value.subdistrictId = ''
|
|
|
|
|
codep.value = ''
|
|
|
|
|
} else {
|
|
|
|
|
addressData.value.subdistrictIdC = ''
|
|
|
|
|
codec.value = ''
|
|
|
|
|
}
|
2023-03-16 13:52:21 +07:00
|
|
|
|
|
|
|
|
myform.value.resetValidation()
|
2023-03-16 19:57:00 +07:00
|
|
|
fetchSubDistrict(e, name)
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const selectSubDistrict = (e: string, name: string) => {
|
|
|
|
|
if (name == '1') {
|
|
|
|
|
const findcode = subdistrictOptions.value.filter((r) => r.id == e)
|
|
|
|
|
const namecode = findcode.length > 0 ? findcode[0].zipCode : ''
|
|
|
|
|
codep.value = namecode
|
|
|
|
|
} else {
|
|
|
|
|
const findcode = subdistrictCOptions.value.filter((r) => r.id == e)
|
|
|
|
|
const namecode = findcode.length > 0 ? findcode[0].zipCode : ''
|
|
|
|
|
codec.value = namecode
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// myform.value.resetValidation();
|
|
|
|
|
// fetchSubDistrict(e, name);
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const fetchProvince = async () => {
|
2023-03-19 00:59:27 +07:00
|
|
|
// // loader.value = true;
|
|
|
|
|
// await http
|
|
|
|
|
// .get(config.API.province)
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// const data = res.data.result
|
|
|
|
|
// let option: DataOption[] = []
|
|
|
|
|
// // console.log(data);
|
|
|
|
|
// data.map((r: any) => {
|
|
|
|
|
// option.push({ id: r.id.toString(), name: r.name.toString() })
|
|
|
|
|
// })
|
|
|
|
|
// provinceOptions.value = option
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e: any) => {})
|
|
|
|
|
// .finally(() => {
|
|
|
|
|
// // loader.value = false;
|
|
|
|
|
// })
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const fetchDistrict = async (id: string, position: string) => {
|
2023-03-19 00:59:27 +07:00
|
|
|
// // loader.value = true;
|
|
|
|
|
// await http
|
|
|
|
|
// .get(config.API.listDistrict(id))
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// const data = res.data.result
|
|
|
|
|
// let option: DataOption[] = []
|
|
|
|
|
// // console.log(data);
|
|
|
|
|
// data.map((r: any) => {
|
|
|
|
|
// option.push({ id: r.id.toString(), name: r.name.toString() })
|
|
|
|
|
// })
|
|
|
|
|
// if (position == '1') {
|
|
|
|
|
// districtOptions.value = option
|
|
|
|
|
// } else {
|
|
|
|
|
// districtCOptions.value = option
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e: any) => {})
|
|
|
|
|
// .finally(() => {
|
|
|
|
|
// // loader.value = false;
|
|
|
|
|
// })
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
|
|
|
|
|
2023-03-16 19:57:00 +07:00
|
|
|
const fetchSubDistrict = async (id: string, position: string) => {
|
2023-03-19 00:59:27 +07:00
|
|
|
// // loader.value = true;
|
|
|
|
|
// await http
|
|
|
|
|
// .get(config.API.listSubDistrict(id))
|
|
|
|
|
// .then((res) => {
|
|
|
|
|
// const data = res.data.result
|
|
|
|
|
// let option: zipCodeOption[] = []
|
|
|
|
|
// // console.log(res);
|
|
|
|
|
// data.map((r: any) => {
|
|
|
|
|
// option.push({
|
|
|
|
|
// id: r.id.toString(),
|
|
|
|
|
// name: r.name.toString(),
|
|
|
|
|
// zipCode: r.zipCode.toString()
|
|
|
|
|
// })
|
|
|
|
|
// })
|
|
|
|
|
// if (position == '1') {
|
|
|
|
|
// subdistrictOptions.value = option
|
|
|
|
|
// } else {
|
|
|
|
|
// subdistrictCOptions.value = option
|
|
|
|
|
// }
|
|
|
|
|
// })
|
|
|
|
|
// .catch((e: any) => {})
|
|
|
|
|
// .finally(() => {
|
|
|
|
|
// // loader.value = false;
|
|
|
|
|
// })
|
2023-03-16 13:52:21 +07:00
|
|
|
}
|
2023-03-17 17:42:45 +07:00
|
|
|
|
2023-03-22 00:25:55 +07:00
|
|
|
const consenClose = () => {
|
|
|
|
|
modalConsend.value = false
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const consendOk = () => {
|
|
|
|
|
modalConsend.value = false
|
|
|
|
|
store.consend = true
|
|
|
|
|
saveData()
|
|
|
|
|
}
|
|
|
|
|
|
2023-03-17 17:42:45 +07:00
|
|
|
const cancelData = () => {}
|
|
|
|
|
|
|
|
|
|
const getClass = (val: boolean) => {
|
|
|
|
|
return {
|
|
|
|
|
'full-width inputgreen cursor-pointer': val,
|
|
|
|
|
'full-width cursor-pointer': !val
|
|
|
|
|
}
|
|
|
|
|
}
|
2023-03-16 13:52:21 +07:00
|
|
|
</script>
|