住宿管理
This commit is contained in:
parent
a45c85edbc
commit
36e9168098
@ -56,7 +56,7 @@ export interface HotelVO {
|
|||||||
/**
|
/**
|
||||||
* 商家图片
|
* 商家图片
|
||||||
*/
|
*/
|
||||||
imgUrl: string;
|
imgUrlList?: object;
|
||||||
/**
|
/**
|
||||||
* 详细地址
|
* 详细地址
|
||||||
*/
|
*/
|
||||||
@ -108,11 +108,17 @@ export interface HotelForm extends BaseEntity {
|
|||||||
* 区县编码
|
* 区县编码
|
||||||
*/
|
*/
|
||||||
county?: number;
|
county?: number;
|
||||||
|
/**
|
||||||
|
* 商家图片
|
||||||
|
*/
|
||||||
|
imgUrlList?: object;
|
||||||
|
/**
|
||||||
|
* 商家地址
|
||||||
|
*/
|
||||||
|
address?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface HotelQuery extends PageQuery {
|
export interface HotelQuery extends PageQuery {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 住宿商家名称
|
* 住宿商家名称
|
||||||
*/
|
*/
|
||||||
|
@ -10,8 +10,8 @@
|
|||||||
<el-form-item label="发布状态" prop="status">
|
<el-form-item label="发布状态" prop="status">
|
||||||
<el-select v-model="queryParams.status" placeholder="请选择发布状态" style="width: 200px" @keyup.enter="handleQuery">
|
<el-select v-model="queryParams.status" placeholder="请选择发布状态" style="width: 200px" @keyup.enter="handleQuery">
|
||||||
<el-option label="未发布" value="0" />
|
<el-option label="未发布" value="0" />
|
||||||
<el-option label="审核中" value="1" />
|
<el-option label="已发布" value="1" />
|
||||||
<el-option label="已发布" value="2" />
|
<el-option label="全部" value="" />
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<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="number" />
|
||||||
<el-table-column label="状态" align="center" prop="status">
|
<el-table-column label="状态" align="center" prop="status">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tag v-if="scope.row.status == 2" type="primary">已发布</el-tag>
|
<el-tag v-if="scope.row.status == 1" type="primary">已发布</el-tag>
|
||||||
<el-tag v-if="scope.row.status == 1" type="success">审核中</el-tag>
|
|
||||||
<el-tag v-if="scope.row.status == 0" type="info">未发布</el-tag>
|
<el-tag v-if="scope.row.status == 0" type="info">未发布</el-tag>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -60,11 +59,17 @@
|
|||||||
</el-table-column>
|
</el-table-column>
|
||||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||||
<template #default="scope">
|
<template #default="scope">
|
||||||
<el-tooltip content="修改" placement="top">
|
<el-tooltip v-if="scope.row.status != 1" content="编辑" placement="top">
|
||||||
<el-button v-hasPermi="['manage:hotel:edit']" link type="primary" icon="Edit" @click="handleUpdate(scope.row)"></el-button>
|
<el-button v-hasPermi="['manage:hotel:edit']" link type="primary" @click="handleUpdate(scope.row)">编辑</el-button>
|
||||||
</el-tooltip>
|
</el-tooltip>
|
||||||
<el-tooltip content="删除" placement="top">
|
<el-tooltip v-if="scope.row.status != 1" content="删除" placement="top">
|
||||||
<el-button v-hasPermi="['manage:hotel:remove']" link type="primary" icon="Delete" @click="handleDelete(scope.row)"></el-button>
|
<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>
|
</el-tooltip>
|
||||||
</template>
|
</template>
|
||||||
</el-table-column>
|
</el-table-column>
|
||||||
@ -81,11 +86,44 @@
|
|||||||
<el-form-item label="联系电话" prop="number">
|
<el-form-item label="联系电话" prop="number">
|
||||||
<el-input v-model="form.number" placeholder="请输入联系电话" style="width: 300px" />
|
<el-input v-model="form.number" placeholder="请输入联系电话" style="width: 300px" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="商家图片" prop="imgUrl">
|
<el-form-item label="商家图片">
|
||||||
<el-input v-model="form.imgUrl" placeholder="请输入商家图片" style="width: 300px" />
|
<el-input v-model="imgUrlList.imgUrl" placeholder="请输入商家图片" style="width: 300px" />
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<el-form-item label="商家地理位置" prop="address">
|
<!-- <el-form-item label="商家地理位置" prop="address">-->
|
||||||
<el-input v-model="form.address" placeholder="请输入商家地理位置" style="width: 300px" />
|
<!-- <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-item>
|
||||||
</el-form>
|
</el-form>
|
||||||
<template #footer>
|
<template #footer>
|
||||||
@ -101,6 +139,9 @@
|
|||||||
<script setup name="Hotel" lang="ts">
|
<script setup name="Hotel" lang="ts">
|
||||||
import { listHotel, getHotel, delHotel, addHotel, updateHotel } from '@/api/manage/hotel';
|
import { listHotel, getHotel, delHotel, addHotel, updateHotel } from '@/api/manage/hotel';
|
||||||
import { HotelVO, HotelQuery, HotelForm } from '@/api/manage/hotel/types';
|
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;
|
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||||
|
|
||||||
@ -130,7 +171,9 @@ const initFormData: HotelForm = {
|
|||||||
latitude: undefined,
|
latitude: undefined,
|
||||||
province: undefined,
|
province: undefined,
|
||||||
city: undefined,
|
city: undefined,
|
||||||
county: undefined
|
county: undefined,
|
||||||
|
address: undefined,
|
||||||
|
imgUrlList: undefined
|
||||||
};
|
};
|
||||||
const data = reactive<PageData<HotelForm, HotelQuery>>({
|
const data = reactive<PageData<HotelForm, HotelQuery>>({
|
||||||
form: { ...initFormData },
|
form: { ...initFormData },
|
||||||
@ -159,7 +202,10 @@ const data = reactive<PageData<HotelForm, HotelQuery>>({
|
|||||||
county: [{ required: true, message: '区县编码不能为空', trigger: 'blur' }]
|
county: [{ required: true, message: '区县编码不能为空', trigger: 'blur' }]
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
const imgUrlList = reactive({
|
||||||
|
imgUrl: '',
|
||||||
|
fileId: '22'
|
||||||
|
});
|
||||||
const { queryParams, form, rules } = toRefs(data);
|
const { queryParams, form, rules } = toRefs(data);
|
||||||
|
|
||||||
/** 查询住宿列表 */
|
/** 查询住宿列表 */
|
||||||
@ -214,6 +260,7 @@ const handleUpdate = async (row?: HotelVO) => {
|
|||||||
reset();
|
reset();
|
||||||
const _id = row?.id || ids.value[0];
|
const _id = row?.id || ids.value[0];
|
||||||
const res = await getHotel(_id);
|
const res = await getHotel(_id);
|
||||||
|
res.data.regionCode= res.data?.county || res.data?.city || res.data?.province
|
||||||
Object.assign(form.value, res.data);
|
Object.assign(form.value, res.data);
|
||||||
dialog.visible = true;
|
dialog.visible = true;
|
||||||
dialog.title = '修改住宿';
|
dialog.title = '修改住宿';
|
||||||
@ -224,6 +271,8 @@ const submitForm = () => {
|
|||||||
hotelFormRef.value?.validate(async (valid: boolean) => {
|
hotelFormRef.value?.validate(async (valid: boolean) => {
|
||||||
if (valid) {
|
if (valid) {
|
||||||
buttonLoading.value = true;
|
buttonLoading.value = true;
|
||||||
|
form.value.status = 2;
|
||||||
|
form.value.imgUrlList = imgUrlList;
|
||||||
if (form.value.id) {
|
if (form.value.id) {
|
||||||
await updateHotel(form.value).finally(() => (buttonLoading.value = false));
|
await updateHotel(form.value).finally(() => (buttonLoading.value = false));
|
||||||
} else {
|
} else {
|
||||||
@ -244,7 +293,121 @@ const handleDelete = async (row?: HotelVO) => {
|
|||||||
proxy?.$modal.msgSuccess('删除成功');
|
proxy?.$modal.msgSuccess('删除成功');
|
||||||
await getList();
|
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 = () => {
|
const handleExport = () => {
|
||||||
proxy?.download(
|
proxy?.download(
|
||||||
|
Loading…
Reference in New Issue
Block a user