Files
GEAR-OA/gear-ui3/src/views/oms/otherIncome/index.vue
2025-09-24 13:56:50 +08:00

267 lines
8.6 KiB
Vue

<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 label="收支类型" prop="type">
<el-radio-group v-model="type" @change="handleQuery">
<el-radio label="0">收入</el-radio>
<el-radio label="1">支出</el-radio>
</el-radio-group>
</el-form-item>
<el-form-item>
<el-button size="small" type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button size="small" icon="Refresh" @click="resetQuery">重置</el-button>
</el-form-item>
</el-form>
<el-row :gutter="10" class="mb8">
<el-col :span="1.5">
<el-button size="small" type="primary" plain icon="Plus" @click="handleAdd">新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button size="small" type="success" plain icon="Edit" :disabled="single" @click="handleUpdate">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button size="small" type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button size="small" 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="type">
<el-radio-group v-model="type">
<el-radio label="0">收入</el-radio>
<el-radio label="1">支出</el-radio>
</el-radio-group>
</el-form-item>
<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 type = ref('0');
const typeLabel = computed(() => {
return type.value === '0' ? '收入' : '支出';
})
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,
type: 1
},
rules: {
}
});
const { queryParams, form, rules } = toRefs(data);
/** 查询其他收支列表 */
function getList() {
loading.value = true;
listOtherIncome({ ...queryParams.value, type: type.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,
type: type.value
};
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, type: type.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>