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
提交
f736ac7f
提交
f736ac7f
编写于
3月 23, 2023
作者:
张磊
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'feature/zl' into 'release'
report btn See merge request
!152
上级
8099f2db
5cc53af6
变更
8
隐藏空白字符变更
内嵌
并排
正在显示
8 个修改的文件
包含
44 行增加
和
8 行删除
+44
-8
index.vue
src/views/appoint/index.vue
+6
-1
index.vue
src/views/appointDetails/index.vue
+11
-1
index.vue
src/views/home/index.vue
+1
-1
insurance-bind-code.vue
src/views/insurance-bind-code/insurance-bind-code.vue
+6
-1
insurance-bindCode-success.vue
...insurance-bindCode-success/insurance-bindCode-success.vue
+6
-1
insurance-detection-detail.vue
...insurance-detection-detail/insurance-detection-detail.vue
+1
-1
insuranceQuestionResult.vue
...ews/insurance-question-result/insuranceQuestionResult.vue
+6
-1
index.vue
src/views/insurance-register/index.vue
+7
-1
未找到文件。
src/views/appoint/index.vue
浏览文件 @
f736ac7f
...
...
@@ -317,7 +317,7 @@ export default {
};
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802852#0#0
'
,
component_tag
:
'
7802852#0#0#预约
'
,
web_data
:{
yunOrderNo
:
yunOrderNo
},
});
this
.
getDetectionName
(
yunOrderNo
);
...
...
@@ -472,6 +472,11 @@ export default {
this
[
name
]
=
false
;
},
appointment
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802852#0#0#预约提交'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
this
.
$refs
.
dectionForm
.
validate
().
then
(
result
=>
{
console
.
log
(
'this.dectionForm'
,
result
);
const
data
=
{
...
...
src/views/appointDetails/index.vue
浏览文件 @
f736ac7f
...
...
@@ -258,7 +258,7 @@ export default {
this
.
$loading
.
hide
();
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802855#0#0
'
,
component_tag
:
'
7802855#0#0#预约详情
'
,
web_data
:{
yunOrderNo
:
yunOrderNo
},
});
},
...
...
@@ -313,6 +313,11 @@ export default {
},
reAppoint
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802855#0#0#重新预约'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
this
.
$router
.
push
({
path
:
'/appoint'
,
query
:
{
...
...
@@ -380,6 +385,11 @@ export default {
bindingCode
()
{
const
{
pprotocolType
,
detectionServiceRecordId
}
=
this
.
detailInfo
;
console
.
log
(
'window.miniProgram'
,
window
.
_miniprogram
);
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802855#0#0#去绑定'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
if
(
window
.
_miniprogram
)
{
const
{
detectionKind
}
=
this
.
insuranceInfo
;
this
.
$rocNative
.
WXInstance
.
miniProgram
.
navigateTo
({
...
...
src/views/home/index.vue
浏览文件 @
f736ac7f
...
...
@@ -59,7 +59,7 @@ export default {
};
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
// 7802854
component_tag
:
'
0000000#7802854#0#0
'
,
component_tag
:
'
7802854#0#0#中转页
'
,
web_data
:
data
,
});
this
.
initMap
(
data
);
...
...
src/views/insurance-bind-code/insurance-bind-code.vue
浏览文件 @
f736ac7f
...
...
@@ -264,7 +264,7 @@ export default {
}
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802846#0#0
'
,
component_tag
:
'
7802846#0#0#绑定条码
'
,
web_data
:{
yunOrderNo
:
yunOrderNo
},
});
},
...
...
@@ -289,6 +289,11 @@ export default {
});
},
toggleBindingInfo
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802846#0#0#绑定按钮'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
if
(
!
this
.
isCheck
&&
this
.
pprotocolType
)
{
this
.
goProtocol
();
}
else
{
...
...
src/views/insurance-bindCode-success/insurance-bindCode-success.vue
浏览文件 @
f736ac7f
...
...
@@ -125,7 +125,7 @@ export default {
mounted
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802847#0#0
'
,
component_tag
:
'
7802847#0#0#绑定成功页面
'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
},
...
...
@@ -149,6 +149,11 @@ export default {
bottomBtnFun
()
{
const
in_info
=
store
.
get
(
'insuranceInfo'
);
const
url
=
in_info
.
detectionKind
==
1
?
'/insuranceQuickDetectionDetail'
:
'/insuranceDetectionDetail'
;
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802847#0#0#查看我的检测'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
this
.
$router
.
push
({
path
:
url
,
query
:
{
...
...
src/views/insurance-detection-detail/insurance-detection-detail.vue
浏览文件 @
f736ac7f
...
...
@@ -253,7 +253,7 @@ export default {
mounted
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802848#0#0
'
,
component_tag
:
'
7802848#0#0#检测详情页面
'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
},
...
...
src/views/insurance-question-result/insuranceQuestionResult.vue
浏览文件 @
f736ac7f
...
...
@@ -131,7 +131,7 @@ export default {
this
.
getDetectionName
(
query
.
yunOrderNo
);
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802850#0#0
'
,
component_tag
:
'
7802850#0#0#问卷结果页面
'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
this
.
$loading
.
hide
();
...
...
@@ -162,6 +162,11 @@ export default {
},
// 去预约
toAppoint
()
{
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802850#0#0'
,
web_data
:{
yunOrderNo
:
this
.
yunOrderNo
},
});
if
(
this
.
buttonStatus
)
{
const
{
projectEquityNo
,
externalOrderNo
,
yunOrderNo
}
=
this
.
query
;
console
.
log
(
'this.query'
,
this
.
query
);
...
...
src/views/insurance-register/index.vue
浏览文件 @
f736ac7f
...
...
@@ -130,7 +130,7 @@ export default {
const
{
projectEquityNo
}
=
this
.
$route
.
query
;
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_AFTER'
,
component_tag
:
'
0000000#7802857#0#0
'
,
component_tag
:
'
7802857#0#0#肠癌早筛权益优先领取登记
'
,
web_data
:{
projectEquityNo
:
projectEquityNo
},
});
},
...
...
@@ -150,6 +150,12 @@ export default {
},
appointment
()
{
const
{
projectEquityNo
,
hospitalId
}
=
this
.
$route
.
query
;
this
.
$sendBuriedData
({
action
:
'ACTION_WEB_CLICK'
,
component_tag
:
'7802857#0#0#免费领取'
,
web_data
:{
projectEquityNo
:
projectEquityNo
},
});
this
.
$refs
.
dectionForm
.
validate
().
then
(
result
=>
{
console
.
log
(
'this.dectionForm'
,
result
);
const
data
=
{
...
...
写
预览
Markdown
格式
0%
请重试
or
附加一个文件
附加文件
取消
您添加了
0
人
到此讨论。请谨慎行事。
先完成此消息的编辑!
取消
想要评论请
注册
或
登录