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
b775174e
Commit
b775174e
authored
Jun 01, 2021
by
jiacheng.mao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
用户绑定界面,注册资本,资产信息字段调整
parent
2a9defad
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
base-info.vue
src/pages/userBindNew/np/base-info.vue
+6
-0
baseInfo.vue
src/pages/userBindNew/org/baseInfo.vue
+16
-1
No files found.
src/pages/userBindNew/np/base-info.vue
View file @
b775174e
...
@@ -203,6 +203,10 @@
...
@@ -203,6 +203,10 @@
@
input=
"addRowsLive(baseInfo.living_address)"
@
input=
"addRowsLive(baseInfo.living_address)"
/>
/>
</item>
</item>
<item>
<div
slot=
"name"
class=
"required"
>
资产信息
</div>
<input
slot=
"content"
v-model=
"baseInfo.capital"
placeholder=
"请输入资产信息"
>
</item>
<item
:showArrow=
"true"
>
<item
:showArrow=
"true"
>
<div
slot=
"name"
class=
"required"
>
学历
</div>
<div
slot=
"name"
class=
"required"
>
学历
</div>
<input
<input
...
@@ -1020,6 +1024,8 @@ export default {
...
@@ -1020,6 +1024,8 @@ export default {
vm
.
hlsPopup
.
showLongCenter
(
'业务办理省不能为空!'
)
vm
.
hlsPopup
.
showLongCenter
(
'业务办理省不能为空!'
)
}
else
if
(
!
vm
.
baseInfo
.
city_name
)
{
}
else
if
(
!
vm
.
baseInfo
.
city_name
)
{
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
}
else
if
(
!
vm
.
baseInfo
.
capital
)
{
vm
.
hlsPopup
.
showLongCenter
(
'资产信息不能为空!'
)
}
else
if
(
!
vm
.
baseInfo
.
academic_background
)
{
}
else
if
(
!
vm
.
baseInfo
.
academic_background
)
{
vm
.
hlsPopup
.
showLongCenter
(
'学历不能为空!'
)
vm
.
hlsPopup
.
showLongCenter
(
'学历不能为空!'
)
}
else
if
(
!
vm
.
baseInfo
.
marital_status
&&
(((
vm
.
baseInfo
.
bp_type
===
'TENANT'
||
vm
.
baseInfo
.
bp_type
===
'GUTA'
)
&&
!
vm
.
multipleRole
)
||
vm
.
multipleRole
===
'TENANT'
||
vm
.
multipleRole
===
'GUTA'
))
{
}
else
if
(
!
vm
.
baseInfo
.
marital_status
&&
(((
vm
.
baseInfo
.
bp_type
===
'TENANT'
||
vm
.
baseInfo
.
bp_type
===
'GUTA'
)
&&
!
vm
.
multipleRole
)
||
vm
.
multipleRole
===
'TENANT'
||
vm
.
multipleRole
===
'GUTA'
))
{
...
...
src/pages/userBindNew/org/baseInfo.vue
View file @
b775174e
...
@@ -122,7 +122,7 @@
...
@@ -122,7 +122,7 @@
<input
<input
slot=
"content"
slot=
"content"
v-model=
"baseInfo.registered_capital"
v-model=
"baseInfo.registered_capital"
placeholder=
"
上传营业执照自动填充
"
placeholder=
"
参考格式:3000万元
"
class=
"auto"
class=
"auto"
>
>
</item>
</item>
...
@@ -196,6 +196,8 @@
...
@@ -196,6 +196,8 @@
@
input=
"addRowsLive(baseInfo.business_address)"
@
input=
"addRowsLive(baseInfo.business_address)"
/>
/>
</item>
</item>
<div
slot=
"name"
class=
"required"
>
资产信息
</div>
<input
slot=
"content"
v-model=
"baseInfo.capital"
readonly
placeholder=
"请输入资产信息"
>
<item>
<item>
<div
slot=
"name"
class=
"font-color"
>
固定电话
</div>
<div
slot=
"name"
class=
"font-color"
>
固定电话
</div>
<input
<input
...
@@ -1083,6 +1085,15 @@ export default {
...
@@ -1083,6 +1085,15 @@ export default {
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
return
return
}
}
if
(
!
vm
.
baseInfo
.
capital
)
{
vm
.
hlsPopup
.
showLongCenter
(
'资产信息不能为空!'
)
return
}
var
reg
=
new
RegExp
(
"^[0-9]*$"
);
if
(
vm
.
baseInfo
.
registered_capital
.
indexOf
(
'万元'
)
==
-
1
||
!
reg
.
test
(
vm
.
baseInfo
.
registered_capital
.
replace
(
'万元'
,
''
))
||
vm
.
baseInfo
.
registered_capital
.
replace
(
'万元'
,
''
).
length
==
0
)
{
vm
.
hlsPopup
.
showLongCenter
(
'请输入正确格式的注册资本!(例如:3000万元)'
)
return
}
for
(
var
key
in
vm
.
lastInfo
)
{
for
(
var
key
in
vm
.
lastInfo
)
{
if
(
!
vm
.
lastInfo
[
key
]
&&
key
!==
'phone'
)
{
if
(
!
vm
.
lastInfo
[
key
]
&&
key
!==
'phone'
)
{
switch
(
key
)
{
switch
(
key
)
{
...
@@ -1185,6 +1196,10 @@ export default {
...
@@ -1185,6 +1196,10 @@ export default {
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
vm
.
hlsPopup
.
showLongCenter
(
'业务办理市不能为空!'
)
return
return
}
}
if
(
!
vm
.
baseInfo
.
capital
)
{
vm
.
hlsPopup
.
showLongCenter
(
'资产信息不能为空!'
)
return
}
for
(
var
key1
in
vm
.
lastInfo
)
{
for
(
var
key1
in
vm
.
lastInfo
)
{
if
(
!
vm
.
lastInfo
[
key1
]
&&
key1
!==
'phone'
)
{
if
(
!
vm
.
lastInfo
[
key1
]
&&
key1
!==
'phone'
)
{
console
.
log
(
'key'
,
key1
)
console
.
log
(
'key'
,
key1
)
...
...
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