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
389162ef
Commit
389162ef
authored
Feb 06, 2020
by
Jennie Shi
Browse files
Options
Browse Files
Download
Plain Diff
fixConflict
parents
8f2b5eab
b0800602
Pipeline
#4749
canceled with stages
Changes
12
Pipelines
1
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
64 additions
and
146 deletions
+64
-146
dev.env.js
config/dev.env.js
+1
-1
uat.env.js
config/uat.env.js
+1
-1
index.js
src/components/pdf/index.js
+0
-16
pdf.vue
src/components/pdf/pdf.vue
+0
-106
creat-rent-info.vue
src/pages/contractCreate/creat-rent-info.vue
+3
-1
create-enclosure-info.vue
src/pages/contractCreate/create-enclosure-info.vue
+48
-6
previewPdf.vue
src/pages/contractSigning/previewPdf.vue
+1
-0
financing-details.vue
src/pages/financingTrial/financing-details.vue
+1
-1
pwd-forgotten.vue
src/pages/pwd-forgotten.vue
+4
-1
regiester2.vue
src/pages/regiester2.vue
+5
-4
1e37fad1fce0ebb3e0e5.worker.js
www/1e37fad1fce0ebb3e0e5.worker.js
+0
-8
1e37fad1fce0ebb3e0e5.worker.js.map
www/1e37fad1fce0ebb3e0e5.worker.js.map
+0
-1
No files found.
config/dev.env.js
View file @
389162ef
...
...
@@ -12,6 +12,6 @@ module.exports = merge(prodEnv, {
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&"'
,
ocrPath
:
'"http://180.104.121.66:8088/r/api"'
,
appId
:
'"com.xcmg.app"'
,
appId
:
'"com.xcmg.app
.dev
"'
,
currentVersion
:
'"1.7.9"'
,
})
config/uat.env.js
View file @
389162ef
...
...
@@ -10,6 +10,6 @@ module.exports = {
filePath
:
'"http://180.104.121.66:8088/r/api/app/fileViewSvc?sysName=XCMG_UAT&apiName=file_view&"'
,
ocrPath
:
'"http://180.104.121.66:8088/r/api"'
,
fileUploadSvcPath
:
'"http://180.104.121.66:8088/r/api/app/fileUploadSvc?sysName=XCMG_UAT&apiName="'
,
appId
:
'"com.xcmg.app
.dev
"'
,
appId
:
'"com.xcmg.app"'
,
currentVersion
:
'"1.3.2"'
}
src/components/pdf/index.js
deleted
100644 → 0
View file @
8f2b5eab
import
PDF
from
'./PDF'
var
$vm
export
default
{
install
(
Vue
,
options
)
{
if
(
!
$vm
)
{
const
PDFPlugin
=
Vue
.
extend
(
PDF
)
$vm
=
new
PDFPlugin
().
$mount
()
document
.
body
.
appendChild
(
$vm
.
$el
)
}
Vue
.
prototype
.
$showPDF
=
function
(
url
)
{
$vm
.
showPDF
(
url
)
}
},
}
src/components/pdf/pdf.vue
deleted
100644 → 0
View file @
8f2b5eab
<
template
>
<div
id=
"containers"
class=
"containers"
>
<!--
<div
class=
'pdf-page'
>
-->
<canvas
id=
"the-canvas"
/>
<div
v-if=
"pdfDoc"
class=
"foot"
>
<button
v-if=
"pageNum>1"
class=
"left"
@
click=
"onPrevPage"
>
上一页
</button>
<button
v-if=
"pageNum
<pdfDoc
.
numPages
"
class=
"right"
@
click=
"onNextPage"
>
下一页
</button>
</div>
<!--
</div>
-->
</div>
</
template
>
<
script
>
import
PDFJS
from
'pdfjs-dist'
export
default
{
data
()
{
return
{
pdfDoc
:
null
,
pageNum
:
1
,
pageRendering
:
false
,
pageNumPending
:
null
,
scale
:
0.9
,
}
},
methods
:
{
showPDF
(
url
)
{
let
_this
=
this
PDFJS
.
getDocument
(
url
).
then
(
function
(
pdf
)
{
_this
.
pdfDoc
=
pdf
_this
.
renderPage
(
1
)
})
},
renderPage
(
num
)
{
this
.
pageRendering
=
true
let
_this
=
this
this
.
pdfDoc
.
getPage
(
num
).
then
(
function
(
page
)
{
var
viewport
=
page
.
getViewport
(
_this
.
scale
)
let
canvas
=
document
.
getElementById
(
'the-canvas'
)
canvas
.
height
=
viewport
.
height
canvas
.
width
=
viewport
.
width
// Render PDF page into canvas context
var
renderContext
=
{
canvasContext
:
canvas
.
getContext
(
'2d'
),
viewport
:
viewport
,
}
var
renderTask
=
page
.
render
(
renderContext
)
// Wait for rendering to finish
renderTask
.
promise
.
then
(
function
()
{
_this
.
pageRendering
=
false
if
(
_this
.
pageNumPending
!==
null
)
{
// New page rendering is pending
this
.
renderPage
(
_this
.
pageNumPending
)
_this
.
pageNumPending
=
null
}
})
})
},
queueRenderPage
(
num
)
{
if
(
this
.
pageRendering
)
{
this
.
pageNumPending
=
num
}
else
{
this
.
renderPage
(
num
)
}
},
onPrevPage
()
{
if
(
this
.
pageNum
<=
1
)
{
return
}
this
.
pageNum
--
this
.
queueRenderPage
(
this
.
pageNum
)
},
onNextPage
()
{
if
(
this
.
pageNum
>=
this
.
pdfDoc
.
numPages
)
{
return
}
this
.
pageNum
++
this
.
queueRenderPage
(
this
.
pageNum
)
},
},
}
</
script
>
<
style
scoped
>
#containers
.containers
{
/* background-color: rgba(0,0,0,0.75); */
position
:
fixed
;
width
:
100%
;
height
:
100%
;
top
:
0
;
left
:
0
;
text-align
:
center
;
padding
:
5px
;
}
.pdf-page
{
}
.foot
{
position
:
fixed
;
transform
:
translate
(
-50%
,
0
);
left
:
50%
;
}
</
style
>
src/pages/contractCreate/creat-rent-info.vue
View file @
389162ef
...
...
@@ -169,7 +169,9 @@
</item>
<item>
<div
slot=
"name"
class=
"required"
>
租赁期数
</div>
<input
slot=
"content"
v-model=
"saveInfo.lease_times"
:readonly=
"isReadOnly"
placeholder=
"请输入租赁期数"
>
<input
slot=
"content"
v-model=
"saveInfo.lease_times"
:readonly=
"isReadOnly"
type=
"number"
placeholder=
"请输入租赁期数"
>
</item>
<item>
<div
slot=
"name"
class=
"required"
>
年利率
</div>
...
...
src/pages/contractCreate/create-enclosure-info.vue
View file @
389162ef
...
...
@@ -78,7 +78,7 @@
<div
v-for=
"(item, index) in mort_upload_list"
v-if=
"item.check_id === mortId"
:key=
"index"
:key=
"index
+'info'
"
class=
"card-upload"
>
<img
:src=
"item.picture"
@
click=
"showBigPicture(item.picture)"
>
...
...
@@ -87,8 +87,8 @@
</div>
</div>
<!--抵押 下载的图片-->
<div
v-for=
"(pic, index) in dowload_list"
:key=
"index"
>
<div
v-if=
"pic.check_id==
checkId"
:key=
"index
"
class=
"card-upload"
>
<div
v-for=
"(pic, index) in dowload_list"
:key=
"index
+'i'
"
>
<div
v-if=
"pic.check_id==
=mortId"
:key=
"index+'info1'
"
class=
"card-upload"
>
<img
:src=
"pic.url"
@
click=
"showBigPicture(pic.url)"
>
<div
class=
"close"
@
click=
"delete_pic(pic.attachment_id)"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
...
...
@@ -105,7 +105,7 @@
<div
v-for=
"(item, index) in upload_list"
v-if=
"item.check_id === checkId"
:key=
"index"
:key=
"index
+'info2'
"
class=
"card-upload"
>
<img
:src=
"item.picture"
@
click=
"showBigPicture(item.picture)"
>
...
...
@@ -114,8 +114,8 @@
</div>
</div>
<!--从服务器上下载的图片-->
<div
v-for=
"(pic, index) in dowload_list"
:key=
"index"
>
<div
v-if=
"pic.check_id==checkId"
:key=
"index"
class=
"card-upload"
>
<div
v-for=
"(pic, index) in dowload_list"
:key=
"index
+'info4'
"
>
<div
v-if=
"pic.check_id==checkId"
:key=
"index
+'info3'
"
class=
"card-upload"
>
<img
:src=
"pic.url"
@
click=
"showBigPicture(pic.url)"
>
<div
class=
"close"
@
click=
"delete_pic(pic.attachment_id)"
>
<img
src=
"@/assets/userBind/deleteIcon.png"
>
...
...
@@ -190,6 +190,7 @@ export default {
vm
.
fromPage
=
window
.
localStorage
.
fromPage
vm
.
loadItemList
()
vm
.
queryCheckId
()
vm
.
queryMortId
()
if
(
vm
.
fromPage
===
'sale'
)
{
vm
.
isReadOnly
=
false
}
else
if
(
vm
.
fromPage
===
'list'
)
{
...
...
@@ -203,6 +204,47 @@ export default {
})
},
methods
:
{
// 抵押证书check_id查询
queryMortId
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'prj_mortgage_query'
let
param
=
{
project_id
:
window
.
localStorage
.
project_id
,
}
vm
.
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
console
.
log
(
'抵押证书check_id查询'
,
res
)
if
(
res
.
result
===
'S'
)
{
vm
.
mortId
=
res
.
info
.
check_id
vm
.
mortgageQuery
()
}
})
},
// 抵押证书查询
mortgageQuery
()
{
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'attachment_list_query'
// 附件查询
let
param
=
{
check_id
:
vm
.
mortId
,
}
hlsPopup
.
showLoading
(
'请稍候'
)
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
result
===
'S'
)
{
res
.
lists
.
forEach
(
item
=>
{
item
[
'url'
]
=
process
.
env
.
filePath
+
'attachment_id='
+
item
.
attachment_id
+
'&access_token='
+
window
.
localStorage
.
access_token
})
vm
.
mort_dowload_list
=
res
.
lists
}
})
},
// 特批证书check_id查询
queryCheckId
()
{
let
vm
=
this
...
...
src/pages/contractSigning/previewPdf.vue
View file @
389162ef
...
...
@@ -65,6 +65,7 @@ export default {
console
.
log
(
'URL ==== '
+
url
)
PDFJS
.
getDocument
(
url
).
then
((
pdf
)
=>
{
this
.
pdfDoc
=
pdf
debugger
console
.
log
(
'pdf ==== '
+
pdf
)
this
.
pages
=
this
.
pdfDoc
.
numPages
this
.
$nextTick
(()
=>
{
...
...
src/pages/financingTrial/financing-details.vue
View file @
389162ef
...
...
@@ -81,7 +81,7 @@
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
租赁期数
</div>
<input
slot=
"content"
v-model=
"info.lease_times"
placeholder=
"请输入租赁期数"
>
<input
slot=
"content"
v-model=
"info.lease_times"
placeholder=
"请输入租赁期数"
type=
"number"
>
</item>
<item>
<div
slot=
"name"
class=
"font-color"
>
年利率
</div>
...
...
src/pages/pwd-forgotten.vue
View file @
389162ef
...
...
@@ -141,8 +141,11 @@ export default {
passwordCheck
()
{
let
vm
=
this
let
length
=
vm
.
user_password
.
length
debugger
if
(
length
<
6
||
length
>
20
)
{
hlsPopup
.
showLongCenter
(
'密码长度6~20位之间'
)
}
else
if
(
new
RegExp
(
'^[0-9]*$'
).
test
(
vm
.
user_password
))
{
hlsPopup
.
showLongCenter
(
'密码不能全为数字'
)
}
else
{
vm
.
passwordFlag
=
true
}
...
...
@@ -153,7 +156,7 @@ export default {
if
(
length
<
6
||
length
>
20
)
{
hlsPopup
.
showLongCenter
(
'密码长度6~20位之间'
)
}
else
if
(
vm
.
confirm
!==
vm
.
user_password
)
{
hlsPopup
.
showLongCenter
(
'两次输入的密码不一致,请
从
新输入'
)
hlsPopup
.
showLongCenter
(
'两次输入的密码不一致,请
重
新输入'
)
}
else
{
vm
.
confirmPassword
=
true
}
...
...
src/pages/regiester2.vue
View file @
389162ef
...
...
@@ -167,6 +167,8 @@ export default {
let
length
=
vm
.
user_password
.
length
if
(
length
<
6
||
length
>
20
)
{
hlsPopup
.
showLongCenter
(
'密码长度6~20位之间'
)
}
else
if
(
new
RegExp
(
'^[0-9]*$'
).
test
(
vm
.
user_password
))
{
hlsPopup
.
showLongCenter
(
'密码不能全为数字'
)
}
else
{
vm
.
passwordFlag
=
true
}
...
...
@@ -195,7 +197,7 @@ export default {
}
else
{
await
vm
.
passwordCheck
()
await
vm
.
confirmCheck
()
if
(
vm
.
passwordFlag
&&
vm
.
confirmPassword
)
{
if
(
vm
.
passwordFlag
&&
vm
.
confirmPassword
)
{
let
url
=
process
.
env
.
basePath
+
'register'
let
md5passwprd
=
CryptoJS
.
MD5
(
vm
.
user_password
)
.
toString
()
...
...
@@ -217,7 +219,6 @@ export default {
}
})
}
}
},
returnLogin
()
{
...
...
www/1e37fad1fce0ebb3e0e5.worker.js
deleted
100644 → 0
View file @
8f2b5eab
This diff is collapsed.
Click to expand it.
www/1e37fad1fce0ebb3e0e5.worker.js.map
deleted
100644 → 0
View file @
8f2b5eab
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