feat: 家具初版

This commit is contained in:
砂糖
2025-09-03 11:55:00 +08:00
parent 623fa846a4
commit 82faee4f7c
44 changed files with 1824 additions and 943 deletions

View File

@@ -0,0 +1,245 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="68px">
<el-form-item label="收入来源" prop="source">
<el-input v-model="queryParams.source" placeholder="请输入收入来源" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item label="收入类型" prop="incomeType">
<el-input v-model="queryParams.incomeType" placeholder="请输入收入类型" clearable @keyup.enter="handleQuery" />
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button 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="Plus" @click="handleAdd">新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport">导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="otherIncomeList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<el-table-column label="其他收入ID" align="center" prop="otherIncomeId" v-if="false" />
<el-table-column label="收入日期" align="center" prop="incomeDate" width="180">
<template #default="scope">
<span>{{ formatterTime(scope.row.incomeDate) }}</span>
</template>
</el-table-column>
<el-table-column label="收入类型" align="center" prop="incomeType" />
<el-table-column label="收入金额" align="center" prop="amount" />
<el-table-column label="收入来源" align="center" prop="source" />
<el-table-column label="备注" align="center" prop="remark" />
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button link type="primary" icon="Edit" @click="handleUpdate(scope.row)">修改</el-button>
<el-button link type="primary" icon="Delete" @click="handleDelete(scope.row)">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination v-show="total > 0" :total="total" v-model:page="queryParams.pageNum" v-model:limit="queryParams.pageSize"
@pagination="getList" />
<!-- 添加或修改其他收入对话框 -->
<el-dialog :title="title" v-model="open" width="500px" append-to-body>
<el-form ref="otherIncomeRef" :model="form" :rules="rules" label-width="80px">
<el-form-item label="收入日期" prop="incomeDate">
<el-date-picker clearable v-model="form.incomeDate" type="datetime" value-format="YYYY-MM-DD HH:mm:ss"
placeholder="请选择收入日期">
</el-date-picker>
</el-form-item>
<el-form-item label="收入类型" prop="incomeType">
<el-input v-model="form.incomeType" placeholder="请输入收入类型" />
</el-form-item>
<el-form-item label="收入金额" prop="amount">
<el-input v-model="form.amount" placeholder="请输入收入金额" />
</el-form-item>
<el-form-item label="收入来源" prop="source">
<el-input v-model="form.source" placeholder="请输入收入来源" />
</el-form-item>
<el-form-item label="备注" prop="remark">
<el-input v-model="form.remark" placeholder="请输入备注" />
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button :loading="buttonLoading" type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup name="OtherIncome">
import { listOtherIncome, getOtherIncome, delOtherIncome, addOtherIncome, updateOtherIncome } from "@/api/oa/otherIncome";
const { proxy } = getCurrentInstance();
const otherIncomeList = ref([]);
const open = ref(false);
const buttonLoading = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const title = ref("");
const formatterTime = (time) => {
return proxy.parseTime(time, '{y}-{m}-{d}')
}
const data = reactive({
form: {},
queryParams: {
pageNum: 1,
pageSize: 10,
incomeDate: undefined,
incomeType: undefined,
amount: undefined,
source: undefined,
},
rules: {
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询其他收入列表 */
function getList() {
loading.value = true;
listOtherIncome(queryParams.value).then(response => {
otherIncomeList.value = response.rows;
total.value = response.total;
loading.value = false;
});
}
// 取消按钮
function cancel() {
open.value = false;
reset();
}
// 表单重置
function reset() {
form.value = {
otherIncomeId: null,
incomeDate: null,
incomeType: null,
amount: null,
source: null,
remark: null,
delFlag: null,
createTime: null,
createBy: null,
updateTime: null,
updateBy: null
};
proxy.resetForm("otherIncomeRef");
}
/** 搜索按钮操作 */
function handleQuery() {
queryParams.value.pageNum = 1;
getList();
}
/** 重置按钮操作 */
function resetQuery() {
proxy.resetForm("queryRef");
handleQuery();
}
// 多选框选中数据
function handleSelectionChange(selection) {
ids.value = selection.map(item => item.otherIncomeId);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 新增按钮操作 */
function handleAdd() {
reset();
open.value = true;
title.value = "添加其他收入";
}
/** 修改按钮操作 */
function handleUpdate(row) {
loading.value = true
reset();
const _otherIncomeId = row.otherIncomeId || ids.value
getOtherIncome(_otherIncomeId).then(response => {
loading.value = false;
form.value = response.data;
open.value = true;
title.value = "修改其他收入";
});
}
/** 提交按钮 */
function submitForm() {
proxy.$refs["otherIncomeRef"].validate(valid => {
if (valid) {
buttonLoading.value = true;
if (form.value.otherIncomeId != null) {
updateOtherIncome(form.value).then(response => {
proxy.$modal.msgSuccess("修改成功");
open.value = false;
getList();
}).finally(() => {
buttonLoading.value = false;
});
} else {
addOtherIncome(form.value).then(response => {
proxy.$modal.msgSuccess("新增成功");
open.value = false;
getList();
}).finally(() => {
buttonLoading.value = false;
});
}
}
});
}
/** 删除按钮操作 */
function handleDelete(row) {
const _otherIncomeIds = row.otherIncomeId || ids.value;
proxy.$modal.confirm('是否确认删除其他收入编号为"' + _otherIncomeIds + '"的数据项?').then(function () {
loading.value = true;
return delOtherIncome(_otherIncomeIds);
}).then(() => {
loading.value = true;
getList();
proxy.$modal.msgSuccess("删除成功");
}).catch(() => {
}).finally(() => {
loading.value = false;
});
}
/** 导出按钮操作 */
function handleExport() {
proxy.download('oa/otherIncome/export', {
...queryParams.value
}, `otherIncome_${new Date().getTime()}.xlsx`)
}
getList();
</script>