Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
X
x-training-new
项目
项目
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
图表
比较
统计图
议题
0
议题
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
EzijingWeb
x-training-new
Commits
f7d2f6db
提交
f7d2f6db
authored
5月 05, 2022
作者:
matian
浏览文件
操作
浏览文件
下载
差异文件
Merge remote-tracking branch 'origin/master'
上级
0f86058b
49699088
显示空白字符变更
内嵌
并排
正在显示
3 个修改的文件
包含
75 行增加
和
9 行删除
+75
-9
MailStepThree.vue
src/modules/market-tools/components/mail/MailStepThree.vue
+1
-1
SmsStepThree.vue
...odules/market-tools/components/mobileSms/SmsStepThree.vue
+62
-0
MobileSms.vue
src/modules/market-tools/views/MobileSms.vue
+12
-8
没有找到文件。
src/modules/market-tools/components/mail/MailStepThree.vue
浏览文件 @
f7d2f6db
...
@@ -168,7 +168,7 @@ export default {
...
@@ -168,7 +168,7 @@ export default {
message
:
'请编辑主题'
,
message
:
'请编辑主题'
,
type
:
'warning'
type
:
'warning'
})
})
return
false
return
{}
}
}
}
}
return
params
return
params
...
...
src/modules/market-tools/components/mobileSms/SmsStepThree.vue
0 → 100644
浏览文件 @
f7d2f6db
<
template
>
<div
class=
"sms-three-box"
>
<div
class=
"content-left"
>
<div
class=
"card-textarea"
>
<div
class=
"title"
>
推送标题
</div>
<textarea
placeholder=
"请输入"
></textarea>
</div>
<div
class=
"card-textarea"
>
<div
class=
"title"
>
推送内容
</div>
<textarea
placeholder=
"请输入"
></textarea>
</div>
</div>
<div
class=
"content-right"
></div>
</div>
</
template
>
<
script
>
export
default
{}
</
script
>
<
style
lang=
"scss"
scoped
>
.sms-three-box
{
margin-bottom
:
20px
;
display
:
flex
;
.content-left
{
border-left
:
1px
solid
#dedede
;
border-right
:
1px
solid
#dedede
;
padding
:
30px
30px
0
;
.card-textarea
{
width
:
320px
;
background
:
rgba
(
248
,
248
,
248
,
0
.39
);
border-radius
:
16px
;
padding
:
23px
;
margin-bottom
:
30px
;
.title
{
text-align
:
center
;
margin-bottom
:
23px
;
font-size
:
18px
;
font-weight
:
bold
;
line-height
:
100%
;
color
:
#333333
;
}
textarea
{
width
:
100%
;
height
:
91px
;
background
:
rgba
(
255
,
255
,
255
,
0
.39
);
border
:
1px
solid
#efefef
;
border-radius
:
6px
;
padding
:
10px
15px
;
color
:
#333333
;
font-size
:
14px
;
resize
:
none
;
}
}
}
.content-right
{
width
:
588px
;
padding-top
:
95px
;
box-sizing
:
border-box
;
}
}
</
style
>
src/modules/market-tools/views/MobileSms.vue
浏览文件 @
f7d2f6db
...
@@ -18,6 +18,9 @@
...
@@ -18,6 +18,9 @@
@
getShowIndex=
"getShowIndex"
@
getShowIndex=
"getShowIndex"
:stepTwoData=
"stepTwoData"
:stepTwoData=
"stepTwoData"
/>
/>
<SmsStepThree
v-if=
"activeStep === 2"
/>
<div
class=
"main_content_btn"
>
<div
class=
"main_content_btn"
>
<div
class=
"step_prev step_btn"
@
click=
"handlePrev"
v-if=
"activeStep > 0"
>
上一步
</div>
<div
class=
"step_prev step_btn"
@
click=
"handlePrev"
v-if=
"activeStep > 0"
>
上一步
</div>
<div
class=
"step_next step_btn"
@
click=
"handleNext"
v-if=
"activeStep >= 0 && activeStep
<
2
"
>
下一步
</div>
<div
class=
"step_next step_btn"
@
click=
"handleNext"
v-if=
"activeStep >= 0 && activeStep
<
2
"
>
下一步
</div>
...
@@ -36,17 +39,19 @@ import ToolCard from '@/components/base/ToolCard.vue'
...
@@ -36,17 +39,19 @@ import ToolCard from '@/components/base/ToolCard.vue'
import
SmsStepOne
from
'../components/mobileSms/SmsStepOne.vue'
import
SmsStepOne
from
'../components/mobileSms/SmsStepOne.vue'
import
Step
from
'@/components/base/Step.vue'
import
Step
from
'@/components/base/Step.vue'
import
SmsStepTwo
from
'../components/mobileSms/SmsStepTwo.vue'
import
SmsStepTwo
from
'../components/mobileSms/SmsStepTwo.vue'
import
SmsStepThree
from
'../components/mobileSms/SmsStepThree.vue'
export
default
{
export
default
{
components
:
{
components
:
{
ToolCard
,
ToolCard
,
SmsStepOne
,
SmsStepOne
,
Step
,
Step
,
SmsStepTwo
SmsStepTwo
,
SmsStepThree
},
},
data
()
{
data
()
{
return
{
return
{
// times: '',
// times: '',
activeStep
:
0
,
activeStep
:
2
,
stepOneList
:
[],
stepOneList
:
[],
caseId
:
''
,
caseId
:
''
,
stepTwoData
:
{
stepTwoData
:
{
...
@@ -145,12 +150,11 @@ export default {
...
@@ -145,12 +150,11 @@ export default {
}
}
},
},
mounted
()
{
mounted
()
{
console
.
log
(
this
.
$route
.
query
.
type
)
// if (this.$route.query.type) {
if
(
this
.
$route
.
query
.
type
)
{
// this.getReportDetail(this.$route.query.id)
this
.
getReportDetail
(
this
.
$route
.
query
.
id
)
// } else {
}
else
{
// this.checkRecord()
this
.
checkRecord
()
// }
}
}
}
}
}
</
script
>
</
script
>
...
...
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论