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
96b3f2c7
Commit
96b3f2c7
authored
Nov 26, 2020
by
Jennie Shi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改提示
parent
f00f03a8
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
10 additions
and
3 deletions
+10
-3
bank-info.vue
src/pages/userBindNew/np/bank-info.vue
+2
-0
bankInfo.vue
src/pages/userBindNew/org/bankInfo.vue
+3
-1
hlsPopup.js
src/scripts/hlsPopup.js
+5
-2
No files found.
src/pages/userBindNew/np/bank-info.vue
View file @
96b3f2c7
...
...
@@ -206,6 +206,8 @@ export default {
vm
.
hlsPopup
.
showConfirm
({
title
:
'提示'
,
content
:
'当前用户尚未认证,是否需要验证'
,
cancelText
:
'直接提交'
,
confirmText
:
'先去认证'
,
onConfirm
:
c
=>
{
if
(
c
)
{
// 只有自然人需要认证
...
...
src/pages/userBindNew/org/bankInfo.vue
View file @
96b3f2c7
...
...
@@ -302,7 +302,9 @@ export default {
if
(
vm
.
bp_identity
===
'NP_NO'
||
vm
.
bp_identity
===
'ORG_L_NO'
||
vm
.
bp_identity
===
'ORG_AUTH_NO'
)
{
vm
.
hlsPopup
.
showConfirm
({
title
:
'提示'
,
content
:
'当前用户尚未认证,是否需要验证'
,
content
:
'当前用户尚未认证,是否需要认证'
,
cancelText
:
'直接提交'
,
confirmText
:
'先去认证'
,
onConfirm
:
c
=>
{
if
(
c
)
{
// 只有自然人需要认证
...
...
src/scripts/hlsPopup.js
View file @
96b3f2c7
...
...
@@ -149,13 +149,16 @@ export default {
* @param confirmObject.title 标题
* @param confirmObject.content 内容
* @param confirmObject.onConfirm 确定函数
* @param confirmObject.confirmText 确定函数
* @param confirmObject.cancelText 确定函数
*/
showConfirm
:
function
(
confirmObject
)
{
debugger
let
def
=
{
title
:
confirmObject
.
title
||
'提示'
,
content
:
confirmObject
.
content
||
''
,
confirmText
:
'确定'
,
cancelText
:
'取消'
,
confirmText
:
confirmObject
.
confirmText
||
'确定'
,
cancelText
:
confirmObject
.
cancelText
||
'取消'
,
onConfirm
:
()
=>
{
confirmObject
.
onConfirm
(
1
)
},
...
...
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