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
12b5e76e
Commit
12b5e76e
authored
Mar 05, 2020
by
Jennie Shi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
安卓更新
parent
a5971b98
Pipeline
#5049
failed with stages
Changes
7
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
20 additions
and
17 deletions
+20
-17
dev.env.js
config/dev.env.js
+6
-6
prod.env.js
config/prod.env.js
+1
-1
body-check.vue
src/pages/carConfirm/body-check.vue
+2
-2
body-check.vue
src/pages/contractSigning/body-check.vue
+3
-4
body-check.vue
src/pages/distributorSign/body-check.vue
+2
-2
video-list.vue
src/pages/videoSign/video-list.vue
+5
-1
index.html
www/index.html
+1
-1
No files found.
config/dev.env.js
View file @
12b5e76e
...
...
@@ -7,12 +7,12 @@ module.exports = merge(prodEnv, {
CONFIG_ENV
:
JSON
.
stringify
(
process
.
env
.
CONFIG_ENV
),
debug
:
true
,
isMobilePlatform
:
false
,
loginPath
:
'"http://
180.104.121.66:8088
/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" '
,
basePath
:
'"http://
180.104.121.66:8088/r/api/interface?sysName=XCMG_DEV
&apiName="'
,
rootPath
:
'"http://
180.104.121.66:8088
/r/api"'
,
filePath
:
'"http://
180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_DEV
&apiName=file_view&"'
,
fileUploadSvcPath
:
'"http://
180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_DEV
&apiName="'
,
ocrPath
:
'"http://
180.104.121.66:8088
/r/api"'
,
loginPath
:
'"http://
www.xcmgfs.com:8087/
/oauth/token?client_id=client2&client_secret=secret&grant_type=password&username=appadmin&password=" '
,
basePath
:
'"http://
www.xcmgfs.com:8087//r/api/interface?sysName=XCMG_PROD
&apiName="'
,
rootPath
:
'"http://
www.xcmgfs.com:8087/
/r/api"'
,
filePath
:
'"http://
www.xcmgfs.com:8087//r/api/app/fileViewSvc?sysName=XCMG_PROD
&apiName=file_view&"'
,
fileUploadSvcPath
:
'"http://
www.xcmgfs.com:8087//r/api/app/fileUploadSvc?sysName=XCMG_PROD
&apiName="'
,
ocrPath
:
'"http://
www.xcmgfs.com:8087/
/r/api"'
,
appId
:
'"com.xcmg.app.dev"'
,
currentVersion
:
'"1.9.0"'
,
})
...
...
config/prod.env.js
View file @
12b5e76e
...
...
@@ -11,5 +11,5 @@ module.exports = {
ocrPath
:
'"http://www.xcmgfs.com:8087/r/api"'
,
fileUploadSvcPath
:
'"http://www.xcmgfs.com:8087/r/api/app/fileUploadSvc?sysName=XCMG_PROD&apiName="'
,
appId
:
'"com.xcmg.app"'
,
currentVersion
:
'"0.0.
3
"'
currentVersion
:
'"0.0.
5
"'
}
src/pages/carConfirm/body-check.vue
View file @
12b5e76e
...
...
@@ -218,8 +218,8 @@ export default {
content
:
`检测成功,请进行电子签认证`
,
onConfirm
:
()
=>
{
// 电子签认证
vm
.
goElectronicSign
(
)
vm
.
svaeVideo
(
fileUrl
)
// 上传视频文件至业务系统
vm
.
svaeVideo
(
fileUrl
)
setTimeout
(
vm
.
goElectronicSign
(),
3000
)
},
})
}
...
...
src/pages/contractSigning/body-check.vue
View file @
12b5e76e
...
...
@@ -121,7 +121,6 @@ export default {
// 视频保存
saveVideoStart
(
list
)
{
console
.
log
(
'list '
+
JSON
.
stringify
(
list
))
let
vm
=
this
if
(
list
.
length
)
{
var
alreadyUploadNum
=
0
var
attLength
=
0
...
...
@@ -137,7 +136,6 @@ export default {
for
(
var
j
=
0
;
j
<
list
.
length
;
j
++
)
{
if
(
list
[
j
].
filePath
===
res
.
response
.
filePath
)
{
list
[
j
].
attachment_id
=
res
.
response
.
attachment_id
console
.
log
(
'%%%%%%%%%%%%% '
+
JSON
.
stringify
(
res
.
response
))
break
}
}
...
...
@@ -218,8 +216,9 @@ export default {
content
:
`检测成功,请进行电子签认证`
,
onConfirm
:
()
=>
{
// 电子签认证
vm
.
goElectronicSign
()
vm
.
svaeVideo
(
fileUrl
)
// 上传视频文件至业务系统
vm
.
svaeVideo
(
fileUrl
)
setTimeout
(
vm
.
goElectronicSign
(),
3000
)
// 上传视频文件至业务系统
},
})
}
...
...
src/pages/distributorSign/body-check.vue
View file @
12b5e76e
...
...
@@ -218,8 +218,8 @@ export default {
content
:
`检测成功,请进行电子签认证`
,
onConfirm
:
()
=>
{
// 电子签认证
vm
.
goElectronicSign
(
)
vm
.
svaeVideo
(
fileUrl
)
// 上传视频文件至业务系统
vm
.
svaeVideo
(
fileUrl
)
setTimeout
(
vm
.
goElectronicSign
(),
3000
)
},
})
}
...
...
src/pages/videoSign/video-list.vue
View file @
12b5e76e
...
...
@@ -165,7 +165,11 @@ export default {
if
(
res
)
{
hls
.
cordova
.
cloudroom
.
CloudRoomService
.
helpYourSelf
(
sendStr
,
function
(
data
)
{
console
.
log
(
JSON
.
stringify
(
data
,
''
,
2
))
vm
.
doConfirmInterview
(
item
)
if
(
data
.
result
===
'S'
)
{
vm
.
doConfirmInterview
(
item
)
}
else
{
vm
.
hlsPopup
.
showLongCenter
(
'您未完成视频面签,请重试!'
)
}
},
function
(
fail
)
{
vm
.
hlsPopup
.
showLongCenter
(
'进入会话失败'
)
...
...
www/index.html
View file @
12b5e76e
<!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=Eoo0EtfjYCdAy7r8D19gZ0vMojdZpHqU"
></script><title>
徐工金服
</title><link
href=
./static/css/app.4df5bfd4df456db4bc580b0772f120e7.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.6a178e8d77c32e3c385d.js
></script><script
type=
text/javascript
src=
./static/js/vendor.d56dec0015f4cf7e8b3b.js
></script><script
type=
text/javascript
src=
./static/js/app.bd9040d13f4ee3b15ea8.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=
"http://api.map.baidu.com/api?v=2.0&ak=Eoo0EtfjYCdAy7r8D19gZ0vMojdZpHqU"
></script><title>
徐工金服
</title><link
href=
./static/css/app.4df5bfd4df456db4bc580b0772f120e7.css
rel=
stylesheet
></head><body><div
id=
app-box
></div><script
type=
text/javascript
src=
./static/js/manifest.6a178e8d77c32e3c385d.js
></script><script
type=
text/javascript
src=
./static/js/vendor.adf9b230a1046c0fc990.js
></script><script
type=
text/javascript
src=
./static/js/app.4837235be0e05dd709c9.js
></script></body></html>
\ No newline at end of file
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