|
|
@@ -16,7 +16,8 @@
|
|
|
</el-row>
|
|
|
<el-row style="height: 40px"></el-row>
|
|
|
</el-col>
|
|
|
- <el-col :span="4"></el-col>
|
|
|
+ <el-col :span="4">
|
|
|
+ </el-col>
|
|
|
<el-col :span="4"></el-col>
|
|
|
</el-row>
|
|
|
</el-col>
|
|
|
@@ -112,10 +113,12 @@
|
|
|
import { Menu, Search } from '@element-plus/icons-vue'
|
|
|
import { ref, onMounted, reactive, computed } from 'vue'
|
|
|
import { getProjectList, getProjectMessage } from '@/api/project'
|
|
|
+import { collectionOperate } from '@/pinia/collection/Collection'
|
|
|
defineOptions({
|
|
|
name: 'FinanceAnalysis'
|
|
|
})
|
|
|
// 数据
|
|
|
+const payment = collectionOperate()
|
|
|
const listShow = ref(false)
|
|
|
const condition = reactive({
|
|
|
pageInfo: {
|
|
|
@@ -150,7 +153,9 @@ const projectList = (condition) => {
|
|
|
const list = res.data.list
|
|
|
projectTotal.value = res.data.total
|
|
|
listData.push(...list)
|
|
|
- console.log(list[0].code)
|
|
|
+ payment.getPaymentList(list[0].code)
|
|
|
+ getProjectMessage(list[0].code).then(res => {
|
|
|
+ })
|
|
|
}
|
|
|
})
|
|
|
}
|
|
|
@@ -166,8 +171,7 @@ const changePage = (page) => {
|
|
|
projectList(search)
|
|
|
}
|
|
|
|
|
|
-const incomeExpenses = (code) => {
|
|
|
-}
|
|
|
+const incomeExpenses = (code) => {}
|
|
|
</script>
|
|
|
|
|
|
<style lang="scss" scoped>
|