Skip to content
项目
群组
代码片段
帮助
正在加载...
帮助
提交反馈
为 GitLab 提交贡献
登录
切换导航
P
pica-insurance
项目
项目
详情
动态
版本
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
计划
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
收起侧边栏
Close sidebar
动态
分支图
统计图
创建新议题
作业
提交
议题看板
打开侧边栏
com.pica.cloud.frontend
pica-insurance
提交
f841d4c0
提交
f841d4c0
编写于
6月 28, 2023
作者:
张磊
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/zl' into 'release'
lz-insurance See merge request
!258
上级
2b21efb1
5eae1572
变更
1
隐藏空白字符变更
内嵌
并排
正在显示
1 个修改的文件
包含
88 行增加
和
47 行删除
+88
-47
index.vue
src/views/sz-public-new/index.vue
+88
-47
未找到文件。
src/views/sz-public-new/index.vue
浏览文件 @
f841d4c0
...
@@ -6,22 +6,18 @@
...
@@ -6,22 +6,18 @@
:header-info=
"headerInfo"
:header-info=
"headerInfo"
/>
/>
<div
class=
"insurance-register-bg"
>
<div
class=
"insurance-register-bg"
>
<div
class=
"bg-img"
>
<div
class=
"bg-img
back-img
"
>
<img
<img
src=
"https://files.yunqueyi.com/image/png/common/2023061315234016.png"
:src=
"bgPath"
alt=
"success"
>
>
</div>
</div>
<div
class=
"wrap-reg"
>
<div
class=
"wrap-reg"
>
<div
class=
"sz-appoint-form-tips"
>
<van-icon
name=
"warning-o"
class=
"tips-icon"
/>
请如实填写参保人信息,我们将对您的身份进行核验。
</div>
<div
class=
"choose-section"
>
<div
class=
"choose-section"
>
<div
class=
"sz-appoint-form-tips"
>
<img
src=
"https://files.yunqueyi.com/image/png/common/20230628155802981.png"
>
</div>
<van-form
<van-form
ref=
"dectionForm"
ref=
"dectionForm"
validate-first
validate-first
...
@@ -77,18 +73,27 @@
...
@@ -77,18 +73,27 @@
</van-field>
</van-field>
</van-form>
</van-form>
</div>
</div>
<van-button
<div
class=
"bg-img mt20"
>
round
<img
block
src=
"https://files.yunqueyi.com/image/png/common/20230628141616682.png"
type=
"info"
>
:disabled=
"!canSubmit"
</div>
class=
"appoint-form-submit "
<div
class=
"bg-img mt20"
>
:class=
"canSubmit ? 'appoint-form-submit-active':''"
<img
@
click=
"appointment"
src=
"https://files.yunqueyi.com/image/png/common/20230628141650960.png"
>
>
预约领取
</div>
</van-button>
</div>
</div>
</div>
<div
class=
"bottom-btn"
>
<van-button
class=
"btn"
:class=
"canSubmit ? 'appoint-form-submit-active':''"
@
click=
"appointment"
>
领取权益
</van-button>
</div>
</div>
<van-popup
<van-popup
v-model=
"showProtocol"
v-model=
"showProtocol"
...
@@ -126,6 +131,7 @@
...
@@ -126,6 +131,7 @@
<
script
>
<
script
>
import
{
createOrderSzV2
}
from
'@/api/question'
;
import
{
createOrderSzV2
}
from
'@/api/question'
;
import
{
getBanner
}
from
'@/api/entitlement'
;
const
{
VUE_APP_ENV
}
=
process
.
env
;
const
{
VUE_APP_ENV
}
=
process
.
env
;
let
that
;
let
that
;
export
default
{
export
default
{
...
@@ -154,6 +160,7 @@ export default {
...
@@ -154,6 +160,7 @@ export default {
path
:
'pagesInsurance/all-entrance/index'
,
// 打开页面
path
:
'pagesInsurance/all-entrance/index'
,
// 打开页面
extraData
:
JSON
.
stringify
({})
extraData
:
JSON
.
stringify
({})
},
},
bgPath
:
''
};
};
},
},
computed
:
{
computed
:
{
...
@@ -172,10 +179,20 @@ export default {
...
@@ -172,10 +179,20 @@ export default {
this
.
projectEquityNo
=
projectEquityNo
;
this
.
projectEquityNo
=
projectEquityNo
;
this
.
externalOrderNo
=
externalOrderNo
;
this
.
externalOrderNo
=
externalOrderNo
;
// this.$loading.show();
// this.$loading.show();
this
.
getBanner
(
7
,
projectEquityNo
);
},
},
methods
:
{
methods
:
{
getBanner
(
pageType
,
yunOrderNo
)
{
const
self
=
this
;
self
.
$loading
.
show
();
getBanner
(
pageType
,
yunOrderNo
).
then
(
res
=>
{
if
(
res
.
code
===
'000000'
)
{
self
.
bgPath
=
res
.
data
.
logoUrl
;
self
.
$loading
.
hide
();
}
});
},
// 创建深圳订单
// 创建深圳订单
createOrderSz
()
{
createOrderSz
()
{
const
{
externalOrderNo
,
projectEquityNo
}
=
this
;
const
{
externalOrderNo
,
projectEquityNo
}
=
this
;
...
@@ -233,16 +250,15 @@ export default {
...
@@ -233,16 +250,15 @@ export default {
<
style
lang=
"scss"
scoped
>
<
style
lang=
"scss"
scoped
>
.sz-appoint
{
.sz-appoint
{
width
:
100%
;
width
:
100%
;
height
:
100vh
;
overflow
:
auto
;
overflow
:
auto
;
box-sizing
:
border-box
;
box-sizing
:
border-box
;
color
:
#ffffff
;
padding-bottom
:
70px
;
background
:
#F3FCFF
;
background
-color
:
#BEE2FD
;
.insurance-register-bg
{
.insurance-register-bg
{
width
:
100%
;
width
:
100%
;
position
:
relative
;
.bg-img
{
.bg-img
{
width
:
100%
;
width
:
100%
;
img
{
img
{
width
:
100%
;
width
:
100%
;
height
:
100%
;
height
:
100%
;
...
@@ -250,20 +266,24 @@ export default {
...
@@ -250,20 +266,24 @@ export default {
}
}
.wrap-reg
{
.wrap-reg
{
width
:
350px
;
width
:
350px
;
background
:
linear-gradient
(
180deg
,
#FFFFFF
0%
,
#FFFFFF
100%
);
box-shadow
:
0px
18px
12px
0px
#EBF9F8
;
border-radius
:
20px
;
border-radius
:
20px
;
position
:
absolute
;
margin
:
0
auto
;
top
:
93px
;
margin-top
:
230px
;
left
:
13px
;
position
:
relative
;
}
}
}
}
.back-img
{
position
:
absolute
;
top
:
0
;
}
.choose-section
{
.choose-section
{
padding
:
10px
12px
;
padding
:
10px
12px
;
background
:
#ffffff
;
background
:
#ffffff
;
border-radius
:
11px
;
border-radius
:
11px
;
font-weight
:
600
;
font-weight
:
600
;
padding-top
:
0px
;
margin
:
0
auto
;
/
deep
/
.van-field__label
{
/
deep
/
.van-field__label
{
color
:
#212121
;
color
:
#212121
;
}
}
...
@@ -331,21 +351,12 @@ export default {
...
@@ -331,21 +351,12 @@ export default {
font-size
:
16px
;
font-size
:
16px
;
font-weight
:
600
;
font-weight
:
600
;
}
}
.appoint-form-submit-active
{
background
:
#00BDA5
;
}
.sz-appoint-form-tips
{
.sz-appoint-form-tips
{
display
:
flex
;
width
:
175px
;
padding
:
10px
15px
;
height
:
32px
;
background
:
linear-gradient
(
99deg
,
#fffbe5
0%
,
#fdfcf8
100%
);
margin
:
0
auto
;
border-radius
:
22px
22px
0px
0px
;
margin-bottom
:
10px
;
font-size
:
12px
;
font-weight
:
400
;
color
:
#dc780c
;
align-items
:
center
;
.tips-icon
{
margin-right
:
7px
;
}
}
}
/
deep
/
.van-cell
{
/
deep
/
.van-cell
{
display
:
block
;
display
:
block
;
...
@@ -389,5 +400,35 @@ export default {
...
@@ -389,5 +400,35 @@ export default {
/
deep
/
.van-popup--center
{
/
deep
/
.van-popup--center
{
border-radius
:
20px
;
border-radius
:
20px
;
}
}
.bottom-btn
{
width
:
100%
;
background
:
#FFFFFF
;
box-shadow
:
inset
0px
1px
0px
0px
#E9E9E9
;
overflow
:
hidden
;
text-align
:
center
;
padding-bottom
:
calc
(
5px
+
env
(
safe-area-inset-bottom
)
/
2
);
position
:
fixed
;
bottom
:
0
;
left
:
0
;
.btn
{
width
:
351px
;
height
:
40px
;
border-radius
:
20px
;
margin
:
4px
auto
;
font-size
:
16px
;
background
:
#cccccc
;
font-weight
:
600
;
color
:
#FFFFFF
;
line-height
:
40px
;
text-align
:
center
;
}
.appoint-form-submit-active
{
background
:
linear-gradient
(
270deg
,
#FF7400
0%
,
#FE4000
100%
);
}
}
.mt20
{
margin-top
:
10px
;
background-color
:
#BEE2FD
;
}
}
}
</
style
>
</
style
>
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录