feat: 基础增删改查

This commit is contained in:
砂糖
2025-08-13 13:19:37 +08:00
parent 8e3497b971
commit 936f85d401
17 changed files with 2352 additions and 26 deletions

View File

@@ -0,0 +1,323 @@
<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="accountCode">
<el-input
v-model="queryParams.accountCode"
placeholder="请输入科目编码"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="科目名称" prop="accountName">
<el-input
v-model="queryParams.accountName"
placeholder="请输入科目名称"
clearable
@keyup.enter.native="handleQuery"
/>
</el-form-item>
<el-form-item label="科目类型" prop="accountType">
<el-select v-model="queryParams.accountType" placeholder="请选择科目类型" clearable>
<el-option
v-for="dict in dict.type.finance_account_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</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"
>新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button
type="info"
plain
icon="el-icon-sort"
size="mini"
@click="toggleExpandAll"
>展开/折叠</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-if="refreshTable"
v-loading="loading"
:data="accountList"
row-key="accountId"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column label="科目编码" prop="accountCode" />
<el-table-column label="科目名称" align="center" prop="accountName" />
<el-table-column label="科目类型" align="center" prop="accountType">
<template slot-scope="scope">
<dict-tag :options="dict.type.finance_account_type" :value="scope.row.accountType"/>
</template>
</el-table-column>
<el-table-column label="上级科目ID" align="center" prop="parentId" />
<el-table-column label="当前余额" align="center" prop="balance" />
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template slot-scope="scope">
<el-button
size="mini"
type="text"
icon="el-icon-edit"
@click="handleUpdate(scope.row)"
>修改</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-plus"
@click="handleAdd(scope.row)"
>新增</el-button>
<el-button
size="mini"
type="text"
icon="el-icon-delete"
@click="handleDelete(scope.row)"
>删除</el-button>
</template>
</el-table-column>
</el-table>
<!-- 添加或修改会计科目对话框 -->
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
<el-form-item label="科目编码" prop="accountCode">
<el-input v-model="form.accountCode" placeholder="请输入科目编码" />
</el-form-item>
<el-form-item label="科目名称" prop="accountName">
<el-input v-model="form.accountName" placeholder="请输入科目名称" />
</el-form-item>
<el-form-item label="科目类型" prop="accountType">
<el-select v-model="form.accountType" placeholder="请选择科目类型">
<el-option
v-for="dict in dict.type.finance_account_type"
:key="dict.value"
:label="dict.label"
:value="dict.value"
></el-option>
</el-select>
</el-form-item>
<el-form-item label="上级科目ID" prop="parentId">
<treeselect v-model="form.parentId" :options="accountOptions" :normalizer="normalizer" placeholder="请选择上级科目ID" />
</el-form-item>
<el-form-item label="当前余额" prop="balance">
<el-input v-model="form.balance" placeholder="请输入当前余额" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import { listAccount, getAccount, delAccount, addAccount, updateAccount } from "@/api/finance/account";
import Treeselect from "@riophae/vue-treeselect";
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
export default {
name: "Account",
dicts: ['finance_account_type'],
components: {
Treeselect
},
data() {
return {
// 按钮loading
buttonLoading: false,
// 遮罩层
loading: true,
// 显示搜索条件
showSearch: true,
// 会计科目表格数据
accountList: [],
// 会计科目树选项
accountOptions: [],
// 弹出层标题
title: "",
// 是否显示弹出层
open: false,
// 是否展开,默认全部展开
isExpandAll: true,
// 重新渲染表格状态
refreshTable: true,
// 查询参数
queryParams: {
accountCode: undefined,
accountName: undefined,
accountType: undefined,
parentId: undefined,
balance: undefined,
},
// 表单参数
form: {},
// 表单校验
rules: {
}
};
},
created() {
this.getList();
},
methods: {
/** 查询会计科目列表 */
getList() {
this.loading = true;
listAccount(this.queryParams).then(response => {
this.accountList = this.handleTree(response.data, "accountId", "parentId");
this.loading = false;
});
},
/** 转换会计科目数据结构 */
normalizer(node) {
if (node.children && !node.children.length) {
delete node.children;
}
return {
id: node.accountId,
label: node.accountName,
children: node.children
};
},
/** 查询会计科目下拉树结构 */
getTreeselect() {
listAccount().then(response => {
this.accountOptions = [];
const data = { accountId: null, accountName: '顶级节点', children: [] };
data.children = this.handleTree(response.data, "accountId", "parentId");
this.accountOptions.push(data);
});
},
// 取消按钮
cancel() {
this.open = false;
this.reset();
},
// 表单重置
reset() {
this.form = {
accountId: null,
accountCode: null,
accountName: null,
accountType: null,
parentId: null,
balance: null,
delFlag: null,
remark: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null
};
this.resetForm("form");
},
/** 搜索按钮操作 */
handleQuery() {
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 新增按钮操作 */
handleAdd(row) {
this.reset();
this.getTreeselect();
if (row != null && row.accountId) {
this.form.parentId = row.accountId;
} else {
this.form.parentId = 0;
}
this.open = true;
this.title = "添加会计科目";
},
/** 展开/折叠操作 */
toggleExpandAll() {
this.refreshTable = false;
this.isExpandAll = !this.isExpandAll;
this.$nextTick(() => {
this.refreshTable = true;
});
},
/** 修改按钮操作 */
handleUpdate(row) {
this.loading = true;
this.reset();
this.getTreeselect();
if (row != null) {
this.form.parentId = row.accountId;
}
getAccount(row.accountId).then(response => {
this.loading = false;
this.form = response.data;
this.open = true;
this.title = "修改会计科目";
});
},
/** 提交按钮 */
submitForm() {
this.$refs["form"].validate(valid => {
if (valid) {
this.buttonLoading = true;
if (this.form.accountId != null) {
updateAccount(this.form).then(response => {
this.$modal.msgSuccess("修改成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
} else {
addAccount(this.form).then(response => {
this.$modal.msgSuccess("新增成功");
this.open = false;
this.getList();
}).finally(() => {
this.buttonLoading = false;
});
}
}
});
},
/** 删除按钮操作 */
handleDelete(row) {
this.$modal.confirm('是否确认删除会计科目编号为"' + row.accountId + '"的数据项?').then(() => {
this.loading = true;
return delAccount(row.accountId);
}).then(() => {
this.loading = false;
this.getList();
this.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
this.loading = false;
});
}
}
};
</script>