|
@@ -7,7 +7,7 @@
|
|
|
justify="space-around"
|
|
|
>
|
|
|
<el-col
|
|
|
- :span="4"
|
|
|
+ :span="3"
|
|
|
class="flex align-center justify-around"
|
|
|
>
|
|
|
<el-image
|
|
@@ -16,9 +16,9 @@
|
|
|
/>
|
|
|
<el-text style="font-size: 20px;font-weight: 550;color: #409eff">项目收支</el-text>
|
|
|
</el-col>
|
|
|
- <el-col :span="20">
|
|
|
+ <el-col :span="21">
|
|
|
<el-row align="middle">
|
|
|
- <el-col :span="6">
|
|
|
+ <el-col :span="5">
|
|
|
<el-row
|
|
|
justify="center"
|
|
|
align="middle"
|
|
@@ -81,9 +81,30 @@
|
|
|
<el-text>项目收款</el-text>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
|
+ <el-col :span="4">
|
|
|
+ <el-row
|
|
|
+ justify="center"
|
|
|
+ align="middle"
|
|
|
+ >
|
|
|
+ <el-text
|
|
|
+ style="font-size: 20px;color: #409eff;"
|
|
|
+ tag="b"
|
|
|
+ :line-clamp="1"
|
|
|
+ >
|
|
|
+ {{ projectPaySum }}
|
|
|
+ </el-text>
|
|
|
+ </el-row>
|
|
|
+ <el-row
|
|
|
+ justify="center"
|
|
|
+ align="middle"
|
|
|
+ style="margin-top: 8px"
|
|
|
+ >
|
|
|
+ <el-text>项目支出</el-text>
|
|
|
+ </el-row>
|
|
|
+ </el-col>
|
|
|
<el-col
|
|
|
- :span="4"
|
|
|
- :offset="5"
|
|
|
+ :span="3"
|
|
|
+ :offset="2"
|
|
|
>
|
|
|
<el-button
|
|
|
text
|
|
@@ -120,11 +141,20 @@
|
|
|
label="项目费用"
|
|
|
:name="2"
|
|
|
>
|
|
|
- <project-pay />
|
|
|
+ <project-cost
|
|
|
+ ref="costOut"
|
|
|
+ @refresh="refreshSummary"
|
|
|
+ />
|
|
|
</el-tab-pane>
|
|
|
<el-tab-pane
|
|
|
- label="项目收款"
|
|
|
+ label="项目费用汇总"
|
|
|
:name="3"
|
|
|
+ >
|
|
|
+ <CostSum ref="sumOut" />
|
|
|
+ </el-tab-pane>
|
|
|
+ <el-tab-pane
|
|
|
+ label="项目收款"
|
|
|
+ :name="4"
|
|
|
>
|
|
|
<payment ref="paymentOut" />
|
|
|
</el-tab-pane>
|
|
@@ -226,6 +256,7 @@ import { Search } from '@element-plus/icons-vue'
|
|
|
import { computed, onMounted, reactive, ref } from 'vue'
|
|
|
import { getProjectList, getProjectMessage, queryProjectExpense } from '@/api/project'
|
|
|
import Hour from './components/hour.vue'
|
|
|
+import CostSum from './components/costSum.vue'
|
|
|
// import Reimburse from './components/reimburse.vue'
|
|
|
// 引入pinia
|
|
|
import { collectionOperate } from '@/pinia/collection/Collection'
|
|
@@ -236,11 +267,11 @@ import { payData } from '@/pinia/cost/cost'
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
import Payment from '@/view/finance/financeAnalysis/components/payment.vue'
|
|
|
import expense from '@/assets/expenses.png'
|
|
|
-import ProjectPay from '@/view/finance/financeAnalysis/components/projectPay.vue'
|
|
|
+import { queryProjectMonthFee } from '@/api/cost'
|
|
|
+import ProjectCost from './components/projectCost.vue'
|
|
|
defineOptions({
|
|
|
name: 'FinanceAnalysis'
|
|
|
})
|
|
|
-
|
|
|
// 项目列表
|
|
|
const listDisplay = ref(false)
|
|
|
const openProjectList = () => {
|
|
@@ -266,7 +297,7 @@ const projectTotal = ref(0)
|
|
|
const projectMessage = reactive({})
|
|
|
const listSort = ref(1)
|
|
|
const projectSum = ref(0)
|
|
|
-
|
|
|
+const paySum = ref(0)
|
|
|
// 计算属性
|
|
|
const buttonType = computed(() => (state) => {
|
|
|
const obj = {
|
|
@@ -279,8 +310,16 @@ const buttonType = computed(() => (state) => {
|
|
|
return obj[state]
|
|
|
})
|
|
|
const projectAmount = computed(() => {
|
|
|
- const price = ref(parseInt(projectMessage.price))
|
|
|
- // const price = ref(4892703)
|
|
|
+ const price = ref(parseInt(projectMessage.projectPrice))
|
|
|
+ if (price.value < 10000) {
|
|
|
+ return price.value + '元'
|
|
|
+ } else {
|
|
|
+ const tenThousand = (price.value / 10000).toFixed(4)
|
|
|
+ return parseFloat(tenThousand) + '万元'
|
|
|
+ }
|
|
|
+})
|
|
|
+const projectPaySum = computed(() => {
|
|
|
+ const price = ref(parseInt(paySum.value))
|
|
|
if (price.value < 10000) {
|
|
|
return price.value + '元'
|
|
|
} else {
|
|
@@ -343,6 +382,9 @@ const paymentOut = ref()
|
|
|
// const reimburseOut = ref()
|
|
|
const hourOut = ref()
|
|
|
|
|
|
+const sumOut = ref()
|
|
|
+
|
|
|
+const costOut = ref()
|
|
|
const getMainMessage = (code) => {
|
|
|
queryProjectExpense(code).then(res => {
|
|
|
if (res.code === 0) {
|
|
@@ -372,6 +414,8 @@ const getMainMessage = (code) => {
|
|
|
hourOut.value.outsideChangePage()
|
|
|
pay.changeCostList(summaryData.projectFee)
|
|
|
pay.changeCostTotal(summaryData.projectFeeTotal)
|
|
|
+ sumOut.value.querySum()
|
|
|
+ costOut.value.outsideChangePage()
|
|
|
}
|
|
|
})
|
|
|
getProjectMessage(code).then(res => {
|
|
@@ -379,6 +423,22 @@ const getMainMessage = (code) => {
|
|
|
Object.assign(projectMessage, res.data)
|
|
|
}
|
|
|
})
|
|
|
+ queryProjectMonthFee('', '', code).then(res => {
|
|
|
+ if (res.code === 0) {
|
|
|
+ const payList = res.data
|
|
|
+ let sum = 0
|
|
|
+ payList.forEach(item => {
|
|
|
+ sum += item.totalExpenditure
|
|
|
+ })
|
|
|
+ paySum.value = sum
|
|
|
+ }
|
|
|
+ })
|
|
|
+}
|
|
|
+
|
|
|
+// 刷新项目费用汇总
|
|
|
+const refreshSummary = () => {
|
|
|
+ console.log('刷新汇总')
|
|
|
+ sumOut.value.querySum()
|
|
|
}
|
|
|
|
|
|
</script>
|