|
@@ -2,34 +2,34 @@
|
|
|
<div id="outlink-list-config" class="outlink-list-config">
|
|
|
<div class="outlink-top-button-zone">
|
|
|
<el-button type="primary" @click="addOutlink"
|
|
|
- v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_add">添加菜单</el-button>
|
|
|
+ v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_add">{{$t('SystemManage.OutLinkConfig.menu_add_btn')}}</el-button>
|
|
|
</div>
|
|
|
<el-table :data="outlinkData" border @sort-change="sortChange">
|
|
|
- <el-table-column label="菜单名称" prop="Title" align="center">
|
|
|
+ <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col01')" prop="Title" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
{{ row.Title }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="页面链接" prop="Url" align="center">
|
|
|
+ <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col02')" prop="Url" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
{{ row.Url }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="创建时间" prop="CreateTime" align="center" sortable >
|
|
|
+ <el-table-column :label="$t('SystemManage.OutLinkConfig.tale_col03')" prop="CreateTime" align="center" sortable >
|
|
|
<template slot-scope="{ row }">
|
|
|
{{ row.CreateTime }}
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center">
|
|
|
+ <el-table-column :label="$t('Table.column_operations')" align="center">
|
|
|
<template slot-scope="{ row }">
|
|
|
<span class="table-button" @click="editOutlink(row)"
|
|
|
- v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_edit">编辑</span>
|
|
|
+ v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_edit">{{$t('Table.edit_btn')}}</span>
|
|
|
<span class="table-button" style="color: #C54322;" @click="deleteOutlink(row)"
|
|
|
- v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_del">删除</span>
|
|
|
+ v-permission="permissionBtn.outlinkConfigPermission.outlinkListConfig_del">{{$t('Table.delete_btn')}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<div slot="empty" style="line-height: 44px; margin: 60px 0; color: #999">
|
|
|
- <tableNoData text="暂无数据" size="mini"/>
|
|
|
+ <tableNoData :text="$t('Table.prompt_slogan')" size="mini"/>
|
|
|
</div>
|
|
|
</el-table>
|
|
|
<m-page
|
|
@@ -50,16 +50,16 @@
|
|
|
<el-form
|
|
|
:model="outlinkForm"
|
|
|
ref="outlinkFormRef"
|
|
|
- label-width="90px">
|
|
|
- <el-form-item prop="Title" label="菜单名称" :rules="{required:true,message:'菜单名称不能为空',trigger:'blur'}">
|
|
|
- <el-input v-model="outlinkForm.Title" placeholder="请输入菜单名称" style="width: 295px;"></el-input>
|
|
|
+ label-width="100px">
|
|
|
+ <el-form-item prop="Title" :label="$t('SystemManage.OutLinkConfig.tale_col01')" :rules="{required:true,message:'菜单名称不能为空',trigger:'blur'}">
|
|
|
+ <el-input v-model="outlinkForm.Title" :placeholder="$t('SystemManage.OutLinkConfig.placeholder01')" style="width: 295px;"></el-input>
|
|
|
</el-form-item>
|
|
|
- <el-form-item prop="Url" label="页面链接" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
|
|
|
- <el-input v-model="outlinkForm.Url" placeholder="请输入URL" style="width: 295px;"></el-input>
|
|
|
+ <el-form-item prop="Url" :label="$t('SystemManage.OutLinkConfig.tale_col02')" :rules="{required:true,message:'URL不能为空',trigger:'blur'}">
|
|
|
+ <el-input v-model="outlinkForm.Url" :placeholder="$t('SystemManage.OutLinkConfig.placeholder02')" style="width: 295px;"></el-input>
|
|
|
</el-form-item>
|
|
|
<div class="form-box-buttons-zone">
|
|
|
- <el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">取消</el-button>
|
|
|
- <el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">确定</el-button>
|
|
|
+ <el-button style="width: 120px;height: 40px;" @click="addOutlinkShow=false">{{$t('Dialog.cancel_btn')}}</el-button>
|
|
|
+ <el-button type="primary" @click="addOutlinkSave" style="margin-left:30px;width: 120px;height: 40px;">{{$t('Dialog.confirm_btn')}}</el-button>
|
|
|
</div>
|
|
|
</el-form>
|
|
|
</div>
|
|
@@ -115,12 +115,12 @@ import mPage from '@/components/mPage.vue';
|
|
|
this.getOutlinkData()
|
|
|
},
|
|
|
addOutlink(){
|
|
|
- this.dialogTitle="添加菜单"
|
|
|
+ this.dialogTitle=this.$t('SystemManage.OutLinkConfig.menu_add_btn')
|
|
|
this.addOutlinkShow=true
|
|
|
},
|
|
|
editOutlink(item){
|
|
|
this.outlinkForm=item
|
|
|
- this.dialogTitle="编辑菜单"
|
|
|
+ this.dialogTitle=this.$t('SystemManage.OutLinkConfig.menu_edit_btn')
|
|
|
this.addOutlinkShow=true
|
|
|
},
|
|
|
resetForm(){
|
|
@@ -144,12 +144,12 @@ import mPage from '@/components/mPage.vue';
|
|
|
})
|
|
|
},
|
|
|
deleteOutlink(item){
|
|
|
- this.$confirm("删除后不可恢复,确认删除吗?", "提示", {
|
|
|
+ this.$confirm(this.$t('MsgPrompt.delete_info_msg'), this.$t('Confirm.prompt'), {
|
|
|
type: "warning"
|
|
|
}).then(() => {
|
|
|
outlinkConfigInterence.outlinkDelete({Id:item.Id}).then(res=>{
|
|
|
if(res.Ret == 200){
|
|
|
- this.$message.success("删除菜单成功")
|
|
|
+ this.$message.success(this.$t('SystemManage.OutLinkConfig.del_success_msg'))
|
|
|
this.getOutlinkData()
|
|
|
}
|
|
|
})
|