更新
This commit is contained in:
parent
a6a14e8ebb
commit
d9fa16c70a
dc-App/pages
@ -370,7 +370,6 @@ export default {
|
||||
msgInfo() {
|
||||
if (this.msgSocket) {
|
||||
this.msgSocket.onMessage(res => {
|
||||
console.log('this.messagesList', this.messagesList[this.messagesList.length - 1])
|
||||
if (this.info.conversation == 'Translator') {
|
||||
if (this.messagesList[this.messagesList.length - 1].inputs.type != 'image') {
|
||||
this.messagesList[this.messagesList.length - 1].answer = this.messagesList[this
|
||||
@ -411,7 +410,6 @@ export default {
|
||||
this.goBottom()
|
||||
}
|
||||
}
|
||||
console.log('this.messagesList', this.messagesList)
|
||||
|
||||
|
||||
})
|
||||
@ -564,7 +562,6 @@ export default {
|
||||
'type': '',
|
||||
'filePath': inputData.filePath,
|
||||
};
|
||||
console.log(msgItem)
|
||||
if (this.info.conversation == 'Translator') {
|
||||
msgItem.response_mode = 'blocking'
|
||||
msgItem.inputs.lang = this.lang
|
||||
@ -597,22 +594,30 @@ export default {
|
||||
'answer': '',
|
||||
'socketId': this.socketId,
|
||||
};
|
||||
console.log(this.info.conversation, 259)
|
||||
if (this.info.conversation == 'Translator') {
|
||||
requestData.response_mode = 'blocking'
|
||||
requestData.inputs.lang = this.lang
|
||||
requestData.inputs.sayLang = this.sayLang
|
||||
} else if (this.info.conversation == 'Trip') {
|
||||
// requestData.query = "描述图片"
|
||||
if (requestData.inputs.type == 'image') {
|
||||
requestData.query = "描述图片"
|
||||
// requestData.inputs = {}
|
||||
// requestData.files = [
|
||||
// {
|
||||
// "type": "image",
|
||||
// "transfer_method": "local_file",
|
||||
// "url": '',
|
||||
// "upload_file_id": inputData.message
|
||||
// }
|
||||
// ]
|
||||
requestData.files = [
|
||||
{
|
||||
"type": "image",
|
||||
// "type": "image/jpeg",
|
||||
"transfer_method": "local_file",
|
||||
"url": '',
|
||||
"upload_file_id": inputData.message
|
||||
}
|
||||
]
|
||||
}
|
||||
setTimeout(() => {
|
||||
sendMsg(that.msgSocket, JSON.stringify(requestData))
|
||||
requestData.query = inputData.base64
|
||||
}, 500)
|
||||
|
||||
return
|
||||
}
|
||||
setTimeout(() => {
|
||||
sendMsg(that.msgSocket, JSON.stringify(requestData))
|
||||
@ -665,8 +670,9 @@ page {
|
||||
|
||||
.po_i {
|
||||
position: absolute;
|
||||
//top: -60px;
|
||||
|
||||
left: 0px;
|
||||
top: -55px;
|
||||
box-sizing: border-box;
|
||||
padding: 10px;
|
||||
height: 50px;
|
||||
@ -760,6 +766,7 @@ page {
|
||||
padding: 18rpx 24rpx;
|
||||
white-space: pre-wrap;
|
||||
word-wrap: break-word;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.msg-img {
|
||||
|
@ -223,7 +223,22 @@ export default {
|
||||
//将res.data转为json
|
||||
let json = JSON.parse(res.data)
|
||||
console.log(json.id,'上传图片返回结果')
|
||||
that.send(json.id, 1, res.data)
|
||||
upload({
|
||||
filePath: tempFilePaths[0],
|
||||
url: 'base64Api/upload',
|
||||
name: 'file',
|
||||
}).then(res1 => {
|
||||
request({
|
||||
url: 'base64Api/inputBase64',
|
||||
method: 'post',
|
||||
data: {
|
||||
base64: res1.base64
|
||||
}
|
||||
}).then(res2 => {
|
||||
that.send(json.id, 1, res1.base64)
|
||||
})
|
||||
})
|
||||
// that.send(json.id, 1, res.data)
|
||||
},
|
||||
fail: (err) => {
|
||||
console.log(err,'上传报错')
|
||||
|
@ -1,31 +1,38 @@
|
||||
<template>
|
||||
<view class="container">
|
||||
<map id="map" :show-compass="true" :include-points="points" :polyline="polyline" lang="en" :longitude="center.longitude" :latitude="center.latitude"
|
||||
<map id="map" :show-compass="true" :include-points="points" :polyline="polyline" lang="en"
|
||||
:longitude="center.longitude" :latitude="center.latitude"
|
||||
:markers="markers" bindmarkertap="handleMarkerTap" show-location
|
||||
:style="'width:' + windowWidth + 'px;' + 'height:'+ '540rpx;' ">
|
||||
|
||||
</map>
|
||||
<image src="/static/chatImg/fy.png" @click="changeLan" mode="" class="fy_icon" ></image>
|
||||
<view class="contenr_" v-if="lang=='en'" >
|
||||
<image src="/static/chatImg/fy.png" @click="changeLan" mode="" class="fy_icon"></image>
|
||||
<view class="contenr_" v-if="lang=='en'">
|
||||
<view class="contenr_top">
|
||||
<!-- 顶部 全程 时间-->
|
||||
<view class="c_t_box">
|
||||
<view>
|
||||
<text class="text_1">{{Number.parseInt(allData.duration/60)||0}}min</text>
|
||||
<text class="text_1">{{ Number.parseInt(allData.duration / 60) || 0 }}min</text>
|
||||
</view>
|
||||
<view class="ds_">
|
||||
<text class="text_2">walk distance</text>
|
||||
<text class="text_1">{{allData.walkingDistance?Number.parseFloat(allData.walkingDistance/1000).toFixed(2):0}}km</text>
|
||||
<text class="text_1">
|
||||
{{ allData.walkingDistance ? Number.parseFloat(allData.walkingDistance / 1000).toFixed(2) : 0 }}km
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- -->
|
||||
<view class="c_c_box">
|
||||
|
||||
<view class="ds_" style="flex-wrap: wrap;">
|
||||
<image src="/static/imgs/icon2.png" style="height: 48rpx;width: 48rpx;"></image>
|
||||
<view v-for="(item,index) in allData.segments">
|
||||
<view class="c_c_title" :style="'background-color:' + colorList[index] " v-for="(it,idx) in item.bus" :key="idx" >
|
||||
<text class="text_line">{{it.enName.split('(')[0]||''}}</text>
|
||||
<view v-for="(item,index) in allData.segments" :key="index">
|
||||
<view class="segment-item" :style="{ flexDirection: 'row', alignItems: 'center' }">
|
||||
<image src="/static/imgs/icon2.png" style="height: 48rpx; width: 48rpx; flex-shrink: 0;"
|
||||
v-if="item.walking"></image>
|
||||
<view class="c_c_title" :style="'background-color:' + colorList[index] "
|
||||
v-for="(it,idx) in item.bus" :key="idx">
|
||||
<text class="text_line">{{ it.enName.split('(')[0] || '' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@ -34,7 +41,7 @@
|
||||
<!-- 下方注释 -->
|
||||
<view class="ds_">
|
||||
<text class="text_4">all cost</text>
|
||||
<text class="text_4">¥{{allData.cost=='[]'?0:allData.cost}}</text>
|
||||
<text class="text_4">¥{{ allData.cost == '[]' ? 0 : allData.cost }}</text>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
@ -42,7 +49,8 @@
|
||||
:refresher-enabled="true" style="height: 620rpx;" lower-threshold="50">
|
||||
<view class="contenr_bottom">
|
||||
<view class="c_b_title">
|
||||
<image src="/static/imgs/icon3.png" style="height: 40rpx;width: 40rpx;margin-right: 20rpx;"></image>
|
||||
<image src="/static/imgs/icon3.png"
|
||||
style="height: 40rpx;width: 40rpx;margin-right: 20rpx;"></image>
|
||||
<text class="text_1">My Location</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -51,7 +59,9 @@
|
||||
<view class="c_b_box" v-if="item.walking">
|
||||
<view class="ds_">
|
||||
<view class="qiu_"></view>
|
||||
<text class="text_4">Walk {{item.walking.distance}} meters ({{Number.parseInt(item.walking.duration/60)}} minutes)</text>
|
||||
<text class="text_4">Walk {{ item.walking.distance }} meters
|
||||
({{ Number.parseInt(item.walking.duration / 60) }} minutes)
|
||||
</text>
|
||||
</view>
|
||||
<view class="b_walk">
|
||||
<text class="text_3" @click="walkLine(item.walking)">Walk</text>
|
||||
@ -60,25 +70,28 @@
|
||||
</view>
|
||||
<view class="contenr_bottom_d" v-if="item.bus&&item.bus.length>0" v-for="(it) in item.bus">
|
||||
<view class="bz_left">
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] " >
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] ">
|
||||
<image src="/static/imgs/icon4.png" style="height: 32rpx;width: 32rpx;"></image>
|
||||
</view>
|
||||
<view class="l_t_z" :style="'background-color:' + colorList[index] " ></view>
|
||||
<view class="l_t_z" :style="'background-color:' + colorList[index] "></view>
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] "></view>
|
||||
</view>
|
||||
<view class="bz_right">
|
||||
<text class="text_1" style="margin-bottom: 32rpx;">{{it.departureStop.enName}} station</text>
|
||||
<text class="text_1" style="margin-bottom: 32rpx;">{{ it.departureStop.enName }} station
|
||||
</text>
|
||||
<view class="ds_">
|
||||
<view class="bz_icon" :style="'background-color:' + colorList[index] ">
|
||||
<text class="text_3">{{it.enName}}</text>
|
||||
<view class="bz_icon bz_width" :style="'background-color:' + colorList[index] ">
|
||||
<text class="text_3">{{ it.enName }}</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="botton_size">
|
||||
<text class="text_4">{{it.viaStops.length}} station ({{Number.parseInt(it.duration/60)}} min)</text>
|
||||
<text class="text_4">{{ it.viaStops.length }} station
|
||||
({{ Number.parseInt(it.duration / 60) }} min)
|
||||
</text>
|
||||
|
||||
</view>
|
||||
<text class="text_1" style="margin-top: 39rpx;">{{it.arrivalStop.enName}} station</text>
|
||||
<text class="text_1" style="margin-top: 39rpx;">{{ it.arrivalStop.enName }} station</text>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
@ -86,33 +99,40 @@
|
||||
|
||||
<view class="contenr_bottom">
|
||||
<view class="c_b_title">
|
||||
<image src="/static/imgs/end.png" style="height: 50rpx;width: 45rpx;margin-right: 20rpx;"></image>
|
||||
<image src="/static/imgs/end.png"
|
||||
style="height: 50rpx;width: 45rpx;margin-right: 20rpx;"></image>
|
||||
<text class="text_1">destination</text>
|
||||
</view>
|
||||
</view>
|
||||
</scroll-view>
|
||||
</view>
|
||||
|
||||
<view class="contenr_" v-else >
|
||||
<view class="contenr_" v-else>
|
||||
<view class="contenr_top">
|
||||
<!-- 顶部 全程 时间-->
|
||||
<view class="c_t_box">
|
||||
<view>
|
||||
<text class="text_1">{{Number.parseInt(allData.duration/60)||0}}分钟</text>
|
||||
<text class="text_1">{{ Number.parseInt(allData.duration / 60) || 0 }}分钟</text>
|
||||
</view>
|
||||
<view class="ds_">
|
||||
<text class="text_2">步行距离</text>
|
||||
<text class="text_1">{{allData.walkingDistance?Number.parseFloat(allData.walkingDistance/1000).toFixed(2):0}}km</text>
|
||||
<text class="text_1">
|
||||
{{ allData.walkingDistance ? Number.parseFloat(allData.walkingDistance / 1000).toFixed(2) : 0 }}km
|
||||
</text>
|
||||
</view>
|
||||
</view>
|
||||
<!-- -->
|
||||
<view class="c_c_box">
|
||||
|
||||
<view class="ds_" style="flex-wrap: wrap;">
|
||||
<image src="/static/imgs/icon2.png" style="height: 48rpx;width: 48rpx;"></image>
|
||||
<view v-for="(item,index) in allData.segments">
|
||||
<view class="c_c_title" :style="'background-color:' + colorList[index] " v-for="(it,idx) in item.bus" :key="idx" >
|
||||
<text class="text_line">{{it.name.split('(')[0]||''}}</text>
|
||||
<view class="segment-item" :style="{ flexDirection: 'row', alignItems: 'center' }">
|
||||
<image src="/static/imgs/icon2.png" style="height: 48rpx;width: 48rpx; flex-shrink: 0"
|
||||
v-if="item.walking"></image>
|
||||
<view class="c_c_title" :style="'background-color:' + colorList[index] "
|
||||
v-for="(it,idx) in item.bus" :key="idx">
|
||||
<text class="text_line">{{ it.name.split('(')[0] || '' }}</text>
|
||||
</view>
|
||||
</view>
|
||||
</view>
|
||||
|
||||
@ -121,7 +141,7 @@
|
||||
<!-- 下方注释 -->
|
||||
<view class="ds_">
|
||||
<text class="text_4">总花费</text>
|
||||
<text class="text_4">¥{{allData.cost}}</text>
|
||||
<text class="text_4">¥{{ allData.cost }}</text>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
@ -129,7 +149,8 @@
|
||||
:refresher-enabled="true" style="height: 620rpx;" lower-threshold="50">
|
||||
<view class="contenr_bottom">
|
||||
<view class="c_b_title">
|
||||
<image src="/static/imgs/icon3.png" style="height: 40rpx;width: 40rpx;margin-right: 20rpx;"></image>
|
||||
<image src="/static/imgs/icon3.png"
|
||||
style="height: 40rpx;width: 40rpx;margin-right: 20rpx;"></image>
|
||||
<text class="text_1">我的位置</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -138,7 +159,9 @@
|
||||
<view class="c_b_box" v-if="item.walking">
|
||||
<view class="ds_">
|
||||
<view class="qiu_"></view>
|
||||
<text class="text_4">步行 {{item.walking.distance}} 米 ({{Number.parseInt(item.walking.duration/60)}} 分钟)</text>
|
||||
<text class="text_4">步行 {{ item.walking.distance }} 米
|
||||
({{ Number.parseInt(item.walking.duration / 60) }} 分钟)
|
||||
</text>
|
||||
</view>
|
||||
<view class="b_walk">
|
||||
<text class="text_3" @click="walkLine(item.walking)">导航</text>
|
||||
@ -147,25 +170,27 @@
|
||||
</view>
|
||||
<view class="contenr_bottom_d" v-if="item.bus&&item.bus.length>0" v-for="(it) in item.bus">
|
||||
<view class="bz_left">
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] " >
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] ">
|
||||
<image src="/static/imgs/icon4.png" style="height: 32rpx;width: 32rpx;"></image>
|
||||
</view>
|
||||
<view class="l_t_z" :style="'background-color:' + colorList[index] " ></view>
|
||||
<view class="l_t_z" :style="'background-color:' + colorList[index] "></view>
|
||||
<view class="l_t_i" :style="'background-color:' + colorList[index] "></view>
|
||||
</view>
|
||||
<view class="bz_right">
|
||||
<text class="text_1" style="margin-bottom: 32rpx;">{{it.departureStop.name}} 站点</text>
|
||||
<text class="text_1" style="margin-bottom: 32rpx;">{{ it.departureStop.name }} 站点</text>
|
||||
<view class="ds_">
|
||||
<view class="bz_icon" :style="'background-color:' + colorList[index] ">
|
||||
<text class="text_3">{{it.name}}</text>
|
||||
<view class="bz_icon bz_width" :style="'background-color:' + colorList[index]">
|
||||
<text class="text_3">{{ it.name }}</text>
|
||||
</view>
|
||||
|
||||
</view>
|
||||
<view class="botton_size">
|
||||
<text class="text_4">{{it.viaStops.length}} 站 ({{Number.parseInt(it.duration/60)}} 分钟)</text>
|
||||
<text class="text_4">{{ it.viaStops.length }} 站
|
||||
({{ Number.parseInt(it.duration / 60) }} 分钟)
|
||||
</text>
|
||||
|
||||
</view>
|
||||
<text class="text_1" style="margin-top: 39rpx;">{{it.arrivalStop.name}} 站点</text>
|
||||
<text class="text_1" style="margin-top: 39rpx;">{{ it.arrivalStop.name }} 站点</text>
|
||||
|
||||
</view>
|
||||
</view>
|
||||
@ -173,7 +198,8 @@
|
||||
|
||||
<view class="contenr_bottom">
|
||||
<view class="c_b_title">
|
||||
<image src="/static/imgs/end.png" style="height: 50rpx;width: 45rpx;margin-right: 20rpx;"></image>
|
||||
<image src="/static/imgs/end.png"
|
||||
style="height: 50rpx;width: 45rpx;margin-right: 20rpx;"></image>
|
||||
<text class="text_1">终点</text>
|
||||
</view>
|
||||
</view>
|
||||
@ -186,14 +212,15 @@
|
||||
<script>
|
||||
import request from '../../utils/request'
|
||||
import config from '@/config'
|
||||
|
||||
export default {
|
||||
data() {
|
||||
return {
|
||||
lang:'en',
|
||||
lang: 'en',
|
||||
translateY: 0,
|
||||
longPressTimer: null, // 长按定时器
|
||||
isDragging: false, // 是否正在拖动
|
||||
colorList:[
|
||||
colorList: [
|
||||
"#f9d402",
|
||||
"#009bc2",
|
||||
"#000000",
|
||||
@ -214,12 +241,12 @@
|
||||
endPoint: [],
|
||||
// 接口返回
|
||||
container: {},
|
||||
routeTitle:'',
|
||||
routeTitle: '',
|
||||
distance: 0,
|
||||
duration: 0,
|
||||
cost:0,
|
||||
points:[],
|
||||
allData:{}
|
||||
cost: 0,
|
||||
points: [],
|
||||
allData: {}
|
||||
|
||||
}
|
||||
},
|
||||
@ -237,7 +264,7 @@
|
||||
},
|
||||
computed: {
|
||||
windowHeight() {
|
||||
return uni.getSystemInfoSync().windowHeight/3;
|
||||
return uni.getSystemInfoSync().windowHeight / 3;
|
||||
},
|
||||
windowWidth() {
|
||||
return uni.getSystemInfoSync().windowWidth;
|
||||
@ -245,10 +272,10 @@
|
||||
|
||||
},
|
||||
methods: {
|
||||
changeLan(){
|
||||
if(this.lang == 'en'){
|
||||
changeLan() {
|
||||
if (this.lang == 'en') {
|
||||
this.lang = 'zh'
|
||||
}else{
|
||||
} else {
|
||||
this.lang = 'en'
|
||||
}
|
||||
},
|
||||
@ -258,24 +285,24 @@
|
||||
// 谷歌使用wgs84 其他使用gcj02
|
||||
type: 'gcj02', // 使用国测局坐标系
|
||||
geocode: true,
|
||||
success: function(res) {
|
||||
success: function (res) {
|
||||
_this.center.longitude = res.longitude
|
||||
_this.center.latitude = res.latitude
|
||||
},
|
||||
fail: function(err) {
|
||||
fail: function (err) {
|
||||
console.log('获取位置信息失败: ' + err.errMsg);
|
||||
uni.setStorageSync("isGetAddress", false)
|
||||
}
|
||||
});
|
||||
},
|
||||
walkLine(data){
|
||||
walkLine(data) {
|
||||
let endInfo = {}
|
||||
endInfo.location = [data.endLocationLng, data.endLocationLat]
|
||||
uni.getLocation({
|
||||
// 谷歌使用wgs84 其他使用gcj02
|
||||
type: 'gcj02', // 使用国测局坐标系
|
||||
geocode: true,
|
||||
success: function(res) {
|
||||
success: function (res) {
|
||||
let staInfo = {}
|
||||
staInfo.location = [res.longitude, res.latitude]
|
||||
uni.navigateTo({
|
||||
@ -284,7 +311,7 @@
|
||||
'&endPoint=' + endInfo.location
|
||||
})
|
||||
},
|
||||
fail: function(err) {
|
||||
fail: function (err) {
|
||||
uni.showToast({
|
||||
title: 'Failed to get location',
|
||||
icon: 'none'
|
||||
@ -297,7 +324,7 @@
|
||||
},
|
||||
lower(e) {
|
||||
setTimeout(() => {
|
||||
this.items.push(...Array.from({ length: 10 }, (_, i) =>
|
||||
this.items.push(...Array.from({length: 10}, (_, i) =>
|
||||
'New Item ' + (this.items.length + i + 1)
|
||||
));
|
||||
if (this.items.length >= 50) this.hasMore = false;
|
||||
@ -319,8 +346,8 @@
|
||||
}
|
||||
}).then(res => {
|
||||
that.allData = res.data
|
||||
that.duration = res.data.duration/60
|
||||
that.distance = res.data.walkingDistance/1000
|
||||
that.duration = res.data.duration / 60
|
||||
that.distance = res.data.walkingDistance / 1000
|
||||
that.cost = res.data.cost
|
||||
let segments = res.data.segments
|
||||
that.points = []
|
||||
@ -328,7 +355,7 @@
|
||||
that.polyline = []
|
||||
for (var item of segments) {
|
||||
let walking = item.walking
|
||||
if(walking&&walking.polyline){
|
||||
if (walking && walking.polyline) {
|
||||
let item = {}
|
||||
item.color = '#787878'
|
||||
item.points = walking.polyline
|
||||
@ -341,8 +368,8 @@
|
||||
//再进行公交的线路展示
|
||||
for (var item of segments) {
|
||||
let bus = item.bus
|
||||
if(bus&&bus.length>0){
|
||||
for (var busIt of bus){
|
||||
if (bus && bus.length > 0) {
|
||||
for (var busIt of bus) {
|
||||
let item = {}
|
||||
item.color = '#5500ff'
|
||||
item.points = busIt.polyline
|
||||
@ -358,13 +385,13 @@
|
||||
that.markers = []
|
||||
//起点和终点处理
|
||||
that.markers.push({
|
||||
id:1,
|
||||
label:{
|
||||
content:'Start Point',
|
||||
fontSize:8,
|
||||
color:'#145e07'
|
||||
id: 1,
|
||||
label: {
|
||||
content: 'Start Point',
|
||||
fontSize: 8,
|
||||
color: '#145e07'
|
||||
},
|
||||
iconPath:config.startStopIcon,
|
||||
iconPath: config.startStopIcon,
|
||||
latitude: this.startPoint[1],
|
||||
longitude: this.startPoint[0],
|
||||
width: 20,
|
||||
@ -372,102 +399,102 @@
|
||||
})
|
||||
|
||||
that.markers.push({
|
||||
id:2,
|
||||
label:{
|
||||
content:'End Point',
|
||||
fontSize:8,
|
||||
color:'#145e07'
|
||||
id: 2,
|
||||
label: {
|
||||
content: 'End Point',
|
||||
fontSize: 8,
|
||||
color: '#145e07'
|
||||
},
|
||||
iconPath:config.endStopIcon,
|
||||
iconPath: config.endStopIcon,
|
||||
latitude: this.endPoint[1],
|
||||
longitude: this.endPoint[0],
|
||||
width: 20,
|
||||
height: 20,
|
||||
})
|
||||
let i=1;
|
||||
let i = 1;
|
||||
for (var item of segments) {
|
||||
let bus = item.bus
|
||||
if(bus&&bus.length>0){
|
||||
for (var busIt of bus){
|
||||
if (bus && bus.length > 0) {
|
||||
for (var busIt of bus) {
|
||||
//途径上车点
|
||||
that.markers.push({
|
||||
id:busIt.departureStop.id,
|
||||
label:{
|
||||
content:busIt.enName,
|
||||
fontSize:8,
|
||||
color:'#145e07'
|
||||
id: busIt.departureStop.id,
|
||||
label: {
|
||||
content: busIt.enName,
|
||||
fontSize: 8,
|
||||
color: '#145e07'
|
||||
},
|
||||
iconPath:config.varStop,
|
||||
iconPath: config.varStop,
|
||||
latitude: busIt.departureStop.locationLat,
|
||||
longitude: busIt.departureStop.locationLng,
|
||||
width: 20,
|
||||
height: 20,
|
||||
})
|
||||
that.points.push({
|
||||
latitude: that.offsetLatitude1(busIt.departureStop.locationLat,30000),
|
||||
latitude: that.offsetLatitude1(busIt.departureStop.locationLat, 30000),
|
||||
longitude: busIt.departureStop.locationLng
|
||||
})
|
||||
that.points.push({
|
||||
latitude: that.offsetLatitude2(busIt.departureStop.locationLat,30000),
|
||||
latitude: that.offsetLatitude2(busIt.departureStop.locationLat, 30000),
|
||||
longitude: busIt.departureStop.locationLng
|
||||
})
|
||||
that.points.push({
|
||||
latitude: busIt.departureStop.locationLat,
|
||||
longitude: that.offsetLongitude1(busIt.departureStop.locationLng,30000)
|
||||
longitude: that.offsetLongitude1(busIt.departureStop.locationLng, 30000)
|
||||
})
|
||||
that.points.push({
|
||||
latitude: busIt.departureStop.locationLat,
|
||||
longitude: that.offsetLongitude2(busIt.departureStop.locationLng,30000)
|
||||
longitude: that.offsetLongitude2(busIt.departureStop.locationLng, 30000)
|
||||
})
|
||||
|
||||
|
||||
that.points.push({
|
||||
latitude: that.offsetLatitude1(busIt.arrivalStop.locationLat,30000),
|
||||
latitude: that.offsetLatitude1(busIt.arrivalStop.locationLat, 30000),
|
||||
longitude: busIt.arrivalStop.locationLng
|
||||
})
|
||||
that.points.push({
|
||||
latitude: that.offsetLatitude2(busIt.arrivalStop.locationLat,30000),
|
||||
latitude: that.offsetLatitude2(busIt.arrivalStop.locationLat, 30000),
|
||||
longitude: busIt.arrivalStop.locationLng
|
||||
})
|
||||
that.points.push({
|
||||
latitude: busIt.arrivalStop.locationLat,
|
||||
longitude: that.offsetLongitude1(busIt.arrivalStop.locationLng,30000)
|
||||
longitude: that.offsetLongitude1(busIt.arrivalStop.locationLng, 30000)
|
||||
})
|
||||
that.points.push({
|
||||
latitude: busIt.arrivalStop.locationLat,
|
||||
longitude: that.offsetLongitude2(busIt.arrivalStop.locationLng,30000)
|
||||
longitude: that.offsetLongitude2(busIt.arrivalStop.locationLng, 30000)
|
||||
})
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
console.log(that.points);
|
||||
}).finally(()=>{
|
||||
}).finally(() => {
|
||||
uni.hideLoading()
|
||||
})
|
||||
},
|
||||
offsetLongitude1(oldValue,num) {
|
||||
oldValue =Number.parseFloat(oldValue)
|
||||
offsetLongitude1(oldValue, num) {
|
||||
oldValue = Number.parseFloat(oldValue)
|
||||
const R = 6371000; // 地球半径,单位为米
|
||||
const latRad = oldValue * Math.PI / 180;
|
||||
const deltaLon = num / (R * Math.cos(latRad));
|
||||
return oldValue + deltaLon;
|
||||
},
|
||||
offsetLongitude2(oldValue,num) {
|
||||
oldValue =Number.parseFloat(oldValue)
|
||||
offsetLongitude2(oldValue, num) {
|
||||
oldValue = Number.parseFloat(oldValue)
|
||||
const R = 6371000; // 地球半径,单位为米
|
||||
const latRad = oldValue * Math.PI / 180;
|
||||
const deltaLon = num / (R * Math.cos(latRad));
|
||||
return oldValue - deltaLon;
|
||||
},
|
||||
offsetLatitude1(oldValue,num) {
|
||||
oldValue =Number.parseFloat(oldValue)
|
||||
offsetLatitude1(oldValue, num) {
|
||||
oldValue = Number.parseFloat(oldValue)
|
||||
const R = 6371000; // 地球半径,单位为米
|
||||
const deltaLat = num / R;
|
||||
return oldValue + deltaLat;
|
||||
},
|
||||
offsetLatitude2(oldValue,num) {
|
||||
oldValue =Number.parseFloat(oldValue)
|
||||
offsetLatitude2(oldValue, num) {
|
||||
oldValue = Number.parseFloat(oldValue)
|
||||
const R = 6371000; // 地球半径,单位为米
|
||||
const deltaLat = num / R;
|
||||
return oldValue - deltaLat;
|
||||
@ -501,11 +528,12 @@
|
||||
|
||||
}
|
||||
|
||||
.ds_{
|
||||
.ds_ {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
|
||||
.bottom_pr {
|
||||
min-height: 160rpx;
|
||||
position: fixed;
|
||||
@ -513,7 +541,7 @@
|
||||
width: 750rpx;
|
||||
background: #fff;
|
||||
|
||||
box-shadow: 0rpx -2rpx 3rpx 0rpx rgba(50,113,79,0.3);
|
||||
box-shadow: 0rpx -2rpx 3rpx 0rpx rgba(50, 113, 79, 0.3);
|
||||
overflow: hidden;
|
||||
box-sizing: border-box;
|
||||
padding: 30rpx;
|
||||
@ -521,6 +549,7 @@
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.draggable {
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
@ -531,18 +560,20 @@
|
||||
align-items: center;
|
||||
z-index: 99999;
|
||||
}
|
||||
.bz_icon{
|
||||
|
||||
.bz_icon {
|
||||
box-sizing: border-box;
|
||||
padding: 18rpx 18rpx;
|
||||
|
||||
|
||||
border-radius: 8rpx ;
|
||||
border-radius: 8rpx;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.b_walk{
|
||||
|
||||
.b_walk {
|
||||
width: 80rpx;
|
||||
height: 40rpx;
|
||||
background: #32714F;
|
||||
@ -552,7 +583,8 @@
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
.button_{
|
||||
|
||||
.button_ {
|
||||
width: 686rpx;
|
||||
height: 96rpx;
|
||||
background: #32714F;
|
||||
@ -564,29 +596,34 @@
|
||||
|
||||
|
||||
}
|
||||
.qiu_{
|
||||
|
||||
.qiu_ {
|
||||
width: 16rpx;
|
||||
height: 16rpx;
|
||||
border-radius: 50%;
|
||||
background: #e8e8e8;
|
||||
margin-right: 32rpx;
|
||||
}
|
||||
.c_b_box{
|
||||
|
||||
.c_b_box {
|
||||
margin: 10rpx 0rpx;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
}
|
||||
.c_b_title{
|
||||
|
||||
.c_b_title {
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
|
||||
}
|
||||
.button_text{
|
||||
|
||||
.button_text {
|
||||
color: #FFFFFF;
|
||||
font-size: 38rpx;
|
||||
}
|
||||
.contenr_{
|
||||
|
||||
.contenr_ {
|
||||
min-height: 160rpx;
|
||||
position: fixed;
|
||||
bottom: 0rpx;
|
||||
@ -594,17 +631,19 @@
|
||||
background: #fff;
|
||||
|
||||
}
|
||||
.contenr_top{
|
||||
|
||||
.contenr_top {
|
||||
width: 686rpx;
|
||||
|
||||
background: #FFFFFF;
|
||||
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0,0,0,0.1);
|
||||
box-shadow: 0rpx 8rpx 20rpx 0rpx rgba(0, 0, 0, 0.1);
|
||||
border-radius: 32rpx 32rpx 32rpx 32rpx;
|
||||
margin-left: 32rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 32rpx;
|
||||
}
|
||||
.c_t_box{
|
||||
|
||||
.c_t_box {
|
||||
box-sizing: border-box;
|
||||
padding-bottom: 16rpx;
|
||||
border-bottom: 2rpx solid #F2F2F2;;
|
||||
@ -613,48 +652,65 @@
|
||||
justify-content: space-between;
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
.c_c_box{
|
||||
|
||||
.c_c_box {
|
||||
margin-bottom: 16rpx;
|
||||
}
|
||||
.c_box{
|
||||
|
||||
.c_box {
|
||||
box-sizing: border-box;
|
||||
padding: 0px 32rpx;
|
||||
|
||||
}
|
||||
.text_1{
|
||||
|
||||
.text_1 {
|
||||
font-size: 32rpx;
|
||||
color: #333333;
|
||||
font-weight: 600;
|
||||
lines:2;
|
||||
lines: 2;
|
||||
}
|
||||
.text_2{
|
||||
|
||||
.text_2 {
|
||||
font-size: 32rpx;
|
||||
color: #999999;
|
||||
margin-right: 5px;
|
||||
}
|
||||
.text_3{
|
||||
|
||||
.text_3 {
|
||||
font-weight: 500;
|
||||
font-size: 28rpx;
|
||||
color: #FFFFFF;
|
||||
white-space: normal;
|
||||
word-wrap: break-word;
|
||||
/* 如果需要强制换行可以添加 */
|
||||
word-break: break-all;
|
||||
|
||||
/* 如果父容器需要限制宽度 */
|
||||
display: block;
|
||||
max-width: 100%;
|
||||
}
|
||||
.text_line{
|
||||
|
||||
.text_line {
|
||||
font-weight: 500;
|
||||
font-size: 23rpx;
|
||||
color: #FFFFFF;
|
||||
}
|
||||
.text_4{
|
||||
|
||||
.text_4 {
|
||||
font-weight: 400;
|
||||
font-size: 24rpx;
|
||||
color: #999999;
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
.text_5{
|
||||
|
||||
.text_5 {
|
||||
font-size: 24rpx;
|
||||
color: #333333;
|
||||
|
||||
margin-right: 10rpx;
|
||||
}
|
||||
.c_c_title{
|
||||
|
||||
.c_c_title {
|
||||
|
||||
width: 260rpx;
|
||||
height: 48rpx;
|
||||
@ -663,30 +719,35 @@
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin: 0px 5rpx;
|
||||
margin: 5px 5rpx;
|
||||
}
|
||||
.contenr_bottom{
|
||||
|
||||
.contenr_bottom {
|
||||
// margin-top: 40rpx;
|
||||
box-sizing: border-box;
|
||||
padding: 32rpx;
|
||||
padding-bottom: 0px;
|
||||
|
||||
}
|
||||
.contenr_bottom_d{
|
||||
|
||||
.contenr_bottom_d {
|
||||
box-sizing: border-box;
|
||||
padding: 11rpx;
|
||||
padding-top: 0px;
|
||||
flex-direction: row;
|
||||
|
||||
}
|
||||
.bz_left{
|
||||
|
||||
.bz_left {
|
||||
position: relative;
|
||||
margin-right: 20rpx;
|
||||
}
|
||||
.bz_right{
|
||||
|
||||
.bz_right {
|
||||
|
||||
}
|
||||
.l_t_i{
|
||||
|
||||
.l_t_i {
|
||||
width: 40rpx;
|
||||
height: 40rpx;
|
||||
border-radius: 50%;
|
||||
@ -697,43 +758,53 @@
|
||||
border: 1rpx solid #fff;
|
||||
|
||||
}
|
||||
.l_t_z{
|
||||
|
||||
.l_t_z {
|
||||
width: 24rpx;
|
||||
height: 240rpx;
|
||||
|
||||
margin: 4rpx 0rpx;
|
||||
margin-left: 8rpx;
|
||||
border-radius: 16rpx ;
|
||||
border-radius: 16rpx;
|
||||
|
||||
|
||||
}
|
||||
.po_box{
|
||||
|
||||
.po_box {
|
||||
height: 360rpx;
|
||||
overflow: auto;
|
||||
}
|
||||
.botton_size{
|
||||
|
||||
.botton_size {
|
||||
margin-top: 100rpx;
|
||||
}
|
||||
.fy_icon{
|
||||
|
||||
.fy_icon {
|
||||
position: fixed;
|
||||
right: 15px;
|
||||
top: 15px;
|
||||
width: 80rpx;
|
||||
height: 80rpx;
|
||||
}
|
||||
|
||||
::v-deep .amap-logo {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
::v-deep .amap-copyright {
|
||||
opacity: 0 !important;
|
||||
}
|
||||
|
||||
::v-deep .BMap_cpyCtrl {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
::v-deep .anchorBL {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
|
||||
.bz_width {
|
||||
width: 60%;
|
||||
}
|
||||
|
||||
</style>
|
||||
|
Loading…
Reference in New Issue
Block a user