|
@@ -2,21 +2,23 @@
|
|
|
<van-row style="margin-top: 20px" @click="dateScreenShow = true">
|
|
|
<van-col :span="24">
|
|
|
<van-cell-group>
|
|
|
- <van-cell title="筛选条件" is-link size="large" class="checkCell">
|
|
|
- <template #value>
|
|
|
- <van-text-ellipsis content="内容" class="cellContent"/>
|
|
|
+ <van-cell size="large" class="checkCell" title-class="projectTitle">
|
|
|
+ <template #title>
|
|
|
+ <van-text-ellipsis :content="projectName"/>
|
|
|
</template>
|
|
|
- <template #right-icon>
|
|
|
- <van-icon
|
|
|
- class="closeIcon"
|
|
|
- name="close"
|
|
|
- />
|
|
|
+ <template #value>
|
|
|
+ <van-row justify="end">
|
|
|
+ <van-col class="resetCostCell" @click.stop="resetCost">
|
|
|
+ <van-icon name="replay" />
|
|
|
+ <van-text-ellipsis content="重置" />
|
|
|
+ </van-col>
|
|
|
+ </van-row>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
|
</van-col>
|
|
|
</van-row>
|
|
|
- <van-cell-group>
|
|
|
+ <van-cell-group class="costCellGroup">
|
|
|
<van-cell
|
|
|
v-for="item in projectCostList"
|
|
|
:key="item.ID"
|
|
@@ -31,6 +33,14 @@
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
|
+ <van-pagination
|
|
|
+ v-model="currentPage"
|
|
|
+ :total-items="pageTotal"
|
|
|
+ :items-per-page="8"
|
|
|
+ force-ellipses
|
|
|
+ @change="changePage"
|
|
|
+ class="pagination"
|
|
|
+ />
|
|
|
<van-popup
|
|
|
v-model:show="dateScreenShow"
|
|
|
position="bottom"
|
|
@@ -49,7 +59,7 @@
|
|
|
@clear="projectCostBody.projectCode = ''"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in projectList"
|
|
|
+ v-for="item in useFinance.allProject"
|
|
|
:key="item.ID"
|
|
|
:label="item.name"
|
|
|
:value="item.code"
|
|
@@ -131,7 +141,7 @@
|
|
|
@clear="projectCostBody.reimburser = 0"
|
|
|
>
|
|
|
<el-option
|
|
|
- v-for="item in userList"
|
|
|
+ v-for="item in useFinance.allUser"
|
|
|
:key="item.ID"
|
|
|
:label="item.nickName"
|
|
|
:value="item.ID"
|
|
@@ -165,22 +175,22 @@
|
|
|
<van-cell-group style="font-size: 16px">
|
|
|
<van-cell size="large" title="部门:">
|
|
|
<template #value>
|
|
|
- <van-text-ellipsis :content="detailInfo.department.name"/>
|
|
|
+ <van-text-ellipsis :content="detailInfo.department.name" class="costCellValue"/>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell size="large" title="支入金额:">
|
|
|
<template #value>
|
|
|
- <van-text-ellipsis :content="detailInfo.depositAmount"/>
|
|
|
+ <van-text-ellipsis :content="detailInfo.depositAmount" class="costCellValue"/>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell size="large" title="支出金额:">
|
|
|
<template #value>
|
|
|
- <van-text-ellipsis :content="detailInfo.expenditureAmount"/>
|
|
|
+ <van-text-ellipsis :content="detailInfo.expenditureAmount" class="costCellValue"/>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
<van-cell size="large" title="余额:">
|
|
|
<template #value>
|
|
|
- <van-text-ellipsis :content="detailInfo.thenBalance"/>
|
|
|
+ <van-text-ellipsis :content="detailInfo.thenBalance" class="costCellValue"/>
|
|
|
</template>
|
|
|
</van-cell>
|
|
|
</van-cell-group>
|
|
@@ -188,15 +198,22 @@
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
-import { getProjectCostType, getAllProject, getProjectCost } from '@/api/project.js'
|
|
|
-import { getAllUsers } from "@/api/user.js"
|
|
|
+import { getProjectCostType, getProjectCost } from '@/api/project.js'
|
|
|
+import { useFinanceStore } from '@/pinia/finance/finance'
|
|
|
defineOptions({
|
|
|
name: 'projectCost',
|
|
|
})
|
|
|
+// 分页
|
|
|
+const currentPage = ref(1)
|
|
|
+const pageTotal = ref(0)
|
|
|
+const changePage = (val) => {
|
|
|
+ projectCostBody.pageInfo.page = val
|
|
|
+ queryProjectCost()
|
|
|
+}
|
|
|
+const useFinance = useFinanceStore()
|
|
|
+// 当前项目名称
|
|
|
onMounted(() => {
|
|
|
queryProjectCostType()
|
|
|
- queryAllUsers()
|
|
|
- queryAllProject()
|
|
|
queryProjectCost()
|
|
|
})
|
|
|
// 条件显示
|
|
@@ -206,7 +223,7 @@ const projectCostBody = reactive({
|
|
|
pageSize: 8
|
|
|
},
|
|
|
reimburser: 0,
|
|
|
- projectCode: "",
|
|
|
+ projectCode: useFinance.currentCode,
|
|
|
genre: 0,
|
|
|
dayTime: "",
|
|
|
monthTime: "",
|
|
@@ -223,30 +240,8 @@ const queryProjectCostType = () => {
|
|
|
}
|
|
|
// 项目
|
|
|
const projectList = reactive([])
|
|
|
-const queryAllProject = () => {
|
|
|
- getAllProject().then(res => {
|
|
|
- if (res.code === 0) {
|
|
|
- const list = res.data
|
|
|
- projectList.push(...list)
|
|
|
- }
|
|
|
- })
|
|
|
-}
|
|
|
-// 人员
|
|
|
-const userList = reactive([])
|
|
|
-const queryAllUsers = () => {
|
|
|
- getAllUsers().then(res => {
|
|
|
- if (res.code === 0) {
|
|
|
- userList.push(...res.data)
|
|
|
- }
|
|
|
- })
|
|
|
-}
|
|
|
|
|
|
const dateScreenShow = ref(false)
|
|
|
-const openScreen = () => {}
|
|
|
-
|
|
|
-const dateType = ref([])
|
|
|
-
|
|
|
-const currentDate = ref([])
|
|
|
|
|
|
const dateTypeColumns = [
|
|
|
{ id:0, text: '按日期选择', value: "day" },
|
|
@@ -254,17 +249,6 @@ const dateTypeColumns = [
|
|
|
{ id:2, text: '按年份选择', value: "year" }
|
|
|
]
|
|
|
|
|
|
-const changeDateType = (val) => {
|
|
|
- const index = val.selectedIndexes[0]
|
|
|
- const obj = {
|
|
|
- 0: [],
|
|
|
- 1: ['year'],
|
|
|
- 2: ['year','month'],
|
|
|
- 3: ['year','month','day'],
|
|
|
- }
|
|
|
- dateType.value = obj[index]
|
|
|
-}
|
|
|
-
|
|
|
// 查询项目费用
|
|
|
const timeTypeValue = ref('day')
|
|
|
|
|
@@ -274,8 +258,10 @@ const queryProjectCost = () => {
|
|
|
getProjectCost(projectCostBody).then(res => {
|
|
|
if (res.code === 0) {
|
|
|
dateScreenShow.value = false
|
|
|
+ projectCostList.length = 0
|
|
|
projectCostList.push(...res.data.list)
|
|
|
- console.log(projectCostList)
|
|
|
+ pageTotal.value = res.data.total
|
|
|
+ console.log(res.data)
|
|
|
}
|
|
|
})
|
|
|
}
|
|
@@ -290,14 +276,52 @@ const openCostDetail = (item) => {
|
|
|
detailShow.value = true
|
|
|
Object.assign(detailInfo,item)
|
|
|
}
|
|
|
+
|
|
|
+const resetCost = () => {
|
|
|
+ const initial = {
|
|
|
+ pageInfo: {
|
|
|
+ page: 1,
|
|
|
+ pageSize: 8
|
|
|
+ },
|
|
|
+ reimburser: 0,
|
|
|
+ projectCode: useFinance.currentCode,
|
|
|
+ genre: 0,
|
|
|
+ dayTime: "",
|
|
|
+ monthTime: "",
|
|
|
+ yearTime: ""
|
|
|
+ }
|
|
|
+ Object.assign(projectCostBody,initial)
|
|
|
+ queryProjectCost()
|
|
|
+ currentPage.value = 1
|
|
|
+}
|
|
|
+
|
|
|
+// 计算属性
|
|
|
+const projectName = computed(() => {
|
|
|
+ return "项目:" + useFinance.currentName
|
|
|
+})
|
|
|
</script>
|
|
|
|
|
|
<style scoped lang="less">
|
|
|
-.costCell{
|
|
|
- height: 64px;
|
|
|
+.costCellGroup{
|
|
|
+ height: 512px;
|
|
|
+ .costCell{
|
|
|
+ height: 64px;
|
|
|
+ }
|
|
|
+}
|
|
|
+.costCellValue{
|
|
|
+ font-size: 16px;
|
|
|
}
|
|
|
+
|
|
|
.checkCell{
|
|
|
height: 45px;
|
|
|
+ font-size: 16px;
|
|
|
+ .projectTitle{
|
|
|
+ width: 200px;
|
|
|
+ }
|
|
|
+ .resetCostCell {
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ }
|
|
|
}
|
|
|
.closeIcon{
|
|
|
font-size: 24px;
|
|
@@ -307,4 +331,9 @@ const openCostDetail = (item) => {
|
|
|
margin-right: 10px;
|
|
|
line-height: inherit;
|
|
|
}
|
|
|
+
|
|
|
+.pagination{
|
|
|
+ margin-top: 25px;
|
|
|
+ margin-bottom: 25px;
|
|
|
+}
|
|
|
</style>
|