Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hls-rljj-wx
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
rl
hls-rljj-wx
Commits
1cedf6a1
Commit
1cedf6a1
authored
May 20, 2020
by
5359
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
增加用户注册校验和注册信息清除
parent
6fc060d8
Pipeline
#6288
canceled with stages
Changes
4
Pipelines
1
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
767 additions
and
667 deletions
+767
-667
companyRegister.vue
src/pages/applications/userRegisters/companyRegister.vue
+41
-4
personalRegister.vue
src/pages/applications/userRegisters/personalRegister.vue
+342
-307
userRegister.vue
src/pages/applications/userRegisters/userRegister.vue
+1
-1
home.vue
src/pages/home.vue
+383
-355
No files found.
src/pages/applications/userRegisters/companyRegister.vue
View file @
1cedf6a1
...
...
@@ -3,11 +3,11 @@
<h-content
v-if=
"status != '成功'"
>
<list-item
class=
"reg-content"
>
<!--
<div
class=
"repre-type"
v-if=
"faceAuthStatus != 'SUCCESS'"
>
<input
type=
"radio"
name=
"agent"
v-model=
"agentType"
@
change=
"isAgent"
value=
"Y"
/>
代理店
<input
style=
"margin-left:32px"
type=
"radio"
...
...
@@ -230,6 +230,13 @@
left: 50%;"
@
click=
"next_step()"
>
下一步
</button>
<p/>
<button
v-if=
"showStatus== 1"
@
click=
"go_forword()"
class=
"next-step"
style=
"margin-top:20px"
>
退出
</button>
</div>
<!-- 组织其他员工 -->
...
...
@@ -421,6 +428,13 @@
</div>
</div>
<button
class=
"next-step"
@
click=
"next_step_oth()"
>
下一步
</button>
<p/>
<button
v-if=
"showStatus== 1"
@
click=
"go_forword()"
class=
"next-step"
style=
"margin-top:20px"
>
退出
</button>
</div>
</list-item>
</h-content>
...
...
@@ -766,7 +780,8 @@ export default {
faceAuthStatus
:
""
,
orgAuthStatus
:
""
,
authAttachmentId
:
""
,
authOrgAttachmentId
:
""
authOrgAttachmentId
:
""
,
showStatus
:
""
,
};
},
...
...
@@ -1190,6 +1205,27 @@ export default {
}
});
},
// 退出
go_forword
()
{
let
vm
=
this
;
let
url
=
process
.
env
.
rootPath
+
"/accounts/outerAccounts/delete"
;
let
param
=
{
openId
:
window
.
localStorage
.
openId
};
vm
.
hlsPopup
.
showLoading
(
"请稍等"
);
vm
.
$post
(
url
,
param
).
then
(
function
(
res
)
{
vm
.
hlsPopup
.
hideLoading
();
if
(
res
.
code
==
0
)
{
vm
.
$vux
.
toast
.
text
(
res
.
message
,
"middle"
);
window
.
open
(
"http://lease.hitachics.com/www/#/UserRegister"
,
"_self"
);
}
else
{
vm
.
$vux
.
toast
.
text
(
res
.
message
,
"middle"
);
}
});
},
// 认证结果返回给接口
authResult
(
id
,
code
,
suc
)
{
let
vm
=
this
;
...
...
@@ -1242,6 +1278,7 @@ export default {
vm
.
faceAuthStatus
=
data
.
faceAuthStatus
;
vm
.
orgAuthStatus
=
data
.
orgAuthStatus
;
vm
.
agentType
=
data
.
dealerFlag
?
data
.
dealerFlag
:
"Y"
;
vm
.
showStatus
=
"1"
;
if
(
data
.
ctitype
==
2
)
{
if
(
data
.
agentType
==
1
)
{
//法定代表人
...
...
src/pages/applications/userRegisters/personalRegister.vue
View file @
1cedf6a1
This diff is collapsed.
Click to expand it.
src/pages/applications/userRegisters/userRegister.vue
View file @
1cedf6a1
...
...
@@ -40,7 +40,7 @@ export default {
isClick2
:
false
,
isHighLight
:
true
,
isHighLight1
:
true
,
isReadOnlyPersonal
:
tru
e
,
isReadOnlyPersonal
:
fals
e
,
isReadOnlyCompany
:
false
,
userInfo
:
null
,
userInfo1
:
null
,
...
...
src/pages/home.vue
View file @
1cedf6a1
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