107 lines
3.3 KiB
Vue
107 lines
3.3 KiB
Vue
|
|
<template>
|
||
|
|
<el-table
|
||
|
|
id="roleTable"
|
||
|
|
ref="dataTable"
|
||
|
|
:data="tableData"
|
||
|
|
:height="height"
|
||
|
|
border
|
||
|
|
@header-dragend="dragend"
|
||
|
|
@sort-change="tableDataSort"
|
||
|
|
@selection-change="selectionChange"
|
||
|
|
>
|
||
|
|
<el-table-column
|
||
|
|
:resizable="false"
|
||
|
|
align="center"
|
||
|
|
type="selection"
|
||
|
|
width="55">
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
v-for="(item, index) in customTableTitle"
|
||
|
|
:key="`col-${index}`"
|
||
|
|
:fixed="item.fixed"
|
||
|
|
:label="item.label"
|
||
|
|
:min-width="`${item.minWidth}`"
|
||
|
|
:prop="item.prop"
|
||
|
|
:resizable="true"
|
||
|
|
:sort-orders="['ascending', 'descending']"
|
||
|
|
:sortable="item.sortable"
|
||
|
|
:width="`${item.width}`"
|
||
|
|
class="data-column"
|
||
|
|
>
|
||
|
|
<template #header>
|
||
|
|
<span class="data-column__span">{{item.label}}</span>
|
||
|
|
<div class="col-resize-area"></div>
|
||
|
|
</template>
|
||
|
|
<template #default="scope" :column="item">
|
||
|
|
<template v-if="item.prop === 'name'">
|
||
|
|
<template v-if="scope.row.i18n">
|
||
|
|
<span>{{$t(scope.row.i18n)}}</span>
|
||
|
|
</template>
|
||
|
|
<template v-else-if="scope.row.name">
|
||
|
|
<span>{{scope.row.name}}</span>
|
||
|
|
</template>
|
||
|
|
<template v-else>
|
||
|
|
<span>-</span>
|
||
|
|
</template>
|
||
|
|
</template>
|
||
|
|
<span v-else>{{scope.row[item.prop]}}</span>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
<el-table-column
|
||
|
|
:resizable="false"
|
||
|
|
:width="operationWidth"
|
||
|
|
fixed="right">
|
||
|
|
<template #header>
|
||
|
|
<div class="table-operation-title">{{$t('overall.option')}}</div>
|
||
|
|
</template>
|
||
|
|
<template #default="scope">
|
||
|
|
<div class="table-operation-items">
|
||
|
|
<button class="table-operation-item" @click="tableOperation(['edit', scope.row])"><i class="nz-icon nz-icon-view1"></i></button>
|
||
|
|
<el-dropdown size="medium" trigger="hover" @command="tableOperation">
|
||
|
|
<div class="table-operation-item table-operation-item--more">
|
||
|
|
<i class="nz-icon nz-icon-more3"></i>
|
||
|
|
</div>
|
||
|
|
<template #dropdown>
|
||
|
|
<el-dropdown-menu >
|
||
|
|
<el-dropdown-item v-has="'user_edit'" :command="['edit', scope.row]"><i class="nz-icon nz-icon-edit"></i><span class="operation-dropdown-text">{{$t('overall.edit')}}</span></el-dropdown-item>
|
||
|
|
<el-dropdown-item v-has="'user_delete'" :command="['delete', scope.row]" :disabled="scope.row.id === 1"><i class="nz-icon nz-icon-delete"></i><span class="operation-dropdown-text">{{$t('overall.delete')}}</span></el-dropdown-item>
|
||
|
|
</el-dropdown-menu>
|
||
|
|
</template>
|
||
|
|
</el-dropdown>
|
||
|
|
</div>
|
||
|
|
</template>
|
||
|
|
</el-table-column>
|
||
|
|
</el-table>
|
||
|
|
</template>
|
||
|
|
|
||
|
|
<script>
|
||
|
|
import table from '@/mixins/table'
|
||
|
|
import { put } from '@/utils/http'
|
||
|
|
export default {
|
||
|
|
name: 'roleTable',
|
||
|
|
mixins: [table],
|
||
|
|
data () {
|
||
|
|
return {
|
||
|
|
tableTitle: [ // 原table列
|
||
|
|
{
|
||
|
|
label: 'ID',
|
||
|
|
prop: 'id',
|
||
|
|
show: true,
|
||
|
|
width: 80,
|
||
|
|
sortable:'custom'
|
||
|
|
}, {
|
||
|
|
label: this.$t('config.roles.name'),
|
||
|
|
prop: 'name',
|
||
|
|
show: true,
|
||
|
|
sortable:'custom'
|
||
|
|
}, {
|
||
|
|
label: this.$t('overall.remark'),
|
||
|
|
prop: 'remark',
|
||
|
|
show: true
|
||
|
|
}
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
</script>
|