|
@@ -1,17 +1,17 @@
|
|
|
<template>
|
|
|
+ <van-cell-group>
|
|
|
+ <van-cell is-link title="筛选条件" @click="feeScreenShow = true" size="large">
|
|
|
+ <template #value>
|
|
|
+ <van-row justify="end">
|
|
|
+ <van-col @click.stop="resetFeeDetail">
|
|
|
+ <van-text-ellipsis content="重置"/>
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
+ </template>
|
|
|
+ </van-cell>
|
|
|
+ </van-cell-group>
|
|
|
<van-tabs v-model:active="active">
|
|
|
<van-tab title="按费用类型">
|
|
|
- <van-cell-group>
|
|
|
- <van-cell is-link title="筛选条件" @click="feeScreenShow = true" size="large">
|
|
|
- <template #value>
|
|
|
- <van-row justify="end">
|
|
|
- <van-col @click.stop="resetFeeDetail">
|
|
|
- <van-text-ellipsis content="重置"/>
|
|
|
- </van-col>
|
|
|
- </van-row>
|
|
|
- </template>
|
|
|
- </van-cell>
|
|
|
- </van-cell-group>
|
|
|
<van-collapse v-model="activeType" style="margin-top: 0.5rem">
|
|
|
<van-collapse-item
|
|
|
size="large"
|
|
@@ -56,35 +56,70 @@
|
|
|
>
|
|
|
<van-row style="margin-top: 0.5rem" class="feeScreenBox">
|
|
|
<van-col :span="22" :offset="1">
|
|
|
- <el-form label-width="90" label-position="left" size="large">
|
|
|
+ <el-form label-width="100" label-position="left" size="large">
|
|
|
+ <el-form-item label="项目:">
|
|
|
+ <el-select
|
|
|
+ v-model="condition.code"
|
|
|
+ clearable
|
|
|
+ placeholder="请选择项目"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in projectData"
|
|
|
+ :key="item.code"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.code"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
<el-form-item label="年份:">
|
|
|
<el-date-picker
|
|
|
- v-model="monthFee.yearTime"
|
|
|
+ v-model="condition.yearTime"
|
|
|
type="year"
|
|
|
placeholder="请选择年份"
|
|
|
format="YYYY"
|
|
|
value-format="YYYY"
|
|
|
clearable
|
|
|
- @clear="monthFee.yearTime = ''"
|
|
|
+ @clear="condition.yearTime = ''"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
<el-form-item
|
|
|
- label="月份:"
|
|
|
+ label="月份:"
|
|
|
>
|
|
|
<el-date-picker
|
|
|
- v-model="monthFee.monthTime"
|
|
|
+ v-model="condition.monthTime"
|
|
|
type="month"
|
|
|
placeholder="请选择月份"
|
|
|
format="YYYY-MM"
|
|
|
value-format="YYYY-MM"
|
|
|
clearable
|
|
|
- @clear="monthFee.monthTime = ''"
|
|
|
+ @clear="condition.monthTime = ''"
|
|
|
/>
|
|
|
</el-form-item>
|
|
|
+ <el-form-item
|
|
|
+ label="费用类型:"
|
|
|
+ >
|
|
|
+ <el-select
|
|
|
+ v-model="condition.genre"
|
|
|
+ clearable
|
|
|
+ placeholder="请选择项目"
|
|
|
+ >
|
|
|
+ <el-option
|
|
|
+ v-for="item in firmCostTypeList"
|
|
|
+ :key="item.ID"
|
|
|
+ :label="item.name"
|
|
|
+ :value="item.ID"
|
|
|
+ />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
<van-row style="margin-top: 1rem">
|
|
|
<van-col :span="24">
|
|
|
- <van-button type="primary" size="large">查询</van-button>
|
|
|
+ <van-button
|
|
|
+ @click="queryDataInfo"
|
|
|
+ type="primary"
|
|
|
+ size="large">
|
|
|
+ 查询
|
|
|
+ </van-button>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
</van-col>
|
|
@@ -93,47 +128,87 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { queryProjectMonthFee, queryMonthExpenses } from '@/api/project'
|
|
|
+import { queryProjectMonthFee, queryMonthExpenses,getAllProject } from '@/api/project'
|
|
|
+import { queryExpensesGenre } from "@/api/firmCost";
|
|
|
defineOptions({
|
|
|
name: 'DataStat',
|
|
|
})
|
|
|
onMounted(() => {
|
|
|
getProjectMonthFee()
|
|
|
getMonthExpenses()
|
|
|
+ queryAllProject()
|
|
|
+ getExpensesGenre()
|
|
|
})
|
|
|
const active = ref(0);
|
|
|
const activeType = ref(['1'])
|
|
|
const activeNames = ref(['1']);
|
|
|
-const monthFee = reactive({
|
|
|
- monthTime: '',
|
|
|
- yearTime: '',
|
|
|
- code: ''
|
|
|
-})
|
|
|
-const monthExpenses = reactive({
|
|
|
+const condition = reactive({
|
|
|
monthTime: '',
|
|
|
yearTime: '',
|
|
|
+ code: '',
|
|
|
genre: 0
|
|
|
})
|
|
|
+// 获取所有项目
|
|
|
+const projectData = reactive([])
|
|
|
+const queryAllProject = () => {
|
|
|
+ getAllProject().then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ projectData.length = 0
|
|
|
+ projectData.push(...res.data)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+// 查询公司费用类型
|
|
|
+const firmCostTypeList = reactive([])
|
|
|
+const queryDataInfo = () => {
|
|
|
+ getProjectMonthFee()
|
|
|
+ getMonthExpenses()
|
|
|
+}
|
|
|
+const getExpensesGenre = () => {
|
|
|
+ queryExpensesGenre().then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ firmCostTypeList.length = 0
|
|
|
+ firmCostTypeList.push(...res.data)
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
// 费用类型搜索、重置
|
|
|
const feeScreenShow = ref(false)
|
|
|
const resetFeeDetail = () => {
|
|
|
- console.log('重置')
|
|
|
+ const initial = {
|
|
|
+ monthTime: '',
|
|
|
+ yearTime: '',
|
|
|
+ code: '',
|
|
|
+ genre: 0
|
|
|
+ }
|
|
|
+ Object.assign(condition, initial)
|
|
|
+ getProjectMonthFee()
|
|
|
+ getMonthExpenses()
|
|
|
}
|
|
|
const feeList = reactive([])
|
|
|
const getProjectMonthFee = () => {
|
|
|
+ const monthFee = {
|
|
|
+ monthTime: condition.monthTime,
|
|
|
+ yearTime: condition.yearTime,
|
|
|
+ code: condition.code
|
|
|
+ }
|
|
|
queryProjectMonthFee(monthFee).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
- console.log('费用类型', res.data)
|
|
|
feeList.length = 0
|
|
|
feeList.push(...res.data)
|
|
|
+ feeScreenShow.value = false
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
const expensesList = reactive([])
|
|
|
const getMonthExpenses = () => {
|
|
|
+ const monthExpenses = {
|
|
|
+ monthTime: condition.monthTime,
|
|
|
+ yearTime: condition.yearTime,
|
|
|
+ genre: condition.genre
|
|
|
+ }
|
|
|
queryMonthExpenses(monthExpenses).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
- console.log('部门', res.data)
|
|
|
expensesList.length = 0
|
|
|
expensesList.push(...res.data)
|
|
|
}
|
|
@@ -162,6 +237,6 @@ const expenditures = computed(() => {
|
|
|
}
|
|
|
|
|
|
.feeScreenBox{
|
|
|
- height: 300px;
|
|
|
+ height: 350px;
|
|
|
}
|
|
|
</style>
|