You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

320 lines
11 KiB

<template>
<div class="mod-dict">
<el-row :gutter="10">
<el-col :xs="13" :sm="13" :md="13" :lg="13" :xl="13" style="margin-bottom: 10px">
<el-card>
<el-form :inline="true" :model="dataForm" size="mini" @keyup.enter.native="getDataList()">
<el-form-item>
<el-input v-model="dataForm.blurry" placeholder="输入名称或者描述搜索" clearable></el-input>
</el-form-item>
<el-form-item>
<el-button @click="getDataList()">查询</el-button>
<el-button v-if="isAuth('sys:dict:save')" type="primary" @click="addOrUpdateHandle()">新增</el-button>
<el-button v-if="isAuth('sys:dict:delete')" type="danger" @click="deleteHandle(1)" :disabled="dataListSelections.length <= 0">批量删除</el-button>
</el-form-item>
</el-form>
<el-table
:data="dataList"
border
size="mini"
v-loading="dataListLoading"
highlight-current-row
style="width: 100%;"
@selection-change="selectionChangeHandle"
@current-change="handleCurrentChange">
<el-table-column
type="selection"
header-align="center"
align="center"
width="50">
</el-table-column>
<el-table-column
prop="code"
header-align="center"
align="center"
label="编码">
</el-table-column>
<el-table-column
prop="name"
header-align="center"
align="center"
label="名称">
</el-table-column>
<el-table-column
fixed="right"
header-align="center"
align="center"
width="150"
label="操作">
<template slot-scope="scope">
<el-button v-if="isAuth('sys:dict:update')" type="text" size="small" @click="addOrUpdateHandle(scope.row)">修改</el-button>
<el-button v-if="isAuth('sys:dict:delete')" type="text" size="small" @click="deleteHandle(2, scope.row.dictId)">删除</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
@size-change="sizeChangeHandle"
@current-change="currentChangeHandle"
:current-page="pageIndex"
:page-sizes="[10, 20, 50, 100]"
:page-size="pageSize"
:total="totalPage"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
</el-card>
</el-col>
<el-col :xs="11" :sm="11" :md="11" :lg="11" :xl="11">
<el-card>
<div slot="header" class="card-title">
<span>字典详情</span>
<el-button size="mini" v-if="isAuth('sys:dict:add')" style="float: right;" type="primary" @click="detailAddOrUpdateHandle()">新增</el-button>
</div>
<div v-if="query.code === ''">
<div class="my-code">点击字典查看详情</div>
</div>
<div v-else>
<el-table
:data="detailList"
border
size="mini"
v-loading="detailListLoading"
highlight-current-row
style="width: 100%;">
<el-table-column prop="code" label="所属字典" min-width="150" show-overflow-tooltip />
<el-table-column prop="label" label="字典标签" align="center" width="120" show-overflow-tooltip />
<el-table-column prop="value" label="字典值" align="center" width="60" />
<el-table-column prop="dict_sort" label="排序" align="center" width="65" />
<el-table-column prop="para1" label="参数1" align="center" width="65" />
<el-table-column prop="para2" label="参数2" align="center" width="65" />
<el-table-column prop="para3" label="参数3" align="center" width="65" />
<el-table-column
label="操作"
align="center"
width="115px"
fixed="right"
>
<template slot-scope="scope">
<el-button v-if="isAuth('sys:dict:update')" type="text" size="small" @click="detailAddOrUpdateHandle(scope.row)">修改</el-button>
<el-button v-if="isAuth('sys:dict:delete')" type="text" size="small" @click="detailDeleteHandle(scope.row.dictId)">删除</el-button>
</template>
</el-table-column>
</el-table>
<el-pagination
@size-change="detailSizeChangeHandle"
@current-change="detailCurrentChangeHandle"
:current-page="detailPageIndex"
:page-sizes="[10, 20, 50, 100]"
:page-size="detailPageSize"
:total="detailTotalPage"
layout="total, sizes, prev, pager, next, jumper">
</el-pagination>
</div>
</el-card>
</el-col>
</el-row>
<!-- 弹窗, 新增 / 修改 -->
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
<detail-add-or-update v-if="detailAddOrUpdateVisible" ref="detailAddOrUpdate" @refreshDataList="getDetailList"></detail-add-or-update>
</div>
</template>
<script>
import AddOrUpdate from './dict-add-or-update'
import DetailAddOrUpdate from './dictDetail-add-or-update'
export default {
data () {
return {
dataForm: {
blurry: ''
},
dataList: [],
pageIndex: 0,
pageSize: 10,
totalPage: 0,
dataListLoading: false,
dataListSelections: [],
addOrUpdateVisible: false,
query: {code: ''},
detailList: [],
detailPageIndex: 0,
detailPageSize: 10,
detailTotalPage: 0,
detailListLoading: false,
detailListSelections: [],
detailAddOrUpdateVisible: false
}
},
components: {
AddOrUpdate,
DetailAddOrUpdate
},
activated () {
this.getDataList()
},
methods: {
// 获取数据列表
getDataList () {
this.dataListLoading = true
this.$http({
url: this.$http.adornUrl('/api/dict'),
method: 'get',
params: this.$http.adornParams({
'page': this.pageIndex,
'size': this.pageSize,
'sort': 'id,desc',
'blurry': this.dataForm.blurry
})
}).then(({data}) => {
if (data && data.code === 200) {
this.dataList = data.content
this.totalPage = data.totalElements
} else {
this.dataList = []
this.totalPage = 0
}
this.dataListLoading = false
})
},
// 每页数
sizeChangeHandle (val) {
this.pageSize = val
this.pageIndex = 0
this.getDataList()
},
// 当前页
currentChangeHandle (val) {
this.pageIndex = val
this.getDataList()
},
// 多选
selectionChangeHandle (val) {
this.dataListSelections = val
},
// 新增 / 修改
addOrUpdateHandle (row) {
this.addOrUpdateVisible = true
this.$nextTick(() => {
this.$refs.addOrUpdate.init(row)
})
},
// 删除
deleteHandle (type, id) {
var ids = id ? [id] : this.dataListSelections.map(item => {
return item.dictId
})
this.$confirm(type === 1 ? `确定删除选中的${this.dataListSelections.length}条数据吗?` : '确定删除本条数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl('/api/dict/'),
method: 'DELETE',
data: ids
}).then(({data}) => {
if (data && data.code === 200) {
this.$message({
message: data.msg,
type: 'success',
duration: 1500,
onClose: () => {
this.getDataList()
}
})
} else {
this.$message.error(data.msg)
}
})
}).catch(() => {})
},
// 选中字典后,设置字典详情数据
handleCurrentChange(val) {
if (val) {
this.query = val
this.getDetailList()
}
},
// 获取字典详情列表
getDetailList () {
this.detailListLoading = true
this.$http({
url: this.$http.adornUrl('/api/dict/dictDetail'),
method: 'get',
params: this.$http.adornParams({
'page': this.detailPageIndex,
'size': this.detailPageSize,
'sort': 'dict_id,desc',
'code': this.query.code
})
}).then(({data}) => {
if (data && data.code === 200) {
this.detailList = data.content
this.detailTotalPage = data.totalElements
} else {
this.detailList = []
this.detailTotalPage = 0
}
this.detailListLoading = false
})
},
// 每页数
detailSizeChangeHandle (val) {
this.detailPageSize = val
this.detailPageIndex = 0
this.getDetailList()
},
// 当前页
detailCurrentChangeHandle (val) {
this.detailPageIndex = val
this.getDetailList()
},
// 字典详情新增 / 修改
detailAddOrUpdateHandle (row) {
this.detailAddOrUpdateVisible = true
this.$nextTick(() => {
this.$refs.detailAddOrUpdate.init(row, this.query.code)
})
},
// 删除
detailDeleteHandle (id) {
this.$confirm('确定删除本条数据吗?', '提示', {
confirmButtonText: '确定',
cancelButtonText: '取消',
type: 'warning'
}).then(() => {
this.$http({
url: this.$http.adornUrl(`/api/dict/dictDetail/${id}`),
method: 'DELETE',
data: this.$http.adornData()
}).then(({data}) => {
if (data && data.code === 200) {
this.$message({
message: data.msg,
type: 'success',
duration: 1500,
onClose: () => {
this.getDetailList()
}
})
} else {
this.$message.error(data.msg)
}
})
}).catch(() => {})
}
}
}
</script>
<style scoped>
.grid-content {
width: 100%;
border: 1px solid #dfe6ec;
padding: 20px;
}
.card-title {
display: flex;
justify-content: space-between;
align-items: center;
}
</style>