| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382 |
- <script setup lang="tsx">
- import { Form, FormSchema } from '@/components/Form'
- import { useForm } from '@/hooks/web/useForm'
- import { PropType, watch, ref, onMounted, unref } from 'vue'
- import { useValidator } from '@/hooks/web/useValidator'
- import { cloneDeep } from 'lodash-es'
- import { ElInputTag, ElAutocomplete } from 'element-plus'
- import { getMapSearch } from '@/api/system/admin'
- import { UpImgButtom } from '@/components/UpFile'
- import { mapAddressData } from '@/api/system/admin/types'
- import { getConfigKey } from '@/api/system/admin'
- import { UserButtom } from '@/components/UserList'
- const { required, phone } = useValidator()
- const mapKey = ref('')
- onMounted(async () => {
- const res = await getConfigKey('tengxun_map_key')
- if (res) {
- mapKey.value = res.data.tengxun_map_key
- }
- })
- const props = defineProps({
- currentRow: {
- type: Object as PropType<any>,
- default: () => null
- }
- })
- const formSchema = ref<FormSchema[]>([
- {
- field: 'uid',
- label: '用户',
- component: 'CheckboxGroup',
- formItemProps: {
- slots: {
- default: (data) => {
- return (
- <>
- <UserButtom
- v-model={data.uid}
- onChangeUser={(res) => {
- checkedUser(res)
- }}
- ></UserButtom>
- </>
- )
- }
- }
- }
- },
- {
- field: 'name',
- label: '姓名',
- component: 'Input',
- componentProps: {
- placeholder: '请输入姓名'
- }
- },
- {
- field: 'avatar',
- label: '头像',
- component: 'CheckboxGroup',
- componentProps: {
- placeholder: '选择头像'
- },
- formItemProps: {
- slots: {
- default: (data) => {
- return (
- <>
- <UpImgButtom v-model={data.avatar}></UpImgButtom>
- </>
- )
- }
- }
- }
- },
- {
- field: 'phone',
- label: '手机号',
- component: 'Input',
- componentProps: {
- type: 'number',
- placeholder: '请输入手机号'
- }
- },
- {
- field: 'gender',
- label: '性别',
- component: 'Select',
- value: 0,
- componentProps: {
- placeholder: '请选择性别',
- options: [
- {
- label: '保密',
- value: 0
- },
- {
- label: '男',
- value: 1
- },
- {
- label: '女',
- value: 2
- }
- ]
- }
- },
- {
- field: 'birth_day_time',
- label: '出生日期',
- component: 'DatePicker'
- },
- {
- field: 'start_job_year',
- label: '就业年份',
- component: 'Input',
- componentProps: {
- placeholder: '例子:2014'
- }
- },
- {
- field: 'tag_list',
- label: '标签',
- colProps: {
- span: 24
- },
- component: 'CheckboxGroup',
- formItemProps: {
- slots: {
- default: (data) => {
- return (
- <>
- <ElInputTag
- v-model={data.tag_list}
- tagEffect="light"
- tagType="primary"
- clearable
- ></ElInputTag>
- </>
- )
- }
- }
- }
- },
- {
- field: 'detail_address',
- label: '省市区地址',
- colProps: {
- span: 24
- },
- component: 'Input',
- formItemProps: {
- slots: {
- default: (data) => {
- return (
- <>
- <ElAutocomplete
- v-model={data.detail_address}
- value-key="label"
- onSelect={(val: any) => {
- selectAddress(val)
- }}
- fetch-suggestions={(val, cb) => {
- searchAddress(val, cb)
- }}
- >
- {{
- default: ({ item }) => {
- return (
- <>
- <div class="lh-none mt-10px">{item.label}</div>
- <div class="font-size-12px lh-none mt-5px pb-10px b-b-solid b-b-light b-b-1px">
- {item.address}
- </div>
- </>
- )
- }
- }}
- </ElAutocomplete>
- </>
- )
- }
- }
- }
- },
- {
- field: 'province',
- label: '省份',
- component: 'Input',
- hidden: true
- },
- {
- field: 'city',
- label: '市',
- hidden: true,
- component: 'Input'
- },
- {
- field: 'area',
- label: '区',
- hidden: true,
- component: 'Input'
- },
- {
- field: 'longitude',
- label: '经度',
- hidden: true,
- component: 'Input'
- },
- {
- field: 'latitude',
- label: '纬度',
- hidden: true,
- component: 'Input'
- },
- {
- field: 'id',
- hidden: true,
- component: 'Input'
- }
- ])
- const rules = ref({
- uid: [required('请选择用户')],
- avatar: [required('请上传头像')],
- phone: [required('请填写手机号'), phone()],
- birth_day_time: [required('请选择出生日期')],
- detail_address: [
- {
- required: true,
- validator: (_, val, callback) => {
- if (!actionAddress.value || !val) {
- callback(new Error('请选择地址'))
- } else {
- callback()
- }
- }
- }
- ],
- name: [required('请填写等级名称')]
- })
- const { formRegister, formMethods } = useForm()
- const { setValues, getFormData, getElFormExpose } = formMethods
- const submit = async () => {
- const elForm = await getElFormExpose()
- const valid = await elForm?.validate().catch((err) => {
- console.log(err)
- })
- if (valid) {
- const formData = await getFormData()
- return formData
- }
- }
- defineExpose({
- submit
- })
- const checkedUser = async (res: any) => {
- setValues({
- uid: res.uid,
- name: res.real_name,
- avatar: [res.avatar],
- birth_day_time: res.birthday,
- phone: res.phone,
- gender: res.sex
- })
- }
- const actionAddress = ref<mapAddressData>()
- const searchAddress = async (queryString: string, cb: (arg: any) => void) => {
- if (queryString) {
- const { data } = await getMapSearch({
- key: unref(mapKey),
- keyword: queryString
- })
- cb(
- data.map((item): mapAddressData => {
- return {
- adcode: item.adcode,
- label: item.title,
- address: item.address,
- lng: item.location.lng,
- lat: item.location.lat,
- province: item.province,
- city: item.city,
- district: item.district
- }
- })
- )
- }
- }
- const selectAddress = (item: mapAddressData) => {
- if (!item || !item.adcode || !item.lng || !item.lat) {
- console.error('Invalid input item:', item)
- return
- }
- const adcodeStr = String(item.adcode).padStart(6, '0') // 确保 adcode 至少有6位
- const province = adcodeStr.slice(0, 2)
- const city = adcodeStr.slice(2, 4)
- const area = adcodeStr
- setValues({
- province: `${province}`,
- city: `${province}${city}00000000`,
- area: `${area}000000`,
- longitude: item.lng,
- latitude: item.lat
- })
- actionAddress.value = item
- center.value = {
- lng: item.lng,
- lat: item.lat
- }
- geometries.value = [{ styleId: 'marker', position: { lat: item.lat, lng: item.lng } }]
- }
- const center = ref({ lat: 28.655759, lng: 121.420808 })
- const geometries = ref([{ styleId: 'marker', position: { lat: 28.655759, lng: 121.420808 } }])
- watch(
- () => props.currentRow,
- async (value) => {
- if (!value) return
- const currentRow = cloneDeep(value)
- actionAddress.value = {
- adcode: currentRow.area,
- label: currentRow.detail_address,
- lng: currentRow.longitude,
- lat: currentRow.latitude
- }
- setValues(currentRow)
- },
- {
- deep: true,
- immediate: true
- }
- )
- </script>
- <template>
- <div class="flex flex-col">
- <Form :rules="rules" @register="formRegister" :schema="formSchema" />
- <TlbsMap
- v-if="mapKey"
- ref="map"
- :api-key="mapKey"
- :zoom="15"
- :center="center"
- :control="{
- scale: {},
- zoom: {
- position: 'topRight'
- }
- }"
- >
- <TlbsMultiMarker
- :geometries="geometries"
- :styles="{
- marker: {
- width: 20,
- height: 30,
- anchor: { x: 10, y: 30 }
- }
- }"
- />
- </TlbsMap>
- </div>
- </template>
- <style lang="less" scoped>
- :deep(.el-table__row) {
- .list {
- width: 50px;
- text-align: center;
- }
- }
- </style>
|