electripper-v2-ui/src/views/bst/areaJoin/index.vue

295 lines
9.5 KiB
Vue
Raw Normal View History

2025-03-25 18:04:07 +08:00
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="运营区" prop="areaName">
<el-input
v-model="queryParams.areaName"
placeholder="请输入运营区"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="类型" prop="type">
<el-select v-model="queryParams.type" placeholder="请选择类型" clearable @change="handleQuery">
2025-04-16 15:02:17 +08:00
<template v-for="dict in dict.type.area_join_type">
<el-option
v-if="types.includes(dict.value)"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</template>
2025-03-25 18:04:07 +08:00
</el-select>
</el-form-item>
<el-form-item label="用户" prop="userName">
<el-input
v-model="queryParams.userName"
placeholder="请输入用户名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input
v-model="queryParams.remark"
placeholder="请输入备注"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button
type="primary"
plain
icon="el-icon-plus"
size="mini"
@click="handleAdd"
v-has-permi="['bst:areaJoin:add']"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="danger"
plain
icon="el-icon-delete"
size="mini"
:disabled="multiple"
@click="handleDelete"
v-has-permi="['bst:areaJoin:remove']"
>删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="warning"
plain
icon="el-icon-download"
size="mini"
@click="handleExport"
v-has-permi="['bst:areaJoin:export']"
>导出</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList" :columns="columns"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="areaJoinList" @selection-change="handleSelectionChange" :default-sort="defaultSort" @sort-change="onSortChange">
<el-table-column type="selection" width="55" align="center" />
<template v-for="column of showColumns">
<el-table-column
:key="column.key"
:label="column.label"
:prop="column.key"
:align="column.align"
:min-width="column.minWidth"
:sort-orders="orderSorts"
:sortable="column.sortable"
:show-overflow-tooltip="column.overflow"
:width="column.width"
>
<template slot-scope="d">
<template v-if="column.key === 'id'">
{{d.row[column.key]}}
</template>
<template v-else-if="column.key === 'userName'">
{{d.row.userName | dv}}
<template v-if="d.row.remark">{{d.row.remark}}</template>
<dict-tag :options="dict.type.area_join_type" :value="d.row.type" size="mini"/>
</template>
<template v-else-if="column.key === 'point'">
<span>{{d.row[column.key] | fix2 | dv}} %</span>
</template>
2025-04-15 18:17:02 +08:00
<template v-else-if="column.key === 'permissions'">
<dict-tag :options="dict.type.area_join_permission" :value="d.row[column.key]" size="mini"/>
</template>
2025-03-25 18:04:07 +08:00
<template v-else>
{{d.row[column.key]}}
</template>
</template>
</el-table-column>
</template>
2025-04-15 18:17:02 +08:00
<el-table-column label="操作" align="center" class-name="small-padding fixed-width" width="120">
2025-03-25 18:04:07 +08:00
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
v-has-permi="['bst:areaJoin:edit']"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
v-has-permi="['bst:areaJoin:remove']"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination
v-show="total>0"
:total="total"
:page.sync="queryParams.pageNum"
:limit.sync="queryParams.pageSize"
@pagination="getList"
/>
<!-- 引入运营加盟编辑对话框组件 -->
2025-04-03 19:55:58 +08:00
<area-join-edit-dialog
:visible.sync="dialogVisible"
:id="editId"
2025-03-25 18:04:07 +08:00
:init-data="initData"
@success="getList"
2025-04-16 15:02:17 +08:00
:types="types"
2025-03-25 18:04:07 +08:00
/>
</div>
</template>
<script>
import { listAreaJoin, delAreaJoin } from "@/api/bst/areaJoin";
import { $showColumns } from '@/utils/mixins';
import AreaJoinEditDialog from './components/AreaJoinEditDialog';
// 默认排序字段
const defaultSort = {
prop: "createTime",
order: "descending"
}
export default {
name: "AreaJoin",
mixins: [$showColumns],
2025-04-15 18:17:02 +08:00
dicts: ['area_join_type', 'area_join_permission'],
2025-03-25 18:04:07 +08:00
components: { AreaJoinEditDialog },
data() {
return {
// 字段列表
columns: [
{key: 'id', visible: false, label: 'ID', minWidth: null, sortable: true, overflow: false, align: 'center', width: "80"},
{key: 'userName', visible: true, label: '用户', minWidth: null, sortable: true, overflow: false, align: 'left', width: null},
{key: 'areaName', visible: true, label: '运营区', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
2025-04-15 18:17:02 +08:00
{key: 'point', visible: true, label: '分成比例', minWidth: null, sortable: true, overflow: false, align: 'center', width: "100"},
{key: 'permissions', visible: true, label: '权限', minWidth: null, sortable: false, overflow: false, align: 'center', width: null},
2025-03-25 18:04:07 +08:00
{key: 'createName', visible: true, label: '创建人', minWidth: null, sortable: true, overflow: false, align: 'center', width: null},
2025-04-15 18:17:02 +08:00
{key: 'createTime', visible: true, label: '创建时间', minWidth: null, sortable: true, overflow: false, align: 'center', width: "180"},
2025-03-25 18:04:07 +08:00
],
// 排序方式
orderSorts: ['ascending', 'descending', null],
// 遮罩层
loading: true,
// 选中数组
ids: [],
// 非单个禁用
single: true,
// 非多个禁用
multiple: true,
// 显示搜索条件
showSearch: true,
// 总条数
total: 0,
// 运营加盟表格数据
areaJoinList: [],
// 编辑id
editId: null,
// 初始数据
initData: {},
// 对话框显示状态
dialogVisible: false,
defaultSort,
// 查询参数
queryParams: {
pageNum: 1,
pageSize: 20,
orderByColumn: defaultSort.prop,
isAsc: defaultSort.order,
id: null,
type: null,
areaId: null,
userId: null,
remark: null,
createId: null
2025-04-16 15:02:17 +08:00
},
types: [], // 类型列表
2025-03-25 18:04:07 +08:00
};
},
created() {
2025-04-16 15:02:17 +08:00
this.types = this.$route.query?.types?.split(',') || [];
this.queryParams.types = this.types;
2025-03-25 18:04:07 +08:00
this.getList();
},
methods: {
/** 当排序按钮被点击时触发 **/
onSortChange(column) {
if (column.order == null) {
this.queryParams.orderByColumn = defaultSort.prop;
this.queryParams.isAsc = defaultSort.order;
} else {
this.queryParams.orderByColumn = column.prop;
this.queryParams.isAsc = column.order;
}
this.getList();
},
/** 查询运营加盟列表 */
getList() {
this.loading = true;
listAreaJoin(this.queryParams).then(response => {
this.areaJoinList = response.rows;
this.total = response.total;
this.loading = false;
});
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNum = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
// 多选框选中数据
handleSelectionChange(selection) {
this.ids = selection.map(item => item.id)
this.single = selection.length!==1
this.multiple = !selection.length
},
/** 新增按钮操作 */
handleAdd() {
this.editId = null;
this.initData = {};
this.dialogVisible = true;
},
/** 修改按钮操作 */
handleUpdate(row) {
this.editId = row.id || this.ids;
this.initData = {};
this.dialogVisible = true;
},
/** 删除按钮操作 */
handleDelete(row) {
const ids = row.id || this.ids;
this.$modal.confirm('是否确认删除运营加盟编号为"' + ids + '"的数据项?').then(function() {
return delAreaJoin(ids);
}).then(() => {
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {});
},
/** 导出按钮操作 */
handleExport() {
this.download('bst/areaJoin/export', {
...this.queryParams
}, `areaJoin_${new Date().getTime()}.xlsx`)
}
}
};
</script>