Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
cloud-platform-ui
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
youjj
cloud-platform-ui
Commits
5f982893
Commit
5f982893
authored
Apr 29, 2019
by
lixy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
优化申请结果页面
parent
d12255c4
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
4 deletions
+13
-4
error.png
src/assets/images/error.png
+0
-0
success.png
src/assets/images/success.png
+0
-0
index.vue
src/views/baseInfo/stockCrowdDetail/index.vue
+13
-4
No files found.
src/assets/images/error.png
0 → 100644
View file @
5f982893
66.8 KB
src/assets/images/success.png
0 → 100644
View file @
5f982893
37.6 KB
src/views/baseInfo/stockCrowdDetail/index.vue
View file @
5f982893
...
...
@@ -34,8 +34,10 @@
</div>
<!--参与结果页-->
<div
class=
"shoppings main-container flex-jcc-aic-cl"
v-if=
"optionName=='crowdResult'"
>
<img
class=
"success-tip"
src=
"http://218.10.105.196:9007/ipc//img/photo.png"
/>
<h5>
感谢您的参与,后续会有专门的客服与您联系!
</h5>
<img
class=
"success-tip"
v-if=
"img"
src=
"../../../assets/images/success.png"
/>
<img
class=
"success-tip"
v-else=
"!img"
src=
"../../../assets/images/error.png"
/>
<h5
v-if=
"img"
>
感谢您的参与,后续会有专门的客服与您联系!
</h5>
<h5
v-if=
"!img"
>
出错啦,请联系客服!
</h5>
<el-button
@
click=
"goBack()"
>
返回股权众筹页
</el-button>
</div>
</div>
...
...
@@ -109,6 +111,7 @@
companyId
:
undefined
,
count
:
undefined
},
img
:
!
0
,
companyName
:
""
,
//公司名称
rules
:
{
name
:
[
...
...
@@ -187,8 +190,14 @@
checkCount
(
that
.
form
.
count
);
if
(
valid
&&
isPhone
)
{
stockApply
(
this
.
form
)
.
then
(()
=>
{
that
.
optionName
=
"crowdResult"
.
then
(
res
=>
{
that
.
optionName
=
"crowdResult"
;
if
(
res
.
code
==
1
){
that
.
img
=
!
0
;
}
else
{
that
.
img
=
!
1
;
}
})
}
else
{
return
false
;
...
...
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