Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-xcmg-vue-app
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
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
xugong
hls-xcmg-vue-app
Commits
b51051ed
Commit
b51051ed
authored
Dec 19, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
'百度地图插件'
parent
6c7ce965
Changes
9
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
55 additions
and
31 deletions
+55
-31
uat.env.js
config/uat.env.js
+1
-1
index.html
index.html
+1
-2
fetch.json
plugins/fetch.json
+1
-1
main.js
src/main.js
+2
-2
home-page.vue
src/pages/home/home-page.vue
+24
-11
location.vue
src/pages/home/location.vue
+23
-11
login.vue
src/pages/login.vue
+1
-1
index.html
www/index.html
+1
-1
manifest.3ad1d5771e9b13dbdad2.js.map
www/static/js/manifest.3ad1d5771e9b13dbdad2.js.map
+1
-1
No files found.
config/uat.env.js
View file @
b51051ed
...
...
@@ -10,5 +10,5 @@ module.exports = {
filePath
:
'"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_DEV&apiName=file_view&"'
,
ocrPath
:
'"http://180.104.121.66:8088/r/api"'
,
appId
:
'"com.xcmg.app"'
,
currentVersion
:
'"1.1.
6
"'
currentVersion
:
'"1.1.
8
"'
}
index.html
View file @
b51051ed
...
...
@@ -16,8 +16,7 @@
<script
type=
"text/javascript"
src=
"./static/prototype.js"
></script>
<script
type=
"text/javascript"
src=
"cordova.js"
></script>
<!-- 定位 -->
<script
type=
"text/javascript"
src=
"http://api.map.baidu.com/api?v=2.0&ak=o7fTnpVAGzXKN7SirV8xGU2xzWQS2NrI"
></script>
<script
type=
"text/javascript"
src=
"http://developer.baidu.com/map/jsdemo/demo/convertor.js"
></script>
<script
type=
"text/javascript"
src=
"https://api.map.baidu.com/api?v=2.0&ak=o7fTnpVAGzXKN7SirV8xGU2xzWQS2NrI"
></script>
<title>
徐工融租
</title>
</head>
<body>
...
...
plugins/fetch.json
View file @
b51051ed
...
...
@@ -107,7 +107,7 @@
"is_top_level"
:
true
,
"variables"
:
{
"ANDROID_KEY"
:
"YCDrAzwghWe3Ghps2QkIPBWANkDsgkOP"
,
"IOS_KEY"
:
"
HTTVa66Fmu7xLbanhWGIMxK5MEPZeuDN
"
"IOS_KEY"
:
"
q0niXfvEg9ToZSD1DvTvGTfeN2b6AbKT
"
}
},
"cordova-plugin-camera"
:
{
...
...
src/main.js
View file @
b51051ed
...
...
@@ -59,8 +59,8 @@ import Jpush from './scripts/jpushService'
import
Jmessage
from
'./scripts/jmessageService'
// if (process.env.CONFIG_ENV === 'uat') {
const
VConsole
=
require
(
'vconsole'
)
new
VConsole
()
// eslint-disable-line
//
const VConsole = require('vconsole')
//
new VConsole() // eslint-disable-line
// }
Vue
.
use
(
componentInstall
)
...
...
src/pages/home/home-page.vue
View file @
b51051ed
...
...
@@ -96,24 +96,37 @@ export default {
{
// 定位
getLocation
()
{
console
.
log
(
'getLocation'
)
let
vm
=
this
var
geolocation
=
new
BMap
.
Geolocation
()
geolocation
.
getCurrentPosition
(
function
(
res
)
{
if
(
this
.
getStatus
()
===
0
)
{
// 判断是否是手动选择过定位
if
(
vum
.
Platform
.
isAndroid
())
{
// 安卓采用jsapi
var
geolocation
=
new
BMap
.
Geolocation
()
geolocation
.
getCurrentPosition
(
function
(
res
)
{
if
(
this
.
getStatus
()
===
0
)
{
// 判断是否是手动选择过定位
if
(
window
.
localStorage
.
getItem
(
'province'
))
{
vm
.
city
=
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
window
.
localStorage
.
getItem
(
'province'
)
}
else
{
// 没有就定位当前位置
console
.
log
(
res
)
vm
.
city
=
res
.
address
.
city
vm
.
province
=
res
.
address
.
province
}
vm
.
guessingQuery
()
// 猜你喜欢查询
}
},
{
enableHighAccuracy
:
true
})
}
else
{
// ios使用插件定位
baidumap_location
.
getCurrentPosition
(
function
(
result
)
{
if
(
window
.
localStorage
.
getItem
(
'province'
))
{
vm
.
city
=
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
window
.
localStorage
.
getItem
(
'province'
)
}
else
{
// 没有就定位当前位置
console
.
log
(
res
)
vm
.
city
=
res
.
address
.
city
vm
.
province
=
res
.
address
.
province
vm
.
city
=
result
.
city
vm
.
province
=
result
.
addr
}
vm
.
guessingQuery
()
// 猜你喜欢查询
}
},
{
enableHighAccuracy
:
true
})
},
function
(
error
)
{
})
}
},
goFunctionHome
(
data
)
{
this
.
$router
.
push
({
...
...
src/pages/home/location.vue
View file @
b51051ed
...
...
@@ -95,22 +95,34 @@ export default {
// 重新定位到当前位置
relocation
()
{
let
vm
=
this
var
geolocation
=
new
BMap
.
Geolocation
()
console
.
log
(
'geolocationgeolocation'
+
JSON
.
stringify
(
geolocation
))
geolocation
.
getCurrentPosition
(
function
(
res
)
{
console
.
log
(
'^^^^^^^^^^^^^^^^'
+
JSON
.
stringify
(
res
))
if
(
this
.
getStatus
()
===
0
)
{
window
.
localStorage
.
setItem
(
'province'
,
res
.
address
.
province
)
window
.
localStorage
.
setItem
(
'city'
,
res
.
address
.
city
)
if
(
vum
.
Platform
.
isAndroid
())
{
// 安卓采用jsapi
var
geolocation
=
new
BMap
.
Geolocation
()
geolocation
.
getCurrentPosition
(
function
(
res
)
{
if
(
this
.
getStatus
()
===
0
)
{
window
.
localStorage
.
setItem
(
'province'
,
res
.
address
.
province
)
window
.
localStorage
.
setItem
(
'city'
,
res
.
address
.
city
)
vm
.
places
=
window
.
localStorage
.
getItem
(
'province'
)
+
'-'
+
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
'请选择省'
vm
.
city
=
'请选择市'
vm
.
flag
=
false
vm
.
province_flag
=
true
}
},
function
(
error
)
{
console
.
log
(
error
)
},
{
enableHighAccuracy
:
true
})
}
else
{
// ios使用插件定位
baidumap_location
.
getCurrentPosition
(
function
(
result
)
{
window
.
localStorage
.
setItem
(
'province'
,
result
.
addr
)
window
.
localStorage
.
setItem
(
'city'
,
result
.
city
)
vm
.
places
=
window
.
localStorage
.
getItem
(
'province'
)
+
'-'
+
window
.
localStorage
.
getItem
(
'city'
)
vm
.
province
=
'请选择省'
vm
.
city
=
'请选择市'
vm
.
flag
=
false
vm
.
province_flag
=
true
}
},
function
(
error
)
{
console
.
log
(
error
)
},
{
enableHighAccuracy
:
true
})
}
,
function
(
error
)
{
})
}
},
// 省份查询
...
...
src/pages/login.vue
View file @
b51051ed
...
...
@@ -229,7 +229,7 @@ export default {
background-color: #fff;
border-radius: 8px;
// margin-top: 15%;
margin-top:
10
%;
margin-top:
6
%;
padding: 32px 24px;
.title {
width: 227px;
...
...
www/index.html
View file @
b51051ed
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,width=device-width,viewport-fit=cover"
><meta
name=
format-detection
content=
"telephone=no"
><meta
name=
format-detection
content=
"email=no"
><meta
name=
apple-mobile-web-app-capable
content=
yes
><meta
name=
apple-mobile-web-app-status-bar-style
content=
black
><script
type=
text/javascript
src=
./static/vuePlatform.js
></script><script
type=
text/javascript
src=
./static/prototype.js
></script><script
type=
text/javascript
src=
cordova.js
></script><script
type=
text/javascript
src=
"http://api.map.baidu.com/api?v=2.0&ak=o7fTnpVAGzXKN7SirV8xGU2xzWQS2NrI"
></script><script
type=
text/javascript
src=
http://developer.baidu.com/map/jsdemo/demo/convertor.js
></script><title>
徐工融租
</title><link
href=
./static/css/app.6be6f6b891fa9101bc818fb8402fa845.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.3ad1d5771e9b13dbdad2.js
></script><script
type=
text/javascript
src=
./static/js/vendor.efd596b798e6119ce4a4.js
></script><script
type=
text/javascript
src=
./static/js/app.682be009731f8616f0d9.js
></script></body></html>
\ No newline at end of file
<!DOCTYPE html>
<html><head><meta
charset=
utf-8
><meta
name=
viewport
content=
"initial-scale=1,maximum-scale=1,minimum-scale=1,user-scalable=no,width=device-width,viewport-fit=cover"
><meta
name=
format-detection
content=
"telephone=no"
><meta
name=
format-detection
content=
"email=no"
><meta
name=
apple-mobile-web-app-capable
content=
yes
><meta
name=
apple-mobile-web-app-status-bar-style
content=
black
><script
type=
text/javascript
src=
./static/vuePlatform.js
></script><script
type=
text/javascript
src=
./static/prototype.js
></script><script
type=
text/javascript
src=
cordova.js
></script><script
type=
text/javascript
src=
"https://api.map.baidu.com/api?v=3.0&ak=o7fTnpVAGzXKN7SirV8xGU2xzWQS2NrI"
></script><title>
徐工融租
</title><link
href=
./static/css/app.79f91c642f9f223cd008e2be175d7203.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.3ad1d5771e9b13dbdad2.js
></script><script
type=
text/javascript
src=
./static/js/vendor.e547499500fbe65e7169.js
></script><script
type=
text/javascript
src=
./static/js/app.8b23c313c3ff7e3b9bba.js
></script></body></html>
\ No newline at end of file
www/static/js/manifest.3ad1d5771e9b13dbdad2.js.map
View file @
b51051ed
This diff is collapsed.
Click to expand it.
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