账目分类,配件分类,服务分类

This commit is contained in:
PQZ 2024-09-10 17:56:04 +08:00
parent afa495c953
commit 9fd9c7c084
4 changed files with 284 additions and 3 deletions

View File

@ -17,6 +17,9 @@
<el-form-item label="分类编码" prop="code">
<el-input v-model="formData.code" placeholder="请输入分类编码"/>
</el-form-item>
<el-form-item label="排序" prop="sort">
<el-input-number v-model="formData.sort" :precision="2" :step="0.1" :max="10"></el-input-number>
</el-form-item>
<el-form-item label="关联子公司" prop="corpId">
<el-select v-model="formData.corpIds" multiple placeholder="请选择">
<el-option
@ -68,6 +71,7 @@ export default {
remark: undefined,
corpIds: [],
corpId: undefined,
sort:0.00
},
//
formRules: {
@ -170,6 +174,7 @@ export default {
remark: undefined,
corpIds: [],
corpId: undefined,
sort:0.00
};
this.resetForm("formRef");
}

View File

@ -35,9 +35,9 @@
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="240" label="分类名称" align="center" prop="name"/>
<el-table-column width="200" label="分类名称" align="left" prop="name"/>
<el-table-column width="200" label="分类编码" align="center" prop="code"/>
<!-- <el-table-column label="备注" align="left" prop="remark"/>-->
<el-table-column width="100" label="排序" align="center" prop="sort"/>
<el-table-column label="关联子公司" align="left" prop="corpNames"/>
<el-table-column width="240" label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
@ -124,7 +124,7 @@ export default {
/** 删除按钮操作 */
async handleDelete(row) {
const id = row.id;
await this.$modal.confirm('是否确认删除配置类型编号为"' + id + '"的数据项?')
await this.$modal.confirm('是否确认删除名称为"' + row.name + '"的数据项?')
try {
await BaseTypeApi.deleteBaseType(id);
await this.getList();

View File

@ -0,0 +1,138 @@
<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="name">
<el-input v-model="queryParams.name" placeholder="请输入分类名称" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item label="分类编码" prop="code">
<el-input v-model="queryParams.code" placeholder="请输入分类编码" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" @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="openForm(undefined,false)"
v-hasPermi="['conf:base-type-parts:create']">新增
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
v-if="refreshTable"
row-key="id"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="200" label="分类名称" align="left" prop="name"/>
<el-table-column width="200" label="分类编码" align="center" prop="code"/>
<el-table-column width="100" label="排序" align="center" prop="sort"/>
<el-table-column label="关联子公司" align="left" prop="corpNames"/>
<el-table-column width="240" label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button size="mini" type="text" icon="el-icon-plus" @click="openForm(scope.row.id,true)"
v-hasPermi="['conf:base-type-parts:update']">新增
</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id,false)"
v-hasPermi="['conf:base-type-parts:update']">修改
</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['conf:base-type-parts:delete']">删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 对话框(添加 / 修改) -->
<BaseTypeForm ref="formRef" @success="getList"/>
</div>
</template>
<script>
import * as BaseTypeApi from '@/api/base/type';
import BaseTypeForm from '@/views/conf/baseType/BaseTypeForm.vue';
export default {
name: "BaseTypePart",
components: {
BaseTypeForm,
},
data() {
return {
//
loading: true,
//
exportLoading: false,
//
showSearch: true,
//
list: [],
//
isExpandAll: true,
//
refreshTable: true,
//
currentRow: {},
//
queryParams: {
parentId: null,
name: null,
type: '02',
createTime: [],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询列表 */
async getList() {
try {
this.loading = true;
const res = await BaseTypeApi.getBaseTypeList(this.queryParams);
this.list = this.handleTree(res.data, "id", "parentId", "children", "0");
} finally {
this.loading = false;
}
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 添加/修改操作 */
openForm(id,addChild) {
this.$refs["formRef"].open(id,this.queryParams.type,addChild);
},
/** 删除按钮操作 */
async handleDelete(row) {
const id = row.id;
await this.$modal.confirm('是否确认删除名称为"' + row.name + '"的数据项?')
try {
await BaseTypeApi.deleteBaseType(id);
await this.getList();
this.$modal.msgSuccess("删除成功");
} catch {
}
},
}
};
</script>

View File

@ -0,0 +1,138 @@
<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="name">
<el-input v-model="queryParams.name" placeholder="请输入分类名称" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item label="分类编码" prop="code">
<el-input v-model="queryParams.code" placeholder="请输入分类编码" clearable @keyup.enter.native="handleQuery"/>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" @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="openForm(undefined,false)"
v-hasPermi="['conf:base-type-serve:create']">新增
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table
v-loading="loading"
:data="list"
:stripe="true"
:show-overflow-tooltip="true"
v-if="refreshTable"
row-key="id"
:default-expand-all="isExpandAll"
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
>
<el-table-column width="200" label="分类名称" align="left" prop="name"/>
<el-table-column width="200" label="分类编码" align="center" prop="code"/>
<el-table-column width="100" label="排序" align="center" prop="sort"/>
<el-table-column label="关联子公司" align="left" prop="corpNames"/>
<el-table-column width="240" label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button size="mini" type="text" icon="el-icon-plus" @click="openForm(scope.row.id,true)"
v-hasPermi="['conf:base-type-serve:update']">新增
</el-button>
<el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id,false)"
v-hasPermi="['conf:base-type-serve:update']">修改
</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['conf:base-type-serve:delete']">删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 对话框(添加 / 修改) -->
<BaseTypeForm ref="formRef" @success="getList"/>
</div>
</template>
<script>
import * as BaseTypeApi from '@/api/base/type';
import BaseTypeForm from '@/views/conf/baseType/BaseTypeForm.vue';
export default {
name: "BaseTypePart",
components: {
BaseTypeForm,
},
data() {
return {
//
loading: true,
//
exportLoading: false,
//
showSearch: true,
//
list: [],
//
isExpandAll: true,
//
refreshTable: true,
//
currentRow: {},
//
queryParams: {
parentId: null,
name: null,
type: '03',
createTime: [],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询列表 */
async getList() {
try {
this.loading = true;
const res = await BaseTypeApi.getBaseTypeList(this.queryParams);
this.list = this.handleTree(res.data, "id", "parentId", "children", "0");
} finally {
this.loading = false;
}
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 添加/修改操作 */
openForm(id,addChild) {
this.$refs["formRef"].open(id,this.queryParams.type,addChild);
},
/** 删除按钮操作 */
async handleDelete(row) {
const id = row.id;
await this.$modal.confirm('是否确认删除名称为"' + row.name + '"的数据项?')
try {
await BaseTypeApi.deleteBaseType(id);
await this.getList();
this.$modal.msgSuccess("删除成功");
} catch {
}
},
}
};
</script>