Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
H
haoban-3
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
office
haoban-3
Commits
5bfec2a1
Commit
5bfec2a1
authored
Mar 11, 2022
by
crushh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update: 完成
parent
4397d279
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
salutatory.vue
src/views/enterprise/salutatory.vue
+9
-2
No files found.
src/views/enterprise/salutatory.vue
View file @
5bfec2a1
...
...
@@ -28,7 +28,10 @@
</div>
<el-table
ref=
"multipleTable"
:data=
"tableData"
tooltip-effect=
"dark"
:style=
"
{ width: '100%' }" v-loading="loading">
<el-table-column
prop=
"title"
label=
"标题"
width=
"200"
show-overflow-tooltip
>
<template
slot-scope=
"
{ row }">
{{
row
.
title
}}
</
template
>
<template
slot-scope=
"
{ row }">
{{
row
.
title
}}
<el-tag
size=
"mini"
v-if=
"row.defaultWelcomeFlag == 1"
>
默认欢迎语
</el-tag>
</
template
>
</el-table-column>
<el-table-column
prop=
"welcomeContent"
label=
"内容"
show-overflow-tooltip
min-width=
"200"
>
<
template
slot-scope=
"{ row }"
>
{{
row
.
welcomeContent
}}
</
template
>
...
...
@@ -195,7 +198,11 @@ export default {
this
.
$router
.
push
({
path
:
'/salutatorySet'
,
query
:
{
id
:
row
.
welcomeId
,
type
:
this
.
friendSettingType
,
isDefalut
:
row
.
defaultWelcomeFlag
}
});
},
remove
(
row
)
{
this
.
$confirm
(
' 是否删除本条欢迎语?'
,
'提示'
,
{
let
str
=
'是否删除本条欢迎语?'
;
if
(
row
.
defaultWelcomeFlag
==
1
)
{
str
=
'此条欢迎语为全员欢迎语,删除后可能影响欢迎语发送,是否继续删除?'
;
}
this
.
$confirm
(
str
,
'提示'
,
{
confirmButtonText
:
'确定'
,
cancelButtonText
:
'取消'
,
type
:
'warning'
...
...
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