Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing
Overview
Overview
Details
Activity
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
marketing-web
marketing
Commits
5d4d4855
Commit
5d4d4855
authored
Oct 27, 2021
by
liuchenxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: ui
parent
e1efb66e
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
20 additions
and
7 deletions
+20
-7
batch-dialog.vue
src/views/ecm/batch-dialog.vue
+1
-1
current-list.vue
src/views/ecm/current-list.vue
+1
-1
touch-clue.vue
src/views/ecm/touch-clue.vue
+1
-2
index.vue
src/views/ecm/touch-components/batch-send/index.vue
+4
-0
index.vue
src/views/ecm/touch-components/phone-traffic/index.vue
+4
-0
touch-effect.vue
src/views/ecm/touch-effect.vue
+5
-1
detail.vue
src/views/message/detail.vue
+2
-1
importSendDetail.vue
src/views/message/importSendDetail.vue
+2
-1
No files found.
src/views/ecm/batch-dialog.vue
View file @
5d4d4855
...
...
@@ -73,7 +73,7 @@ export default {
minWidth
:
'100'
,
align
:
'left'
,
formatter
(
row
)
{
return
row
.
errCode
==
=
'0'
?
'提交成功'
:
'提交失败
'
;
return
row
.
errCode
==
'0'
?
'<span class="dm-status--success">提交成功</span>'
:
'<span class="dm-status--error">提交失败</span>
'
;
}
},
{
label
:
'主门店'
,
prop
:
'mainStoreName'
,
minWidth
:
'120'
,
align
:
'left'
},
...
...
src/views/ecm/current-list.vue
View file @
5d4d4855
...
...
@@ -178,7 +178,7 @@ export default {
minWidth
:
'120'
,
align
:
'left'
,
formatter
(
row
)
{
return
row
.
errCode
==
=
'0'
?
'<span class="dm-status--success">提交成功</span>'
:
'<span class="dm-status--erroe
">提交失败</span>'
;
return
row
.
errCode
==
'0'
?
'<span class="dm-status--success">提交成功</span>'
:
'<span class="dm-status--error
">提交失败</span>'
;
}
},
{
label
:
'备注'
,
prop
:
'errMsg'
,
minWidth
:
'120'
,
align
:
'left'
}
...
...
src/views/ecm/touch-clue.vue
View file @
5d4d4855
...
...
@@ -94,8 +94,7 @@ export default {
dynamicParams
:
{},
// 动态组件参数
type
:
''
,
currentPage
:
1
,
// pageSize: 20,
pageSize
:
1
,
pageSize
:
20
,
total
:
0
,
touchOrderBy
:
''
,
taskOrderBy
:
''
,
...
...
src/views/ecm/touch-components/batch-send/index.vue
View file @
5d4d4855
...
...
@@ -104,6 +104,10 @@ export default {
display
:
flex
;
align-items
:
center
;
cursor
:
pointer
;
border
:
none
;
&:hover
{
color
:
#46a6ff
;
}
i
{
margin-right
:
2px
;
}
...
...
src/views/ecm/touch-components/phone-traffic/index.vue
View file @
5d4d4855
...
...
@@ -54,6 +54,10 @@ export default {
display
:
flex
;
align-items
:
center
;
cursor
:
pointer
;
border
:
none
;
&:hover
{
color
:
#46a6ff
;
}
i
{
margin-right
:
2px
;
}
...
...
src/views/ecm/touch-effect.vue
View file @
5d4d4855
...
...
@@ -3,7 +3,7 @@
<div
class=
"dm-wrap effect"
>
<div
class=
"title"
>
<h2>
计划整体效果
</h2>
<
div
class=
"detail"
@
click=
"toClue('计划整体')"
><i
class=
"iconfont icon-chakanxiangqing"
></i>
查看详情
</div
>
<
el-button
type=
"primary"
class=
"detail"
@
click=
"toClue('计划整体')"
><i
class=
"iconfont icon-chakanxiangqing"
></i>
查看详情
</el-button
>
</div>
<touch-charts
:type=
"0"
:createTime=
"$route.query.createTime"
/>
<market-list
v-if=
"marketListData.length"
:isRepeat=
"isRepeat"
:data=
"marketListData"
:isReference=
"isReference"
:batchNum=
"batchNum"
:batchTimes=
"batchTime"
@
toClue=
"toClue"
/>
...
...
@@ -190,6 +190,10 @@ export default {
display
:
flex
;
align-items
:
center
;
cursor
:
pointer
;
border
:
none
;
&:hover
{
color
:
#46a6ff
;
}
i
{
margin-right
:
2px
;
}
...
...
src/views/message/detail.vue
View file @
5d4d4855
...
...
@@ -149,9 +149,10 @@ export default {
minWidth
:
'80'
,
align
:
'left'
,
formatter
:
function
(
row
)
{
let
status
=
row
.
sendStatus
*
1
;
let
statucClass
;
let
text
;
switch
(
row
.
sendS
tatus
)
{
switch
(
s
tatus
)
{
case
0
:
statucClass
=
'dm-status--success'
;
text
=
'提交成功'
;
...
...
src/views/message/importSendDetail.vue
View file @
5d4d4855
...
...
@@ -129,9 +129,10 @@ export default {
minWidth
:
'80'
,
align
:
'left'
,
formatter
:
function
(
row
)
{
let
status
=
row
.
sendStatus
*
1
;
let
statucClass
;
let
text
;
switch
(
row
.
sendS
tatus
)
{
switch
(
s
tatus
)
{
case
0
:
statucClass
=
'dm-status--success'
;
text
=
'提交成功'
;
...
...
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