|
@@ -5,7 +5,7 @@
|
|
|
type="primary"
|
|
|
@click="showEditAccount=true;activeTermId=0;initData={}"
|
|
|
v-permission="permissionBtn.dataSourcePermission.dataSource_account_add"
|
|
|
- >新增终端账号</el-button>
|
|
|
+ >{{$t('SystemManage.DataSourceAccount.add_btn')}}</el-button>
|
|
|
<el-table
|
|
|
style="margin-top:30px"
|
|
|
:data="tableData"
|
|
@@ -23,33 +23,33 @@
|
|
|
<span
|
|
|
v-if="col.key==='Status'"
|
|
|
:style="{color:scope.row.Status===1?'':'#FF0000'}"
|
|
|
- >{{scope.row.Status===1?'启用':'禁用'}}</span>
|
|
|
+ >{{scope.row.Status===1?$t('Common.enable'):$t('Common.disable')}}</span>
|
|
|
<span v-else>{{scope.row[col.key]}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
- <el-table-column label="操作" align="center" width="100">
|
|
|
+ <el-table-column :label="$t('Table.column_operations')" align="center" width="100">
|
|
|
<template slot-scope="scope">
|
|
|
<span
|
|
|
style="color:#409EFF;cursor: pointer;"
|
|
|
@click="handleEditAccount(scope.row)"
|
|
|
v-permission="permissionBtn.dataSourcePermission.dataSource_account_edit"
|
|
|
- >编辑</span>
|
|
|
+ >{{$t('Table.edit_btn')}}</span>
|
|
|
<span
|
|
|
style="color:#409EFF;cursor: pointer;"
|
|
|
@click="handleSetAccountStatus(scope.row,2)"
|
|
|
v-if="scope.row.Status===1"
|
|
|
v-permission="permissionBtn.dataSourcePermission.dataSource_account_enable"
|
|
|
- >禁用</span>
|
|
|
+ >{{$t('Common.disable')}}</span>
|
|
|
<span
|
|
|
style="color:#409EFF;cursor: pointer;"
|
|
|
@click="handleSetAccountStatus(scope.row,1)"
|
|
|
v-if="scope.row.Status===2"
|
|
|
v-permission="permissionBtn.dataSourcePermission.dataSource_account_enable"
|
|
|
- >启用</span>
|
|
|
+ >{{$t('Common.enable')}}</span>
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<div slot="empty">
|
|
|
- <tableNoData text="暂无数据"/>
|
|
|
+ <tableNoData :text="$t('Table.prompt_slogan')"/>
|
|
|
</div>
|
|
|
</el-table>
|
|
|
|
|
@@ -68,48 +68,91 @@ import EditAccount from './components/EditAccount.vue'
|
|
|
import {apiDataSource} from '@/api/modules/dataSource.js'
|
|
|
export default {
|
|
|
components:{EditAccount},
|
|
|
- data() {
|
|
|
- return {
|
|
|
- tableData:[],
|
|
|
- tableColOpts:[
|
|
|
+ computed:{
|
|
|
+ tableColOpts(){
|
|
|
+ return [
|
|
|
{
|
|
|
- name:'终端编码',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col01'),
|
|
|
key:'TerminalCode',
|
|
|
},
|
|
|
{
|
|
|
- name:'终端名称',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col02'),
|
|
|
key:'Name',
|
|
|
},
|
|
|
{
|
|
|
- name:'文件夹路径',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col03'),
|
|
|
key:'DirPath',
|
|
|
},
|
|
|
{
|
|
|
- name:'终端地址',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col04'),
|
|
|
key:'ServerUrl',
|
|
|
},
|
|
|
{
|
|
|
- name:'终端token',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col05'),
|
|
|
key:'Value',
|
|
|
},
|
|
|
{
|
|
|
- name:'数据源类型',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col06'),
|
|
|
key:'Source',
|
|
|
},
|
|
|
{
|
|
|
- name:'状态',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col07'),
|
|
|
key:'Status',
|
|
|
},
|
|
|
{
|
|
|
- name:'指标数据量',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col08'),
|
|
|
key:'Num',
|
|
|
},
|
|
|
{
|
|
|
- name:'更新时间',
|
|
|
+ name:this.$t('SystemManage.DataSourceAccount.table_col09'),
|
|
|
key:'ModifyTime',
|
|
|
sortable:true
|
|
|
},
|
|
|
- ],
|
|
|
+ ]
|
|
|
+ }
|
|
|
+ },
|
|
|
+ data() {
|
|
|
+ return {
|
|
|
+ tableData:[],
|
|
|
+ // tableColOpts:[
|
|
|
+ // {
|
|
|
+ // name:'终端编码',
|
|
|
+ // key:'TerminalCode',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'终端名称',
|
|
|
+ // key:'Name',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'文件夹路径',
|
|
|
+ // key:'DirPath',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'终端地址',
|
|
|
+ // key:'ServerUrl',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'终端token',
|
|
|
+ // key:'Value',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'数据源类型',
|
|
|
+ // key:'Source',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'状态',
|
|
|
+ // key:'Status',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'指标数据量',
|
|
|
+ // key:'Num',
|
|
|
+ // },
|
|
|
+ // {
|
|
|
+ // name:'更新时间',
|
|
|
+ // key:'ModifyTime',
|
|
|
+ // sortable:true
|
|
|
+ // },
|
|
|
+ // ],
|
|
|
|
|
|
showEditAccount:false,
|
|
|
activeTermId:0,
|