Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
marketing-opeartion
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
gic-web
marketing-opeartion
Commits
929b6d37
Commit
929b6d37
authored
Nov 22, 2021
by
liuchenxi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 去除反馈时间
parent
dd2afbb6
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
13 deletions
+7
-13
detail-table.vue
src/views/message/component/detail-table.vue
+0
-10
template.vue
src/views/message/template.vue
+7
-3
No files found.
src/views/message/component/detail-table.vue
View file @
929b6d37
...
...
@@ -55,15 +55,6 @@
</span>
</
template
>
</el-table-column>
<el-table-column
label=
"反馈时间"
>
<
template
slot-scope=
"{ row }"
>
<p
v-if=
"!row.updateTime"
>
--
</p>
<template
v-else
>
<p>
{{
getTime
(
row
.
updateTime
)
}}
</p>
<p>
{{
getSeconds
(
row
.
updateTime
)
}}
</p>
</
template
>
</template>
</el-table-column>
</el-table>
</el-dialog>
</div>
...
...
@@ -198,7 +189,6 @@ export default {
<p>模板ID:
${
data
.
templateId
||
'--'
}
</p>
<p>状态:
${
status
}
</p>
${
data
.
status
==
2
?
'<p>原因:<span style="color:red">'
+
(
data
.
auditResult
||
'--'
)
+
'</span></p>'
:
''
}
<p>反馈时间:
${
data
.
updateTime
?
getTime
(
data
.
updateTime
)
+
' '
+
getSeconds
(
data
.
updateTime
)
:
'--'
}
</p>
`
;
}
}
...
...
src/views/message/template.vue
View file @
929b6d37
<
template
>
<div
class=
"container right_content"
>
<div
class=
"search"
>
<el-input
v-model=
"search.searchText"
@
change=
"
getTableData
"
prefix-icon=
"el-icon-search"
placeholder=
"请输入品牌名称/公司名称"
style=
"width: 234px"
/>
<el-select
v-model=
"search.channelId"
@
change=
"
getTableData
"
placeholder=
"选择发送通道"
class=
"ml10"
>
<el-input
v-model=
"search.searchText"
@
change=
"
searchTypeChange
"
prefix-icon=
"el-icon-search"
placeholder=
"请输入品牌名称/公司名称"
style=
"width: 234px"
/>
<el-select
v-model=
"search.channelId"
@
change=
"
searchTypeChange
"
placeholder=
"选择发送通道"
class=
"ml10"
>
<el-option
v-for=
"item in channelList"
:key=
"item.channelId"
:value=
"item.channelId"
:label=
"item.channelName"
>
{{
item
.
channelName
}}
</el-option>
</el-select>
</div>
...
...
@@ -113,7 +113,11 @@ export default {
async
getChannelList
()
{
const
{
result
}
=
await
getAllChannel
();
this
.
channelList
=
result
.
concat
({
channelId
:
0
,
channelName
:
'多通道'
})
||
[];
}
},
searchTypeChange
()
{
this
.
tableData
.
currentPage
=
1
;
this
.
getTableData
();
},
}
};
</
script
>
...
...
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