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
0dfac473
Commit
0dfac473
authored
Dec 20, 2019
by
李晓兵
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' of
https://hel.hand-china.com/xugong/hls-xcmg-vue-app
into develop
parents
9b6078e9
3352ddd9
Pipeline
#4273
canceled with stages
Changes
8
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
1241 additions
and
87 deletions
+1241
-87
finished.png
src/assets/contractCreate/finished.png
+0
-0
hint.png
src/assets/contractCreate/hint.png
+0
-0
creat-rent-info.vue
src/pages/contractCreate/creat-rent-info.vue
+570
-8
create-base-info.vue
src/pages/contractCreate/create-base-info.vue
+239
-40
sales-info.vue
src/pages/contractCreate/sales-info.vue
+366
-37
contract-repay-plan.vue
src/pages/contractSigning/contract-repay-plan.vue
+1
-1
contract-details.vue
src/pages/distributorSign/contract-details.vue
+64
-1
my-info.vue
src/pages/myInfo/my-info.vue
+1
-0
No files found.
src/assets/contractCreate/finished.png
0 → 100644
View file @
0dfac473
1006 Bytes
src/assets/contractCreate/hint.png
0 → 100644
View file @
0dfac473
823 Bytes
src/pages/contractCreate/creat-rent-info.vue
View file @
0dfac473
This diff is collapsed.
Click to expand it.
src/pages/contractCreate/create-base-info.vue
View file @
0dfac473
This diff is collapsed.
Click to expand it.
src/pages/contractCreate/sales-info.vue
View file @
0dfac473
This diff is collapsed.
Click to expand it.
src/pages/contractSigning/contract-repay-plan.vue
View file @
0dfac473
...
...
@@ -87,7 +87,7 @@ export default {
watch
:
{},
beforeRouteEnter
(
to
,
from
,
next
)
{
next
(
vm
=>
{
if
(
from
.
name
===
'ContractDetail'
)
{
if
(
from
.
name
===
'ContractDetail'
||
from
.
name
===
'CreateRentInfo'
)
{
vm
.
product_num
=
vm
.
$route
.
params
.
product_num
vm
.
getInfo
()
}
...
...
src/pages/distributorSign/contract-details.vue
View file @
0dfac473
...
...
@@ -2,7 +2,7 @@
* @Description: 合同详情
* @Author: your name
* @Date: 2019-09-25 15:38:21
* @LastEditTime: 2019-1
1-28 17:42:24
* @LastEditTime: 2019-1
2-20 15:36:19
* @LastEditors: Please set LastEditors
-->
<
template
>
...
...
@@ -167,6 +167,16 @@
</list-item>
</h-content>
<bottom-tab
v-show=
"confirm_status!=='APPROVED'&&tabNum === 0"
class=
"footer-button"
>
<tab-button
class=
"approve"
@
click
.
native=
"goBodyCheck"
>
活体检测
</tab-button>
</bottom-tab>
<bottom-tab
v-show=
"confirm_status!=='APPROVED'&&tabNum === 0"
class=
"footer-button"
>
<tab-button
class=
"approve"
@
click
.
native=
"goElectronicSign"
>
电子签
</tab-button>
</bottom-tab>
<bottom-tab
v-if=
"confirm_status!=='APPROVED'"
class=
"footer-button"
>
<tab-button
class=
"approve"
@
click
.
native=
"contractConfirm('APPROVED')"
>
确认签约
...
...
@@ -250,6 +260,33 @@ export default {
created
()
{},
methods
:
{
goBodyCheck
()
{
// 活体检测
this
.
$router
.
push
({
name
:
'BodyCheck'
,
})
},
goElectronicSign
()
{
// 电子签
let
vm
=
this
let
url
=
process
.
env
.
basePath
+
'get_sign_url'
let
param
=
{
confirm_id
:
vm
.
confirm_id
,
data_class
:
'PRJ_PROJECT'
,
}
vm
.
hlsPopup
.
showLoading
(
'请稍后'
)
vm
.
hlsHttp
.
post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
()
if
(
res
.
info
.
msg
===
'success'
)
{
vm
.
$router
.
push
({
name
:
'ElectronicSign'
,
params
:
{
url
:
res
.
info
.
data
.
url
,
},
})
}
else
{
vm
.
hlsPopup
.
showLongCenter
(
res
.
info
.
msg
)
}
})
},
// 签约确认
contractConfirm
(
status
)
{
let
vm
=
this
...
...
@@ -766,6 +803,32 @@ export default {
}
}
}
.footer-button:nth-of-type(1) {
bottom: 92px;
.approve {
width: 358.6px;
height: 44px;
background: @headerColor;
border-radius: 4px;
color: #fff;
font-family: PingFangSC-Semibold;
font-size: 15px;
line-height: 20px;
}
}
.footer-button:nth-of-type(2) {
bottom: 46px;
.approve {
width: 358.6px;
height: 44px;
background: @headerColor;
border-radius: 4px;
color: #fff;
font-family: PingFangSC-Semibold;
font-size: 15px;
line-height: 20px;
}
}
.approveContent {
position: absolute;
top: 50%;
...
...
src/pages/myInfo/my-info.vue
View file @
0dfac473
...
...
@@ -724,6 +724,7 @@ export default {
window
.
localStorage
.
setItem
(
'user_bp_status'
,
res
.
info
.
user_bp_status
)
window
.
localStorage
.
setItem
(
'bp_name'
,
res
.
info
.
user_bp_name
)
window
.
localStorage
.
setItem
(
'bp_identity'
,
res
.
info
.
bp_identity
)
window
.
localStorage
.
setItem
(
'bp_class'
,
res
.
info
.
user_bp_class
)
vm
.
user_bp_name
=
res
.
info
.
user_bp_name
vm
.
user_bp_type
=
res
.
info
.
user_bp_type
vm
.
user_phone
=
res
.
info
.
user_phone
...
...
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