<template>
|
<div class="mod-transport">
|
<avue-crud
|
ref="crud"
|
:page.sync="page"
|
:data="dataList"
|
:option="tableOption"
|
@search-change="searchChange"
|
@selection-change="selectionChange"
|
@on-load="getDataList"
|
>
|
<template slot="menuLeft"></template>
|
<template slot-scope="scope" slot="menu">
|
<el-button
|
type="primary"
|
icon="el-icon-edit"
|
size="small"
|
v-if="isAuth('sys:user:update')"
|
@click.stop="addOrUpdateHandle(scope.row, scope.$index)"
|
>
|
编辑
|
</el-button>
|
</template>
|
</avue-crud>
|
<!-- 弹窗, 新增 / 修改 -->
|
<add-or-update
|
v-if="addOrUpdateVisible"
|
ref="addOrUpdate"
|
:dataList="dataList"
|
:currentPage="page.currentPage"
|
:pageSize="page.pageSize"
|
@refreshDataList="refreshDataList"
|
></add-or-update>
|
</div>
|
</template>
|
|
<script>
|
import { tableOption } from "@/crud/sys/root";
|
import AddOrUpdate from "./root-sys-config-add-or-update";
|
|
export default {
|
data() {
|
return {
|
dataList: [],
|
dataListLoading: false,
|
dataListSelections: [],
|
addOrUpdateVisible: false,
|
tableOption: tableOption,
|
page: {
|
total: 0, // 总页数
|
currentPage: 1, // 当前页数
|
pageSize: 10, // 每页显示多少条
|
},
|
searchParams: {}, // 搜索条件
|
};
|
},
|
components: {
|
AddOrUpdate,
|
},
|
methods: {
|
// 获取数据列表
|
getDataList(page, done) {
|
this.dataListLoading = true;
|
const params = {
|
current: page == null ? this.page.currentPage : page.currentPage,
|
size: page == null ? this.page.pageSize : page.pageSize,
|
...this.searchParams,
|
};
|
this.$http({
|
url: this.$http.adornUrl("/normal/adminSysparaAction!/list.action"),
|
method: "get",
|
params: this.$http.adornParams(params),
|
}).then(({ data }) => {
|
console.log("this.dataList = " + JSON.stringify(data));
|
this.dataList = data.data.records;
|
this.page.total = data.data.total;
|
|
// 更新当前页,确保与实际数据一致
|
if (page != null) {
|
this.page.currentPage = page.currentPage;
|
}
|
|
this.dataListLoading = false;
|
|
// 激活事件,发送数据
|
this.$bus.$emit("root2-sys-config", {});
|
|
if (done) {
|
done();
|
}
|
});
|
},
|
// 刷新数据列表
|
refreshDataList() {
|
this.getDataList(this.page);
|
},
|
// 条件查询
|
searchChange(params, done) {
|
this.page.currentPage = 1; // 重置当前页为第一页
|
this.searchParams = params;
|
this.getDataList(this.page, done);
|
},
|
// 多选变化
|
selectionChange(val) {
|
this.dataListSelections = val;
|
},
|
// 新增 / 修改
|
addOrUpdateHandle(data, index) {
|
this.addOrUpdateVisible = true;
|
this.$nextTick(() => {
|
this.$refs.addOrUpdate.init(data, index);
|
});
|
},
|
},
|
};
|
</script>
|