Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
quxiu
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
冷斌
quxiu
Commits
7c28597f
Commit
7c28597f
authored
May 10, 2020
by
冷斌
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix bug
parent
b62a4c99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
4 deletions
+23
-4
themes/simplebootx/Appapi/Profit/auth.html
+23
-4
No files found.
themes/simplebootx/Appapi/Profit/auth.html
View file @
7c28597f
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
<!-- 状态 -->
<!-- 状态 -->
<!-- <div class="statusOne">正在审核中,请耐心等待</div> -->
<!-- <div class="statusOne">正在审核中,请耐心等待</div> -->
<
!-- <div class="statusTwo">审核失败,请重新填写!</div> --
>
<
div
class=
"statusTwo"
>
审核失败,请重新填写!
</div
>
<!-- 上传身份证 -->
<!-- 上传身份证 -->
<div
class=
"part"
>
<div
class=
"part"
>
<div
class=
"part_name"
>
上传身份证
</div>
<div
class=
"part_name"
>
上传身份证
</div>
...
@@ -91,9 +91,7 @@
...
@@ -91,9 +91,7 @@
var
vm
=
new
Vue
({
var
vm
=
new
Vue
({
el
:
'#app'
,
el
:
'#app'
,
data
:
{
data
:
{
//数据集
certification
:
0
,
status
:
''
,
// 审核状态
},
},
methods
:
{
methods
:
{
//事件
//事件
...
@@ -104,6 +102,27 @@
...
@@ -104,6 +102,27 @@
},
},
created
:
function
()
{
created
:
function
()
{
//加载触发函数
//加载触发函数
let
_this
=
this
;
let
url
=
_this
.
url
(
'/index.php?g=Appapi&m=Profit&a=info'
);
sessionStorage
.
removeItem
(
"source"
);
$
.
ajax
({
url
:
url
,
dataType
:
"json"
,
type
:
"GET"
,
success
:
function
(
data
){
console
.
log
(
data
)
if
(
data
.
ret
==
200
){
let
d
=
data
.
data
;
_this
.
identity
=
d
.
identity
;
_this
.
certification
=
d
.
certification
;
}
else
{
layer
.
msg
(
data
.
msg
);
}
},
error
:
function
(
e
){
layer
.
msg
(
e
.
msg
);
}
})
}
}
});
});
</script>
</script>
...
...
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