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
7897dab9
Commit
7897dab9
authored
Mar 11, 2022
by
caoyanzhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 菜单调整
parent
4b0233bc
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
2 additions
and
61 deletions
+2
-61
index.scss
src/assets/style/components/index.scss
+0
-20
form.js
src/views/card/form.js
+0
-3
group-send.vue
src/views/card/group-send.vue
+0
-3
form.js
src/views/ecm/form.js
+0
-3
qywx-dialog.vue
src/views/ecm/marketing-event/components/qywx-dialog.vue
+0
-3
scan-form.js
src/views/ecm/scan-form.js
+0
-3
problem.vue
src/views/evaluation/problem.vue
+2
-7
form.js
src/views/ewash/form.js
+0
-3
group-send.vue
src/views/ewash/group-send.vue
+0
-3
detail.vue
src/views/message/detail.vue
+0
-5
importSendDetail.vue
src/views/message/importSendDetail.vue
+0
-5
form.vue
src/views/wechat/form.vue
+0
-3
No files found.
src/assets/style/components/index.scss
View file @
7897dab9
...
...
@@ -123,26 +123,6 @@
}
}
.btn-wrap_fixed
{
position
:
fixed
;
bottom
:
0px
;
// left: 0;
right
:
0
;
width
:
100%
;
text-align
:
center
;
background
:
#fff
;
height
:
57px
;
line-height
:
57px
;
border-top
:
1px
solid
#E4E7ED
;
z-index
:
1001
;
&
.on
{
width
:
calc
(
100%
-
200px
);
left
:
200px
;
}
.el-button
+
.el-button
{
margin-left
:
4px
;
}
}
.dm-tabs-wrap
{
.el-tabs__header
{
margin
:
0
;
...
...
src/views/card/form.js
View file @
7897dab9
...
...
@@ -378,9 +378,6 @@ export default {
linktools
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
storeParams
()
{
return
!
this
.
isAdd
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
...
...
src/views/card/group-send.vue
View file @
7897dab9
...
...
@@ -247,9 +247,6 @@ export default {
storeParams
()
{
return
!
this
.
isAdd
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
isEditTemplate
()
{
//是否可以编辑 1.新增 2.编辑,选择时间发送,发送时间大于当前时间
return
this
.
isAdd
||
(
this
.
isEdit
&&
this
.
form
.
putOnType
===
1
&&
this
.
form
.
putOnTime
>
Date
.
now
());
...
...
src/views/ecm/form.js
View file @
7897dab9
...
...
@@ -261,9 +261,6 @@ export default {
}
return
[];
},
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
storeParams
()
{
return
!
this
.
isInit
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
...
...
src/views/ecm/marketing-event/components/qywx-dialog.vue
View file @
7897dab9
...
...
@@ -209,9 +209,6 @@ export default {
}
}
,
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
}
,
getMin
()
{
if
(
this
.
transferLink
.
type
==
0
)
{
// eslint-disable-next-line
...
...
src/views/ecm/scan-form.js
View file @
7897dab9
...
...
@@ -163,9 +163,6 @@ export default {
// 若开始时间已过则不可修改,若未过则可修改
return
(
this
.
isEdit
&&
new
Date
()
>
new
Date
(
this
.
beginDate
))
||
this
.
isInfo
;
},
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
storeParams
()
{
return
!
this
.
isAdd
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
...
...
src/views/evaluation/problem.vue
View file @
7897dab9
...
...
@@ -23,10 +23,10 @@
<dm-input
:disabled=
"isInfo"
type=
"textarea"
class=
"w400"
v-model=
"form.handleRemark"
:rows=
"4"
placeholder=
"请输入回复内容"
:maxlength=
"200"
></dm-input>
</el-form-item>
</el-form>
<
span
class=
"btn-wrap_fixed"
:class=
"
{ on: asideShow }"
>
<
dm-form-bottom
>
<el-button
type=
"primary"
v-if=
"!isInfo"
@
click=
"submit('form')"
>
提 交
</el-button>
<el-button
@
click=
"$router.go(-1)"
>
返 回
</el-button>
</
span
>
</
dm-form-bottom
>
<vue-gic-img-preview
:imgUrl=
"imgUrl"
:imgShowFlag=
"imgShowFlag"
@
hideImage=
"hideImage"
></vue-gic-img-preview>
</div>
</
template
>
...
...
@@ -60,11 +60,6 @@ export default {
created
()
{
this
.
getSuggestionsDetail
();
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
}
},
methods
:
{
submit
(
formName
)
{
this
.
$refs
[
formName
].
validate
(
valid
=>
{
...
...
src/views/ewash/form.js
View file @
7897dab9
...
...
@@ -202,9 +202,6 @@ export default {
'good-category'
:
goodCategory
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
storeParams
()
{
return
!
this
.
isAdd
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
...
...
src/views/ewash/group-send.vue
View file @
7897dab9
...
...
@@ -231,9 +231,6 @@ export default {
};
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
isEditTemplate
()
{
//是否可以编辑 1.新增 2.编辑,选择时间发送,发送时间大于当前时间
return
this
.
isAdd
||
(
this
.
isEdit
&&
this
.
form
.
putOnType
===
1
&&
this
.
form
.
putOnTime
>
Date
.
now
());
...
...
src/views/message/detail.vue
View file @
7897dab9
...
...
@@ -221,11 +221,6 @@ export default {
this
.
LoadMessageDetail
(
this
.
$route
.
params
.
id
);
this
.
LoadMessageDetailList
();
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
}
},
components
:
{
errorCodeDialog
,
activitySelect
...
...
src/views/message/importSendDetail.vue
View file @
7897dab9
...
...
@@ -183,11 +183,6 @@ export default {
this
.
getSmsImportPlanDetail
(
this
.
$route
.
params
.
id
);
this
.
smsSmportPlanLogPage
();
},
computed
:
{
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
}
},
components
:
{
errorCodeDialog
},
...
...
src/views/wechat/form.vue
View file @
7897dab9
...
...
@@ -122,9 +122,6 @@ export default {
storeParams
()
{
return
!
this
.
isAdd
?
{
creatorId
:
this
.
creatorId
}
:
{};
},
asideShow
()
{
return
this
.
$store
.
state
.
marketing
.
asideShow
;
},
showSelfFlag
()
{
if
(
this
.
isAdd
||
this
.
isEdit
)
{
return
1
;
// 仅看本人
...
...
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