Commit 865f5cda authored by dcy's avatar dcy

全部客户,客户查看,客户修改页面国际化

parent 6c456cef
This diff is collapsed.
This diff is collapsed.
This diff is collapsed.
<template> <template>
<el-dialog <el-dialog
center center
title="客服" :title="$t('客服')"
:visible.sync="show" :visible.sync="show"
width="30%"> width="30%">
<div style="width: 100%;min-height: 200px;text-align: center"> <div style="width: 100%;min-height: 200px;text-align: center">
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
</el-select> </el-select>
</div> </div>
<span slot="footer" class="dialog-footer"> <span slot="footer" class="dialog-footer">
<el-button @click="$emit('update:show',false)" >取 消</el-button> <el-button @click="$emit('update:show',false)" >{{$t('取 消')}}</el-button>
<el-button type="primary" @click="submit">确 定</el-button> <el-button type="primary" @click="submit">{{$t('确 定')}}</el-button>
</span> </span>
</el-dialog> </el-dialog>
</template> </template>
...@@ -50,7 +50,7 @@ export default { ...@@ -50,7 +50,7 @@ export default {
methods:{ methods:{
submit(){ submit(){
if(!this.service){ if(!this.service){
return this.$message.warning('请选择客户经理!'); return this.$message.warning(this.$t('请选择客户经理!'));
} }
handOverCustomer({ handOverCustomer({
customerServiceId:this.service, customerServiceId:this.service,
...@@ -59,7 +59,7 @@ export default { ...@@ -59,7 +59,7 @@ export default {
if(r.code === 0){ if(r.code === 0){
this.$emit('update:show',false) this.$emit('update:show',false)
this.$emit('update:customerIds',[]) this.$emit('update:customerIds',[])
this.$message.success('用户批量转移成功!') this.$message.success(this.$t('用户批量转移成功!'))
} }
}) })
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment