Browse Source

地图修复

pre-production
马远东 1 year ago
parent
commit
35dd8cb6fc
  1. 290
      src/views/distribution/reservation/atlas.vue
  2. 100
      src/views/distribution/reservation/reservation.vue
  3. 9
      src/views/distribution/signfor/distributionSignforedt.vue
  4. 43
      src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

290
src/views/distribution/reservation/atlas.vue

@ -11,15 +11,21 @@
<el-checkbox
v-for="item in datalists"
v-model="item.isck"
:label="`${item.content}--时间:${item.time}--距离:${item.distance}公里(${
item.items.reservationNum + item.items.reservationStockListNum
:label="`${item.warehouseName}-- ${item.consignee}--${item.deliveryAddress}--时间:${
item.time
}--距离:${item.distance}公里(${
item.reservationNum + item.reservationStockListNum
})`"
size="large"
@change="ListChange"
/>
</div>
</el-scrollbar>
<span class="txbxSpan">总条数:{{CheckthMax.length}}&emsp;&emsp;地址正确总条数:{{datalists.length}}&emsp;&emsp;<span v-if="Checkthebox.length"> 当前勾选条数:{{Checkthebox.length}} </span></span>
<span class="txbxSpan"
>总条数:{{ CheckthMax.length }}&emsp;&emsp;<span v-if="Checkthebox.length">
当前勾选条数:{{ Checkthebox.length }}
</span></span
>
</div>
</div>
<div style="display: flex; align-items: center; justify-content: center">
@ -66,11 +72,8 @@ watchEffect(() => {
details.item = router.currentRoute.value.query.id;
if (!details.item) return;
getReservationAddr(details.item).then(res => {
console.log(res.data.data, '参数接受的');
CheckthMax.value = res.data.data; //
const data = res.data.data;
details.reservationData = res.data.data;
details.mapLoc.remove(details.markersarr);
details.drivingarrs.map(item => {
@ -81,7 +84,6 @@ watchEffect(() => {
details.drivingarrs = [];
// details.datalists = [];
init(res.data.data);
});
});
function initmap() {
@ -92,15 +94,25 @@ function initmap() {
center: [104.293242, 30.582939], //
zooms: [3, 16], // 3-20
});
});
}
function checkgoto() {
function checkgoto() {
let ids = [];
details.datalists.map(item => {
console.log('item>>>>>>>>>>>>>>', item);
if (item.isck) {
ids.push(item.items.id);
ids.push(item.id);
}
});
console.log('ids>>>>>>>>>>>', ids);
@ -117,135 +129,6 @@ function checkgoto() {
});
useStores.commit('DEL_TAG_CURRENT');
}
// async function init(data) {
// if (details.mapLoc) {
// await details.mapLoc.clearMap(); //
// // maplabel()
// let geocodess = [];
// var geocoder = new AMap.Geocoder({});
// data.map(async (item, index) => {
// if (!item.jingdu || !item.weidu) {
// return ElMessage.warning('');
// }
// var marker = new AMap.Marker({
// map: details.mapLoc,
// position: [item.jingdu, item.weidu],
// icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
// anchor: 'bottom-center',
// offset: new AMap.Pixel(0, 0),
// });
// await marker.setMap(details.mapLoc);
// await marker.setLabel({
// offset: new AMap.Pixel(0, -5), //
// content: `<div class='info'>${item.warehouseName}</div>`, //
// direction: 'top', //
// });
// // details.markersarr=[]//
// details.markersarr.push(marker);
// await geocoder.getLocation(item.deliveryAddress, (status, result) => {
// console.log(status,'status');
// console.log(result,'result');
// if (status == 'complete' && result.info == 'OK') {
// // result
// details.mapLoc.setCenter([
// result.geocodes[0].location.lng,
// result.geocodes[0].location.lat,
// ]);
// geocodess.push({
// pontion: result.geocodes[0].location,
// content: item.consignee + '--' + item.deliveryAddress + '' + '--' + item.deliveryPhone,
// items: item,
// });
// // if (index + 1 == data.length) {
// // console.log(geocodess,'geocodess');
// // maker(geocodess);
// // Driving(geocodess);
// // }
// //
// console.log(geocodess,'geocodess');
// maker(geocodess);
// Driving(geocodess);
// }
// });
// });
// }
// }
// async function init(data) {
// //
// if (!details.mapLoc) {
// console.warn('No map object available.');
// return;
// }
// await details.mapLoc.clearMap(); //
// details.markersarr = []; //
// const geocoder = new AMap.Geocoder({});
// let geocodess = [];
// // 使 Promise.all
// const geocodeResults = await Promise.all(data.map(item => geocodeItem(item, geocoder)));
// //
// geocodess = geocodeResults.filter(result => result !== null);
// //
// if (geocodess.length > 0) {
// //
// const firstLocation = geocodess[0].pontion;
// details.mapLoc.setCenter([firstLocation.lng, firstLocation.lat]);
// //
// geocodess.forEach(({ pontion, content, items }) => {
// const marker = createMarker(pontion, items, details.mapLoc);
// details.markersarr.push(marker); //
// });
// // makerDrivingmarkers
// maker(geocodess); //
// Driving(geocodess); //
// }
// }
async function init(data) {
//
if (!details.mapLoc) {
console.warn('No map object available.');
Dtloading.value = false; //
return;
}
await details.mapLoc.clearMap(); //
details.markersarr = []; //
const geocoder = new AMap.Geocoder({});
let geocodess = [];
// 使 Promise.all
const geocodeResults = await Promise.all(data.map(item => geocodeItem(item, geocoder)));
//
geocodess = geocodeResults.filter(result => result !== null);
if (geocodess.length > 0) {
const firstLocation = geocodess[0].pontion;
details.mapLoc.setCenter([firstLocation.lng, firstLocation.lat]);
geocodess.forEach(({ pontion, content, items }) => {
const marker = createMarker(pontion, items, details.mapLoc);
details.markersarr.push(marker);
});
maker(geocodess); //
await Driving(geocodess); // 线 await 线
}
Dtloading.value = false; //
}
//
function createMarker(location, item, mapLoc) {
@ -254,117 +137,101 @@ function createMarker(location, item, mapLoc) {
position: [location.lng, location.lat],
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
offset: new AMap.Pixel(0, 0),
});
marker.setLabel({
offset: new AMap.Pixel(0, 0),
content: `<div class='info'>${item.warehouseName}</div>`,
direction: 'top',
offset: new AMap.Pixel(0, -5),
});
return marker;
}
// null
async function geocodeItem(item, geocoder) {
const address = item.deliveryAddress ? item.deliveryAddress : '北京市';
try {
const response = await new Promise((resolve, reject) => {
geocoder.getLocation(address, (status, response) => {
if (status === 'complete' && response.info === 'OK') {
resolve(response);
} else {
console.log(response, '错误的地址已经切换默认地址');
// 使
geocoder.getLocation('北京市', (defaultStatus, defaultResponse) => {
if (defaultStatus === 'complete' && defaultResponse.info === 'OK') {
resolve(defaultResponse); //
} else {
resolve(null); // null
}
});
//
async function init(data) {
//
if (!details.mapLoc) {
Dtloading.value = false;
return;
}
});
});
Dtloading.value = false;
await details.mapLoc.clearMap();//
details.markersarr = [];
return {
pontion: response.geocodes[0].location,
content: `${item.consignee}--${item.deliveryAddress}--${item.deliveryPhone}`,
items: item,
};
} catch (error) {
console.warn(`Geocode failed for address: ${address} with error:`, error);
return null;
}
maker(data); //
Driving(data); // 线
}
//
function maker(geocodess) {
// 使 forEach map
geocodess.forEach(item => {
// item.pontion
if (item.pontion) {
console.log(item, 'item=====');
function maker(data) {
data.forEach(item => {
const location = item.mapInfo || { lng: item.jingdu, lat: item.weidu };
const marker = new AMap.Marker({
map: details.mapLoc,
position: [item.pontion.lng, item.pontion.lat],
position: [location.lng, location.lat],
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
offset: new AMap.Pixel(0, 0),
offset: new AMap.Pixel(0, -5),
});
// AMap APIsetMapMarkermap
// marker.setMap(details.mapLoc);
marker.setLabel({
offset: new AMap.Pixel(0, -5), //
content: `<div class='info'>${item.content}</div>`, //
direction: 'top', //
offset: new AMap.Pixel(0, -5),
content: `<div class='info'>${item.consignee}--${item.deliveryAddress}--${item.deliveryPhone}</div>`, //
direction: 'top',
});
details.markersarr.push(marker);
}
});
Dtloading.value = false; //
Dtloading.value = false;
}
//
// seenIds
const seenIds = {};
function Driving(geocodess) {
// 线
geocodess.map(item => {
// 线
function Driving(data) {
data.forEach(item => {
const startLocation = { lng: item.jingdu, lat: item.weidu };
const endLocation = item.mapInfo || startLocation;
var driving = new AMap.Driving({
map: details.mapLoc,
hideMarkers: true,
});
driving.search(
new AMap.LngLat(item.items.jingdu, item.items.weidu),
new AMap.LngLat(item.pontion.lng, item.pontion.lat),
new AMap.LngLat(startLocation.lng, startLocation.lat),
new AMap.LngLat(endLocation.lng, endLocation.lat),
function (status, result) {
console.log(status);
if (status === 'complete') {
// console.log(result.routes[0]);
item.time = formatSeconds(result.routes[0].time);
item.distance = result.routes[0].distance / 1000;
item.isck = true;
// item.distance=result.routes[0].distance/1000
// push seenIds
if (!seenIds.hasOwnProperty(item.items.id)) {
console.log(item, 'item参数===');
if (!seenIds.hasOwnProperty(item.id)) {
item.time = formatSeconds(result.routes[0].time);
item.distance = result.routes[0].distance / 1000;
item.isck = true;
details.datalists.push(item);
seenIds[item.items.id] = true; // ID
seenIds[item.id] = true; // ID
}
} else {
console.log('获取驾车数据失败:' + result);
}
}
);
details.drivingarrs.push(driving);
});
let $_a = {lng:data[0].jingdu,lat: data[0].weidu};
console.log( $_a,' $_a=data');
const firstLocation ={ lng: $_a.lng, lat: $_a.lat };
console.log(firstLocation,'firstLocation');
details.mapLoc.setCenter([firstLocation.lng, firstLocation.lat]);
var marker = new AMap.Marker({
map: details.mapLoc,
position: [firstLocation.lng, firstLocation.lat],
icon: '//a.amap.com/jsapi_demos/static/demo-center/icons/poi-marker-default.png',
anchor: 'bottom-center',
offset: new AMap.Pixel(0, -5),
});
marker.setLabel({
offset: new AMap.Pixel(0, -5),
content: `${data[0].storeName}`,
direction: 'top',
});
}
//
@ -374,7 +241,7 @@ function formatSeconds(seconds) {
const minutes = Math.floor((seconds % 3600) / 60);
//
let result = hours > 0 ? `${hours.toString().padStart(2, '0')}小时` : "";
let result = hours > 0 ? `${hours.toString().padStart(2, '0')}小时` : '';
result += `${minutes.toString().padStart(2, '0')}分钟`;
return result;
@ -385,18 +252,15 @@ function back() {
}
const { datalists } = toRefs(details);
const ListChange = val => {
Dtloading.value=true
Dtloading.value = true;
setTimeout(() => {
console.log(details.datalists, '最新的数据');
let data = details.datalists.filter(item => item.isck === true).map(item => item.items);
let data = details.datalists.filter(item => item.isck === true);
init(data);
Checkthebox.value = data; //
console.log(details.datalists, '数据');
},0)
}, 0);
};
</script>
<style lang="scss" scoped>

100
src/views/distribution/reservation/reservation.vue

@ -314,6 +314,19 @@
<el-button type="primary" @click="cancelReservationConfirm(row)"> </el-button>
</div>
</el-dialog>
<el-dialog v-model="dialogatlas" title="提示" width="500">
<span>是否需要展开地图进行线路查看</span>
<div>
<el-checkbox v-model="checkedMap" label="是否记住本次选择?" size="large" />
</div>
<template #footer>
<div class="dialog-footer">
<el-button @click="mapClick('no')">取消</el-button>
<el-button type="primary" @click="mapClick('yes')"> 确定 </el-button>
</div>
</template>
</el-dialog>
</template>
<script>
@ -334,6 +347,7 @@ import { getDictionaryBiz } from '@/api/system/dict';
import { addAssign, getListUser } from '@/api/distribution/distributionStockup';
import { getPostList } from '@/api/system/post';
import { getListOwn } from '@/api/system/user';
import { ElMessage, ElMessageBox } from 'element-plus';
import { getListTeam } from '@/api/basicdata/basicdataTeamGroup';
import { getStockUpArea, stockUp } from '@/api/basicdata/basicdataGoodsArea';
import dayjs from 'dayjs';
@ -347,6 +361,9 @@ export default {
dialogVisible: false,
// html
html: '',
dialogatlas: false,
checkedMap: false,
MapState: false,
columnList: [
{
prop: '',
@ -1330,7 +1347,6 @@ export default {
}
});
ids = ids.join(',');
this.$router.push({
path: '/distribution/turndelivery/deliveryMarket',
query: {
@ -1338,16 +1354,84 @@ export default {
name: '市配计划',
},
});
return
const data = JSON.parse(localStorage.getItem('MapState'));
console.log(data, '选择地图');
if (data) {
let ids = [];
this.selectionList.forEach(item => {
if (item.id) {
ids.push(item.id);
}
});
ids = ids.join(',');
if (data.checkedMap && data.MapState) {
this.$router.push({
path: '/distribution/reservation/atlas',
query: {
id: ids,
type: '1',
},
});
} else {
this.$router.push({
path: '/distribution/turndelivery/deliveryMarket',
query: {
id: ids,
name: '市配计划',
},
});
}
} else {
//
this.dialogatlas = true; //
}
// this.$router.push({
// path: '/distribution/reservation/atlas',
// query: {
// id: ids,
// type: '1',
// },
// });
// console.log(">>>>>>>>>>",ids);
},
//
mapClick(val) {
if (this.checkedMap) {
//
if (val == 'no') {
//
this.MapState = false;
} else {
this.MapState = true;
}
let MapState = {
MapState: this.MapState,
checkedMap: this.checkedMap,
};
localStorage.setItem('MapState', JSON.stringify(MapState));
}
let ids = [];
this.selectionList.forEach(item => {
if (item.id) {
ids.push(item.id);
}
});
ids = ids.join(',');
if (val === 'no') {
this.$router.push({
path: '/distribution/turndelivery/deliveryMarket',
query: {
id: ids,
name: '市配计划',
},
});
} else {
this.$router.push({
path: '/distribution/reservation/atlas',
query: {
id: ids,
type: '1',
},
});
}
this.dialogatlas = false; //
},
//
handleStockUp() {
this.info = {};

9
src/views/distribution/signfor/distributionSignforedt.vue

@ -2166,8 +2166,15 @@ const tabClick = val => {
//
const Signforexport = () => {
if(SignforMenu.value.label == '库存品列表'){
ElMessage({
message: '库存品导出维护中',
type: 'warning',
})
return
}
console.log(SignforMenu.value);
ElMessageBox.confirm(`是否导出${SignforMenu.value.label}`, 'Warning', {
ElMessageBox.confirm(`是否导出${SignforMenu.value.label}`, '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning',

43
src/views/warehouse/warehousesignedorder/distributionStockArticle.vue

@ -213,13 +213,10 @@ const showdrawer = _flag => {
const inputsc = (index, row) => {
details.query[row.prop] = index;
processRowProperty(index, row, details);
test(details.query);
};
//
const test=(val)=>{
}
/** 表格表头时间选择 */
const timesc = (index, row) => {
console.log(index, row);
@ -248,6 +245,7 @@ const selectionChange = list => {
//
const searchChange = () => {
details.search = false; //
getrain();
};
//
const sizeChange = val => {
@ -259,9 +257,9 @@ const currentChange = val => {
};
//
const searchChangeS = () => {
details.columnList.forEach(item => {
item.values = '';
});
// details.columnList.forEach(item => {
// item.values = '';
// });
details.search = false; //
};
//
@ -283,11 +281,42 @@ function updateDictionary(targetArray, dictionaryType) {
});
});
}
//
// const onLoad = () => {
// warehouseList.value = [];
// columnList.find(res => res.label == '').checkarr = [];
// columnList.find(res => res.label == '').checkarr = DeliveryTypeList.value;
// columnList.find(res => res.label == '').checkarr = [];
// columnList.find(res => res.label == '').checkarr = DeliverygenericList.value;
// columnList.find(res => res.label == '').checkarr = [];
// columnList.find(res => res.label == '').checkarr = warehouseList.value;
// console.log(columnList, 'columnList');
// //
// $_getMyWarehouseList().then(res => {
// console.log(res, '');
// if (res.data.data.length)
// res.data.data.forEach(item => {
// warehouseList.value.push({
// value: item.name,
// label: item.name,
// });
// });
// });
// };
// onLoad();
//
const getrain=()=>{
let data={
current:details.page.currentPage,
size:details.page.pageSize
size:details.page.pageSize,
...details.query,
}
details.loadingObj.list=true
$_signforList(data).then(res=>{

Loading…
Cancel
Save