<template>
|
<div class="divBox">
|
<el-form :inline="true" :model="dataForm" @keyup.enter.native="getDataList()">
|
<el-form-item>
|
<el-input v-model="dataForm.key" placeholder="查询参数" clearable></el-input>
|
</el-form-item>
|
<el-form-item>
|
<el-button @click="getDataList()">查询</el-button>
|
<el-button v-hasPermi="['${moduleName}:${pathName}:save']" type="primary" @click="addOrUpdateHandle()">新增数据</el-button>
|
<el-button v-hasPermi="['${moduleName}:${pathName}:delete']" type="danger" @click="deleteHandle()" :disabled="dataListSelections.length <= 0">批量删除</el-button>
|
</el-form-item>
|
</el-form>
|
<el-table
|
:data="dataList"
|
border
|
v-loading="dataListLoading"
|
@selection-change="selectionChangeHandle"
|
style="width: 100%;">
|
<el-table-column
|
type="selection"
|
header-align="center"
|
align="center"
|
width="50">
|
</el-table-column>
|
#foreach($column in $columns)
|
<el-table-column
|
prop="${column.attrname}"
|
header-align="center"
|
align="center"
|
label="${column.comments}">
|
</el-table-column>
|
#end
|
<el-table-column
|
fixed="right"
|
header-align="center"
|
align="center"
|
width="150"
|
label="操作">
|
<template slot-scope="scope">
|
<el-button type="text" size="small" @click="addOrUpdateHandle(scope.row.${pk.attrname})">修改</el-button>
|
<el-button type="text" size="small" @click="deleteHandle(scope.row.${pk.attrname})">删除</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>
|
<!-- 表单弹窗, 新增数据和修改数据 -->
|
<add-or-update v-if="addOrUpdateVisible" ref="addOrUpdate" @refreshDataList="getDataList"></add-or-update>
|
</div>
|
</template>
|
|
<script>
|
import AddOrUpdate from './.${pathName}-add-and-update'
|
import * as api from './.${pathName}api.js'
|
export default {
|
data () {
|
return {
|
dataForm: {
|
key: ''
|
},
|
dataList: [],
|
pageIndex: 1,
|
pageSize: 10,
|
totalPage: 0,
|
dataListLoading: false,
|
dataListSelections: [],
|
addOrUpdateVisible: false
|
}
|
},
|
components: {
|
AddOrUpdate
|
},
|
activated () {
|
this.getDataList()
|
},
|
methods: {
|
// 获取数据列表
|
getDataList () {
|
this.dataListLoading = true
|
api.${pathName}ListApi().then(res => {
|
// TODO 获取数据列表
|
})
|
},
|
// 每页数
|
sizeChangeHandle (val) {
|
this.pageSize = val
|
this.pageIndex = 1
|
this.getDataList()
|
},
|
// 当前页
|
currentChangeHandle (val) {
|
this.pageIndex = val
|
this.getDataList()
|
},
|
// 多选
|
selectionChangeHandle (val) {
|
this.dataListSelections = val
|
},
|
// 新增 / 修改
|
addOrUpdateHandle (id) {
|
this.addOrUpdateVisible = true
|
#[[this.$nextTick(() => {]]#
|
this.$refs.addOrUpdate.init(id)
|
})
|
},
|
// 删除
|
deleteHandle (id) {
|
var ids = id ? [id] : this.dataListSelections.map(item => {
|
return item.${pk.attrname}
|
})
|
#[[this.$confirm(`您确定对[id=${ids.join(',')}]进行[${id ? '删除' : '批量删除'}]操作?`, '提示', {]]#
|
confirmButtonText: '确定',
|
cancelButtonText: '取消',
|
type: 'warning'
|
}).then(() => {
|
api.${pathName}DeleteApi(id).then(res => {
|
// TODO 处理删除
|
})
|
})
|
})
|
}
|
}
|
}
|
</script>
|