Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
x-training
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
x-training
Commits
3980d508
提交
3980d508
authored
2月 10, 2021
作者:
lihuihui
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改bug
上级
5d7eaeb7
显示空白字符变更
内嵌
并排
正在显示
10 个修改的文件
包含
111 行增加
和
19 行删除
+111
-19
explain.vue
src/pages/home/explain.vue
+1
-0
practice1.vue
src/pages/practice/components/practice1.vue
+3
-0
practice2.vue
src/pages/practice/components/practice2.vue
+18
-5
tabForm1.vue
src/pages/practice/components/tabForm1.vue
+15
-2
tabForm2.vue
src/pages/practice/components/tabForm2.vue
+11
-2
tabForm3.vue
src/pages/practice/components/tabForm3.vue
+15
-2
tabForm4.vue
src/pages/practice/components/tabForm4.vue
+11
-2
tabForm5.vue
src/pages/practice/components/tabForm5.vue
+11
-2
tabForm6.vue
src/pages/practice/components/tabForm6.vue
+11
-2
tabForm7.vue
src/pages/practice/components/tabForm7.vue
+15
-2
没有找到文件。
src/pages/home/explain.vue
浏览文件 @
3980d508
...
...
@@ -40,6 +40,7 @@ export default {
// transform: translateY(-50%);
width
:
750px
;
height
:
534px
;
display
:
block
;
}
.title
{
text-align
:
center
;
...
...
src/pages/practice/components/practice1.vue
浏览文件 @
3980d508
...
...
@@ -134,12 +134,15 @@ export default {
}).
catch
(()
=>
{
if
(
proForm
)
{
this
.
tabIndex
=
0
return
false
}
if
(
fundForm
)
{
this
.
tabIndex
=
1
return
false
}
if
(
invForm
)
{
this
.
tabIndex
=
2
return
false
}
})
}
else
{
...
...
src/pages/practice/components/practice2.vue
浏览文件 @
3980d508
...
...
@@ -54,6 +54,9 @@
<img
src=
"https://zws-imgs-pub.ezijing.com/static/public/14cd9f545600187e8d5be61f6e98cd2c.png"
alt=
""
>
</div>
<div
class=
"item-right"
>
<div
class=
"swiper-container"
>
<div
class=
"swiper-wrapper"
>
<div
class=
"swiper-slide"
>
<ul
class=
"setHeight2"
>
<
template
v-for=
"(item, index) in checkboxData"
>
<li
:key=
"index"
>
...
...
@@ -69,6 +72,11 @@
</li>
</
template
>
</ul>
</div>
</div>
<!-- 如果需要滚动条 -->
<div
class=
"swiper-scrollbar"
></div>
</div>
<div
class=
"foot-btn-box"
>
<div
class=
"btn-box"
>
<
template
v-if=
"resultCharacteristic.deduct_score_times >= 3"
>
...
...
@@ -113,15 +121,20 @@ export default {
this
.
countDomHeight
()
const
caseStorageData
=
JSON
.
parse
(
window
.
sessionStorage
.
caseData
)
this
.
data
=
caseStorageData
console
.
log
(
caseStorageData
,
'===123'
)
this
.
checkboxData
=
caseStorageData
.
characteristics
[
0
].
options
.
map
(
item
=>
{
item
.
answerCount
=
[]
const
dataArr
=
[]
console
.
log
(
item
)
item
.
options
.
map
(
c
=>
{
dataArr
.
push
(
c
.
option
)
})
item
.
answerCount
=
dataArr
item
.
options
.
map
(
chi
=>
{
chi
.
answer
=
0
return
chi
})
return
item
})
console
.
log
(
this
.
checkboxData
,
'123---123'
)
},
methods
:
{
getOptData
(
item
)
{
...
...
@@ -376,9 +389,9 @@ export default {
display
:
flex
;
align-items
:
center
;
height
:
72px
;
&
:
:-
webkit-scrollbar
{
display
:none
;
}
//
&::-webkit-scrollbar{
//
display:none;
//
}
}
.name
{
min-width
:
88px
;
...
...
src/pages/practice/components/tabForm1.vue
浏览文件 @
3980d508
...
...
@@ -185,7 +185,20 @@ export default {
select2Options
:
[],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
select5Options
:
[
{
value
:
1
,
label
:
'登录'
},
{
value
:
2
,
label
:
'点击banner'
},
{
value
:
3
,
label
:
'收藏'
}
],
select6Options
:
[]
}
},
...
...
@@ -195,7 +208,7 @@ export default {
this
.
setArrData
([
'不再弹出'
,
'限制次数内弹出'
,
'每次弹出'
],
'select3Options'
)
this
.
setArrData
([
'天'
,
'小时'
],
'select4Options'
)
this
.
setArrData
([
'立即显示弹窗'
,
'在用户后续访问到指定页面时弹窗'
],
'select6Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm2.vue
浏览文件 @
3980d508
...
...
@@ -167,7 +167,16 @@ export default {
}
],
select1Options
:
[],
select2Options
:
[],
select2Options
:
[
{
value
:
1
,
label
:
'连续7日未登录'
},
{
value
:
2
,
label
:
'连续30日未登录'
}
],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
...
...
@@ -184,7 +193,7 @@ export default {
this
.
setArrData
([
'1号'
,
'2号'
,
'3号'
,
'4号'
,
'5号'
,
'6号'
,
'7号'
,
'8号'
,
'9号'
,
'10号'
,
'11号'
,
'12号'
,
'13号'
,
'14号'
,
'15号'
,
'16号'
,
'17号'
,
'18号'
,
'19号'
,
'20号'
,
'21号'
,
'22号'
,
'23号'
,
'24号'
,
'25号'
,
'26号'
,
'27号'
,
'28号'
],
'select7Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm3.vue
浏览文件 @
3980d508
...
...
@@ -93,7 +93,20 @@ export default {
}
],
select1Options
:
[],
select2Options
:
[],
select2Options
:
[
{
value
:
1
,
label
:
'主动发送消息给公众号'
},
{
value
:
2
,
label
:
'点击公众号菜单'
},
{
value
:
3
,
label
:
'关注公众号'
}
],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
...
...
@@ -110,7 +123,7 @@ export default {
this
.
setArrData
([
'1号'
,
'2号'
,
'3号'
,
'4号'
,
'5号'
,
'6号'
,
'7号'
,
'8号'
,
'9号'
,
'10号'
,
'11号'
,
'12号'
,
'13号'
,
'14号'
,
'15号'
,
'16号'
,
'17号'
,
'18号'
,
'19号'
,
'20号'
,
'21号'
,
'22号'
,
'23号'
,
'24号'
,
'25号'
,
'26号'
,
'27号'
,
'28号'
],
'select7Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm4.vue
浏览文件 @
3980d508
...
...
@@ -185,7 +185,16 @@ export default {
select2Options
:
[],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
select5Options
:
[
{
value
:
1
,
label
:
'小程序分享'
},
{
value
:
2
,
label
:
'元素点击'
}
],
select6Options
:
[]
}
},
...
...
@@ -195,7 +204,7 @@ export default {
this
.
setArrData
([
'不再弹出'
,
'限制次数内弹出'
,
'每次弹出'
],
'select3Options'
)
this
.
setArrData
([
'天'
,
'小时'
],
'select4Options'
)
this
.
setArrData
([
'立即显示弹窗'
,
'在用户后续访问到指定页面时弹窗'
],
'select6Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm5.vue
浏览文件 @
3980d508
...
...
@@ -154,7 +154,16 @@ export default {
}
],
select1Options
:
[],
select2Options
:
[],
select2Options
:
[
{
value
:
1
,
label
:
'连续7日未登录'
},
{
value
:
2
,
label
:
'连续30日未登录'
}
],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
...
...
@@ -175,7 +184,7 @@ export default {
this
.
setArrData
([
'无限'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'10'
],
'select8Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm6.vue
浏览文件 @
3980d508
...
...
@@ -154,7 +154,16 @@ export default {
}
],
select1Options
:
[],
select2Options
:
[],
select2Options
:
[
{
value
:
1
,
label
:
'连续7日未登录'
},
{
value
:
2
,
label
:
'连续30日未登录'
}
],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
...
...
@@ -175,7 +184,7 @@ export default {
this
.
setArrData
([
'无限'
,
'1'
,
'2'
,
'3'
,
'4'
,
'5'
,
'6'
,
'7'
,
'8'
,
'9'
,
'10'
],
'select8Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
src/pages/practice/components/tabForm7.vue
浏览文件 @
3980d508
...
...
@@ -161,7 +161,20 @@ export default {
select2Options
:
[],
select3Options
:
[],
select4Options
:
[],
select5Options
:
[],
select5Options
:
[
{
value
:
1
,
label
:
'登录'
},
{
value
:
2
,
label
:
'点击banner'
},
{
value
:
3
,
label
:
'收藏'
}
],
select6Options
:
[],
select7Options
:
[],
select8Options
:
[]
...
...
@@ -177,7 +190,7 @@ export default {
const
opt
=
[
'页面URL'
,
'页面标题'
,
'来源地址'
,
'来源域名'
,
'渠道来源分组'
,
'搜索引擎'
,
'搜索词'
,
'社交媒体'
,
'分享者ID'
,
'社交媒体分享来源'
,
'分享层级'
,
'分享地址'
,
'场景值类型'
]
this
.
setArrData
(
opt
,
'select2Options'
)
this
.
setArrData
([
'立即显示弹窗'
,
'在用户后续访问到指定页面时弹窗'
],
'select6Options'
)
this
.
getUserConfig
()
//
this.getUserConfig()
},
methods
:
{
getUserConfig
()
{
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论