|
@@ -10,7 +10,7 @@
|
10
|
10
|
</div>
|
11
|
11
|
</div>
|
12
|
12
|
<el-table ref="multipleTable" height="calc(100vh - 130px)" :data="tableData" tooltip-effect="dark" style="width: 100%">
|
13
|
|
- <el-table-column show-overflow-tooltip align="left">
|
|
13
|
+ <el-table-column show-overflow-tooltip align="center">
|
14
|
14
|
<template slot="header">
|
15
|
15
|
<div style="margin-left:60px">预警组</div>
|
16
|
16
|
</template>
|
|
@@ -18,9 +18,9 @@
|
18
|
18
|
<div style="margin-left:60px">{{scope.row.name}}</div>
|
19
|
19
|
</template>
|
20
|
20
|
</el-table-column>
|
21
|
|
- <el-table-column label="预警人" align="left">
|
|
21
|
+ <el-table-column label="预警人" align="center">
|
22
|
22
|
<template slot-scope="scope">
|
23
|
|
- <div class="customerServiceTagBox" style="justify-content: space-between;display:inline-block" v-if="scope.row.users">
|
|
23
|
+ <div class="customerServiceTagBox biaoqian" style="justify-content: space-between;display:inline-block" v-if="scope.row.users">
|
24
|
24
|
<div class="customerServiceTag" v-for="(item,index) in scope.row.users" :key="index+'user'" style="justify-content:flex-start;">
|
25
|
25
|
<i class="el-icon-user-solid"></i> {{ item.name }}
|
26
|
26
|
<i class="el-icon-phone" style="margin-left:8px"></i>{{item.phone}}
|
|
@@ -28,7 +28,7 @@
|
28
|
28
|
</div>
|
29
|
29
|
</template>
|
30
|
30
|
</el-table-column>
|
31
|
|
- <el-table-column label="操作" width="150px" align="center">
|
|
31
|
+ <el-table-column label="操作" align="center">
|
32
|
32
|
<template slot-scope="scope">
|
33
|
33
|
<div class="flex" style="justify-content:center">
|
34
|
34
|
<div class="c-00B38A pointer" style="margin:0 6px" @click="getGroupDetail(scope.row.id)">编辑</div>
|
|
@@ -220,11 +220,16 @@ export default {
|
220
|
220
|
if (res && res.errno == 0) {
|
221
|
221
|
this.dialogTableVisible = false
|
222
|
222
|
this.init()
|
|
223
|
+ this.$message({
|
|
224
|
+ message: '成功!',
|
|
225
|
+ type: "success"
|
|
226
|
+ })
|
|
227
|
+ } else {
|
|
228
|
+ this.$message({
|
|
229
|
+ message: res.err,
|
|
230
|
+ type: "warning"
|
|
231
|
+ })
|
223
|
232
|
}
|
224
|
|
- this.$message({
|
225
|
|
- message: res.err,
|
226
|
|
- type: "warning"
|
227
|
|
- })
|
228
|
233
|
}).catch(() => {
|
229
|
234
|
this.dialogLoading = false
|
230
|
235
|
})
|