文字修改:客服修改为员工
This commit is contained in:
parent
0986f88d3c
commit
f36ba10f22
|
|
@ -24,7 +24,7 @@ const configRouter =
|
|||
path: 'service',
|
||||
name: 'Service',
|
||||
meta: {
|
||||
title: '客服管理'
|
||||
title: '员工管理'
|
||||
},
|
||||
component: () => import('@/views/system/service/index')
|
||||
},
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@
|
|||
</el-input>
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
<el-button size="small" type="primary" @click="onAdd">添加客服</el-button>
|
||||
<el-button size="small" type="primary" @click="onAdd">添加员工</el-button>
|
||||
</div>
|
||||
<el-table
|
||||
v-loading="loading"
|
||||
|
|
@ -37,7 +37,7 @@
|
|||
label="微信用户名称"
|
||||
min-width="130"
|
||||
/>
|
||||
<el-table-column label="客服头像" min-width="80">
|
||||
<el-table-column label="员工头像" min-width="80">
|
||||
<template slot-scope="scope">
|
||||
<div class="demo-image__preview">
|
||||
<el-image
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
</el-table-column>
|
||||
<el-table-column
|
||||
prop="nickname"
|
||||
label="客服名称"
|
||||
label="员工名称"
|
||||
min-width="130"
|
||||
/>
|
||||
<el-table-column
|
||||
|
|
@ -309,7 +309,7 @@ export default {
|
|||
this.$modalForm(serviceUpdateApi(id)).then(() => this.getList())
|
||||
},
|
||||
onDel(id, idx) {
|
||||
this.$modalSure('删除该客服吗').then(() => {
|
||||
this.$modalSure('删除该员工吗').then(() => {
|
||||
serviceDeleteApi(id).then(({ message }) => {
|
||||
this.$message.success(message)
|
||||
this.tableData.data.splice(idx, 1)
|
||||
|
|
|
|||
Loading…
Reference in New Issue