|
@@ -3,7 +3,7 @@
|
|
|
<div class="left_cont">
|
|
|
<div class="company_top" @click="initDepart">
|
|
|
<img src="~@/assets/img/set_m/home_ico.png" alt="" style="width:30px;height:30px;">
|
|
|
- <span :class="!defaultGroup&&!defaultDepart?'act':''">部门信息</span>
|
|
|
+ <span :class="!defaultGroup&&!defaultDepart?'act':''">{{$t('SystemManage.DepartManage.depart_info_title')}}</span>
|
|
|
</div>
|
|
|
<el-tree
|
|
|
ref="departTree"
|
|
@@ -30,12 +30,12 @@
|
|
|
v-if="((!isTrail) || (data.canEdit||data.IsGroup))&&permissionBtn.isShowBtn('sysDepartPermission','sysDepart_classifyOpt_edit')">
|
|
|
<el-popconfirm
|
|
|
@onConfirm="removeNode(node,data)"
|
|
|
- confirmButtonText='删除'
|
|
|
- cancelButtonText='取消'
|
|
|
+ :confirmButtonText="$t('Table.delete_btn')"
|
|
|
+ :cancelButtonText="$t('Dialog.cancel_btn')"
|
|
|
confirmButtonType="text"
|
|
|
icon="el-icon-info"
|
|
|
iconColor="red"
|
|
|
- title="确定删除吗"
|
|
|
+ :title="$t('SystemManage.DepartManage.delete_confirm')"
|
|
|
v-if="data.DepartmentId!=shareCustomDepartmentId && (!isTrail || (isTrail && (data.canEdit || data.IsGroup)))&&permissionBtn.isShowBtn('sysDepartPermission','sysDepart_classifyOpt_delete')"
|
|
|
>
|
|
|
<!-- 共享客户组不允许删除 -->
|
|
@@ -46,7 +46,7 @@
|
|
|
</el-tree>
|
|
|
<div class="noDepart" @click="addDepart" v-if="permissionBtn.isShowBtn('sysDepartPermission','sysDepart_classifyOpt_edit')">
|
|
|
<img src="~@/assets/img/set_m/add_ico.png" alt="" style="width:16px;height:16px;marginRight:10px;">
|
|
|
- <span>新建部门</span>
|
|
|
+ <span>{{$t('SystemManage.DepartManage.depart_create')}}</span>
|
|
|
</div>
|
|
|
</div>
|
|
|
<div class="right_cont">
|
|
@@ -230,17 +230,17 @@
|
|
|
width="30%"
|
|
|
v-dialogDrag>
|
|
|
<div slot="title" style="display:flex;alignItems:center;">
|
|
|
- <img :src="departForm.title=='新建部门'?$icons.add:$icons.edit" style="color:#fff;width:16px;height:16px;marginRight:5px;">
|
|
|
+ <img :src="!departForm.depart_id?$icons.add:$icons.edit" style="color:#fff;width:16px;height:16px;marginRight:5px;">
|
|
|
<span style="fontSize:16px;">{{departForm.title}}</span>
|
|
|
</div>
|
|
|
- <el-form :model="departForm" :rules="departRule" ref="departForm" label-width="100px" class="demo-ruleForm" style="marginTop:15px;">
|
|
|
- <el-form-item label="部门" prop="name">
|
|
|
- <el-input v-model="departForm.name" placeholder="请填写部门名称" style="width: 90%"></el-input>
|
|
|
+ <el-form :model="departForm" :rules="departRule" ref="departForm" label-width="120px" class="demo-ruleForm" style="marginTop:15px;">
|
|
|
+ <el-form-item :label="$t('SystemManage.DepartManage.depart')" prop="name">
|
|
|
+ <el-input v-model="departForm.name" :placeholder="$t('SystemManage.DepartManage.depart_name_placeholder')" style="width: 90%"></el-input>
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div style="display:flex;justify-content:center;margin:75px 0 26px;">
|
|
|
- <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveDepart">保存</el-button>
|
|
|
- <el-button style="width:80px;" @click="cancelHandle(1)">取消</el-button>
|
|
|
+ <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveDepart">{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
|
+ <el-button style="width:80px;" @click="cancelHandle(1)">{{$t('Dialog.cancel_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 添加分组弹窗 -->
|
|
@@ -286,8 +286,8 @@
|
|
|
</el-form-item>
|
|
|
</el-form>
|
|
|
<div style="display:flex;justify-content:center;margin:75px 0 26px;">
|
|
|
- <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveGroup">保存</el-button>
|
|
|
- <el-button style="width:80px;" @click="cancelHandle(2)">取消</el-button>
|
|
|
+ <el-button type="primary" style="width:80px;marginRight:24px;" @click="saveGroup">{{$t('Dialog.confirm_save_btn')}}</el-button>
|
|
|
+ <el-button style="width:80px;" @click="cancelHandle(2)">{{$t('Dialog.cancel_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-dialog>
|
|
|
<!-- 编辑分组 -->
|
|
@@ -800,7 +800,7 @@ export default {
|
|
|
if(data.IsDepartment) {
|
|
|
this.isAddDepart = true;
|
|
|
this.departForm = {
|
|
|
- title:"编辑部门",
|
|
|
+ title:this.$t('SystemManage.DepartManage.depart_edit'),
|
|
|
name:data.DepartmentName,
|
|
|
depart_id:data.DepartmentId
|
|
|
}
|
|
@@ -830,7 +830,7 @@ export default {
|
|
|
GroupName:this.editGroupForm.group,
|
|
|
})
|
|
|
if(res.Ret === 200) {
|
|
|
- this.$message.success('编辑成功')
|
|
|
+ this.$message.success(this.$t('MsgPrompt.edit_msg'))
|
|
|
this.isEditGroup = false;
|
|
|
this.editGroupForm = {
|
|
|
group_id:'',
|
|
@@ -919,7 +919,7 @@ export default {
|
|
|
addDepart() {
|
|
|
this.isAddDepart = true;
|
|
|
this.departForm = {
|
|
|
- title:'新建部门',
|
|
|
+ title:this.$t('SystemManage.DepartManage.depart_create'),
|
|
|
name:''
|
|
|
}
|
|
|
},
|
|
@@ -928,15 +928,15 @@ export default {
|
|
|
this.$refs.departForm.validate((valid) => {
|
|
|
if (valid) {
|
|
|
// alert('submit!');
|
|
|
- if(this.departForm.title == '新建部门') {
|
|
|
+ if(!this.departForm.depart_id) {
|
|
|
departInterence.addDepart({
|
|
|
DepartmentName:this.departForm.name
|
|
|
}).then(res => {
|
|
|
if(res.Ret === 200) {
|
|
|
- this.$message.success('新建成功')
|
|
|
+ this.$message.success(this.$t('MsgPrompt.add_msg'))
|
|
|
this.isAddDepart = false;
|
|
|
this.departForm = {
|
|
|
- title:'新建部门',
|
|
|
+ title:this.$t('SystemManage.DepartManage.depart_create'),
|
|
|
name:''
|
|
|
}
|
|
|
this.getDepartArr();
|
|
@@ -948,10 +948,10 @@ export default {
|
|
|
DepartmentName:this.departForm.name
|
|
|
}).then(res => {
|
|
|
if(res.Ret === 200) {
|
|
|
- this.$message.success('编辑成功')
|
|
|
+ this.$message.success(this.$t('MsgPrompt.edit_msg'))
|
|
|
this.isAddDepart = false;
|
|
|
this.departForm = {
|
|
|
- title:'新建部门',
|
|
|
+ title:this.$t('SystemManage.DepartManage.depart_create'),
|
|
|
name:''
|
|
|
}
|
|
|
this.getDepartArr();
|