Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
SuperMan
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
罗超
SuperMan
Commits
bef80413
Commit
bef80413
authored
Oct 23, 2023
by
liudong1993
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of
http://gitlab.oytour.com/luochao/superman
parents
972ee563
8c00c778
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
14 deletions
+20
-14
TravelManagerThree.vue
...ewTravelmanager/TravelGroupControl/TravelManagerThree.vue
+2
-0
TravelPrice2.vue
...ents/newTravelmanager/TravelGroupControl/TravelPrice2.vue
+7
-6
tripmap.vue
...omponents/newTravelmanager/TravelGroupControl/tripmap.vue
+11
-8
No files found.
src/components/newTravelmanager/TravelGroupControl/TravelManagerThree.vue
View file @
bef80413
...
...
@@ -220,6 +220,7 @@
TripCountryList
:
[],
//行程国家
TripCityList
:
[],
//行程城市
TripMapList
:
[],
NotQueryCityList
:[],
//使用系统中的经纬度城市
},
//行程
FeatureData
:
{
...
...
@@ -878,6 +879,7 @@
this
.
PostConfig
.
TripCountryList
=
tempData
.
TripCountryList
;
this
.
PostConfig
.
TripCityList
=
tempData
.
TripCityList
;
this
.
PostConfig
.
TripMapList
=
tempData
.
TripMapList
;
this
.
PostConfig
.
NotQueryCityList
=
tempData
.
NotQueryCityList
;
this
.
PostConfig
.
MapUrl
=
tempData
.
MapUrl
;
let
arrList
=
function
(
list
)
{
list
.
forEach
(
x
=>
{
...
...
src/components/newTravelmanager/TravelGroupControl/TravelPrice2.vue
View file @
bef80413
...
...
@@ -399,11 +399,11 @@
<span
v-if=
"dayobject.checkState==$calendarUtils.checkState.noChecked"
class=
"other-month"
>
{{
dayobject
.
day
.
getDate
()
}}
</span>
<!---->
<span
v-if=
"dayobject.checkState==$calendarUtils.checkState.checked"
class=
"checked1"
@
click=
"clickedDay(dayobject)"
>
{{
dayobject
.
day
.
getDate
()
}}
</span>
<span
v-if=
"dayobject.checkState==$calendarUtils.checkState.checked"
class=
"checked1"
@
click=
"clickedDay(dayobject)"
>
{{
dayobject
.
day
.
getDate
()
}}
</span>
<!---->
<span
v-else-if=
"dayobject.checkState==$calendarUtils.checkState.hasValue"
@
click=
"clickedDay(dayobject)"
>
{{
dayobject
.
day
.
getDate
()
}}
</span>
<span
v-else-if=
"dayobject.checkState==$calendarUtils.checkState.hasValue"
@
click=
"clickedDay(dayobject)"
>
{{
dayobject
.
day
.
getDate
()
}}
</span>
</li>
</ul>
</div>
...
...
@@ -1491,7 +1491,8 @@
QFlightDateEnd
:
this
.
QFlightDateEnd
,
CreateBy
:
createBy
,
AirTicketId
:
this
.
priceData
.
AirTicketId
,
TCID
:
this
.
priceData
.
TCID
TCID
:
this
.
priceData
.
TCID
,
LineId
:
this
.
PostConfig
.
LineId
};
let
that
=
this
;
...
...
@@ -1994,7 +1995,7 @@
this
.
apipost
(
"travel_get_GetTravelPriceTeamTypeList"
,
{},
res
=>
{
if
(
res
.
data
.
resultCode
==
1
)
{
this
.
TeamListArr
=
res
.
data
.
data
;
}
else
{
this
.
Error
(
res
.
data
.
message
);
}
...
...
src/components/newTravelmanager/TravelGroupControl/tripmap.vue
View file @
bef80413
...
...
@@ -98,7 +98,6 @@
deviceMarkers
:
[],
//城市Markers
allMapCityList
:
[],
//地图显示所有城市
countriesMarkers
:
[],
//国家的Markers
chooseCountry
:
[],
//选中的国家
chooseCity
:
[],
//选中的城市
};
...
...
@@ -481,7 +480,6 @@
filter
:
[
"=="
,
"NAME_ZH"
,
x
.
name
]
});
}
if
(
x
.
MId
!=
651
&&
x
.
MId
!=
891
)
{
that
.
ClearSource
(
"mapLayer-"
+
x
.
MId
,
1
)
that
.
ClearSource
(
"mapLayerId-"
+
x
.
MId
,
1
)
...
...
@@ -570,12 +568,17 @@
async
calcCitiesGeoInfoHandler
()
{
await
Promise
.
all
(
this
.
citiesData
.
map
(
async
cityItem
=>
{
var
cityPosition
=
await
this
.
getCityCoordinates
(
cityItem
);
if
(
cityPosition
&&
cityPosition
.
length
==
2
)
{
cityItem
.
longitude
=
cityPosition
[
0
];
cityItem
.
Lng
=
cityPosition
[
0
];
cityItem
.
Lat
=
cityPosition
[
1
];
cityItem
.
latitude
=
cityPosition
[
1
];
var
isNotQueryCity
=
this
.
PostConfig
.
NotQueryCityList
.
find
(
cItem
=>
{
return
cItem
===
cityItem
.
MId
;
});
if
(
!
isNotQueryCity
)
{
var
cityPosition
=
await
this
.
getCityCoordinates
(
cityItem
);
if
(
cityPosition
&&
cityPosition
.
length
==
2
)
{
cityItem
.
longitude
=
cityPosition
[
0
];
cityItem
.
Lng
=
cityPosition
[
0
];
cityItem
.
Lat
=
cityPosition
[
1
];
cityItem
.
latitude
=
cityPosition
[
1
];
}
}
})
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment