住宿管理

This commit is contained in:
helen 2024-12-18 11:43:13 +08:00
parent a45c85edbc
commit 36e9168098
2 changed files with 186 additions and 17 deletions

View File

@ -56,7 +56,7 @@ export interface HotelVO {
/**
*
*/
imgUrl: string;
imgUrlList?: object;
/**
*
*/
@ -108,11 +108,17 @@ export interface HotelForm extends BaseEntity {
*
*/
county?: number;
/**
*
*/
imgUrlList?: object;
/**
*
*/
address?: string;
}
export interface HotelQuery extends PageQuery {
/**
* 宿
*/

View File

@ -10,8 +10,8 @@
<el-form-item label="发布状态" prop="status">
<el-select v-model="queryParams.status" placeholder="请选择发布状态" style="width: 200px" @keyup.enter="handleQuery">
<el-option label="未发布" value="0" />
<el-option label="审核中" value="1" />
<el-option label="已发布" value="2" />
<el-option label="已发布" value="1" />
<el-option label="全部" value="" />
</el-select>
</el-form-item>
<el-form-item>
@ -47,8 +47,7 @@
<el-table-column label="联系方式" align="center" prop="number" />
<el-table-column label="状态" align="center" prop="status">
<template #default="scope">
<el-tag v-if="scope.row.status == 2" type="primary">已发布</el-tag>
<el-tag v-if="scope.row.status == 1" type="success">审核中</el-tag>
<el-tag v-if="scope.row.status == 1" type="primary">已发布</el-tag>
<el-tag v-if="scope.row.status == 0" type="info">未发布</el-tag>
</template>
</el-table-column>
@ -60,11 +59,17 @@
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-tooltip content="修改" placement="top">
<el-button v-hasPermi="['manage:hotel:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)"></el-button>
<el-tooltip v-if="scope.row.status != 1" content="编辑" placement="top">
<el-button v-hasPermi="['manage:hotel:edit']" link type="primary" @click="handleUpdate(scope.row)">编辑</el-button>
</el-tooltip>
<el-tooltip content="删除" placement="top">
<el-button v-hasPermi="['manage:hotel:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)"></el-button>
<el-tooltip v-if="scope.row.status != 1" content="删除" placement="top">
<el-button v-hasPermi="['manage:hotel:remove']" link type="primary" @click="handleDelete(scope.row)">删除</el-button>
</el-tooltip>
<el-tooltip v-if="scope.row.status == 0" content="发布" placement="top">
<el-button v-hasPermi="['manage:hotel:remove']" link type="primary" @click="handleEdit(scope.row)">发布</el-button>
</el-tooltip>
<el-tooltip v-if="scope.row.status == 1" content="撤销发布" placement="top">
<el-button v-hasPermi="['manage:hotel:remove']" link type="primary" @click="handleEdit(scope.row)">撤销发布</el-button>
</el-tooltip>
</template>
</el-table-column>
@ -81,11 +86,44 @@
<el-form-item label="联系电话" prop="number">
<el-input v-model="form.number" placeholder="请输入联系电话" style="width: 300px" />
</el-form-item>
<el-form-item label="商家图片" prop="imgUrl">
<el-input v-model="form.imgUrl" placeholder="请输入商家图片" style="width: 300px" />
<el-form-item label="商家图片">
<el-input v-model="imgUrlList.imgUrl" placeholder="请输入商家图片" style="width: 300px" />
</el-form-item>
<el-form-item label="商家地理位置" prop="address">
<el-input v-model="form.address" placeholder="请输入商家地理位置" style="width: 300px" />
<!-- <el-form-item label="商家地理位置" prop="address">-->
<!-- <el-input v-model="form.address" placeholder="请输入商家地理位置" style="width: 300px" />-->
<!-- </el-form-item>-->
<el-row>
<el-col :span="24">
<el-form-item label="地理位置" prop="introduce">
<!-- <el-input v-model="searchLocation" type="text" placeholder="请输入地址信息" clearable /> -->
<el-input
v-model="searchLocation"
placeholder="请输入地址信息"
class="input-with-select"
style="width: 300px"
@keyup.enter="debouncedSearch(searchLocation)"
>
<template #append>
<el-button :icon="Search" @click="debouncedSearch(searchLocation)" />
</template>
</el-input>
</el-form-item>
<tlbs-map
ref="map"
style="margin-left: 80px"
api-key="
6XFBZ-SAVLT-JGIX2-VOLMK-6S2H3-XUBGO"
:center="center"
:zoom="zoom"
:control="control"
@click="onClick"
>
<tlbs-multi-marker :geometries="geometries" :styles="styles" :options="options" />
</tlbs-map>
</el-col>
</el-row>
<el-form-item label="详细地址" prop="address" style="margin-top: 15px">
<el-input v-model="form.address" placeholder="输入地理位置或点击度图上的地点" disabled />
</el-form-item>
</el-form>
<template #footer>
@ -101,6 +139,9 @@
<script setup name="Hotel" lang="ts">
import { listHotel, getHotel, delHotel, addHotel, updateHotel } from '@/api/manage/hotel';
import { HotelVO, HotelQuery, HotelForm } from '@/api/manage/hotel/types';
import { Search } from '@element-plus/icons-vue';
import { debounce } from '@/utils/debounce';
import { jsonp } from 'vue-jsonp';
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
@ -130,7 +171,9 @@ const initFormData: HotelForm = {
latitude: undefined,
province: undefined,
city: undefined,
county: undefined
county: undefined,
address: undefined,
imgUrlList: undefined
};
const data = reactive<PageData<HotelForm, HotelQuery>>({
form: { ...initFormData },
@ -159,7 +202,10 @@ const data = reactive<PageData<HotelForm, HotelQuery>>({
county: [{ required: true, message: '区县编码不能为空', trigger: 'blur' }]
}
});
const imgUrlList = reactive({
imgUrl: '',
fileId: '22'
});
const { queryParams, form, rules } = toRefs(data);
/** 查询住宿列表 */
@ -214,6 +260,7 @@ const handleUpdate = async (row?: HotelVO) => {
reset();
const _id = row?.id || ids.value[0];
const res = await getHotel(_id);
res.data.regionCode= res.data?.county || res.data?.city || res.data?.province
Object.assign(form.value, res.data);
dialog.visible = true;
dialog.title = '修改住宿';
@ -224,6 +271,8 @@ const submitForm = () => {
hotelFormRef.value?.validate(async (valid: boolean) => {
if (valid) {
buttonLoading.value = true;
form.value.status = 2;
form.value.imgUrlList = imgUrlList;
if (form.value.id) {
await updateHotel(form.value).finally(() => (buttonLoading.value = false));
} else {
@ -244,7 +293,121 @@ const handleDelete = async (row?: HotelVO) => {
proxy?.$modal.msgSuccess('删除成功');
await getList();
};
// /
const handleEdit = async (row?: HotelVO) => {
const _id = row?.id || ids.value[0];
const res = await getHotel(_id);
Object.assign(form.value, res.data);
const text = row?.status != 1 ? '是否确认发布住宿编号为' : '是否撤销发布住宿编号为';
const messages = row?.status != 1 ? '发布成功' : '撤销成功';
await proxy?.$modal.confirm(text + _id + '"的数据项?').finally(() => (loading.value = false));
const template = {
...row,
status: row.status == 1 ? 0 : 1,
regionCode: row?.county || row?.city || row?.province
};
// form.value.name = row.name
await updateHotel(template).finally(() => (buttonLoading.value = false));
proxy?.$modal.msgSuccess(messages);
await getList();
};
//
const performSearch = async (text) => {
//
// await new Promise((resolve) => setTimeout(resolve, 500));
//
if (text === '') {
console.log('搜索内容为空');
} else {
console.log('搜索内容为:', text);
// API
// geocoder(text).then((result) => {
// console.log(result);
// });
jsonp(`https://apis.map.qq.com/ws/geocoder/v1/?address=${text}&key=${'6XFBZ-SAVLT-JGIX2-VOLMK-6S2H3-XUBGO'}&output=jsonp`, {}).then((data) => {
console.log(data);
if (data.status == 0) {
center.value.lat = data.result.location.lat;
center.value.lng = data.result.location.lng;
form.value.address =
data.result.address_components.province +
data.result.address_components.city +
data.result.address_components.district +
data.result.address_components.street +
data.result.address_components.street_number;
form.value.latitude = data.result.location.lat;
form.value.longitude = data.result.location.lng;
// form.value.region = data.result.ad_info.adcode; //
form.value.regionCode = data.result.ad_info.adcode; //
// form.value.province = data.result.address_components.province;
// form.value.city = data.result.address_components.city;
geometries.value = [{ styleId: 'marker', position: { lat: data.result.location.lat, lng: data.result.location.lng } }];
} else if (data.status == 348) {
//
proxy?.$modal.msgError('未查询到地点,请补充详细地址信息');
return;
}
});
}
};
//
const onClick = (e: any) => {
jsonp(
`https://apis.map.qq.com/ws/geocoder/v1/?key=${'6XFBZ-SAVLT-JGIX2-VOLMK-6S2H3-XUBGO'}&location=${e.latLng.lat},${e.latLng.lng}&output=jsonp`,
{}
).then((data) => {
if (data.status == 0) {
if (form.value) {
form.value.address =
data.result.address_component.province +
data.result.address_component.city +
data.result.address_component.district +
data.result.address_component.street +
data.result.address_component.street_number;
form.value.latitude = data.result.location.lat;
form.value.longitude = data.result.location.lng;
// form.value.province = data.result.address_component.province;
// form.value.city = data.result.address_component.city;
// form.value.region = data.result.ad_info.adcode; //
form.value.regionCode = data.result.ad_info.adcode; //
center.value.lat = data.result.location.lat;
center.value.lng = data.result.location.lng;
searchLocation.value = data.result.formatted_addresses.recommend;
geometries.value = [{ styleId: 'marker', position: { lat: data.result.location.lat, lng: data.result.location.lng } }];
}
}
});
};
const debouncedSearch = debounce(performSearch, 300); // 300
const map = ref(null);
const center = ref({ lat: form.value.latitude || 39.145902, lng: form.value.longitude || 117.17546 });
const zoom = ref(20);
const control = reactive({
scale: {},
zoom: {
position: 'topLeft'
}
});
const searchLocation = ref(''); //
const geometries = ref([{ styleId: 'marker', position: { lat: form.value.latitude || 39.145902, lng: form.value.longitude || 117.17546 } }]);
const styles = reactive({
marker: {
width: 20,
height: 30,
anchor: { x: 10, y: 30 }
}
});
const options = reactive({
minZoom: 5,
maxZoom: 20
});
//
watch(searchLocation, (newValue) => {
// debouncedSearch(newValue);
});
/** 导出按钮操作 */
const handleExport = () => {
proxy?.download(