金额格式设置
This commit is contained in:
@ -26,12 +26,32 @@
|
||||
|
||||
<el-table v-loading="loading" :data="valueAllocationList">
|
||||
<el-table-column label="项目" align="center" prop="projectName" />
|
||||
<el-table-column label="月预计产值" align="center" prop="monthEstimatedValue" />
|
||||
<el-table-column label="完成产值月合计" align="center" prop="monthCompletionValue" />
|
||||
<el-table-column label="产值差额" align="center" prop="valueDifference" />
|
||||
<el-table-column label="项目总产值" align="center" prop="totalValue" />
|
||||
<el-table-column label="累计完成产值" align="center" prop="accumulatedCompletionValue" />
|
||||
<el-table-column label="项目完成率" align="center" prop="projectCompletionRate" />
|
||||
<el-table-column label="月预计产值" align="center" prop="monthEstimatedValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.monthEstimatedValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="完成产值月合计" align="center" prop="monthCompletionValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.monthCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="产值差额" align="center" prop="valueDifference">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.valueDifference) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="项目总产值" align="center" prop="totalValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="累计完成产值" align="center" prop="accumulatedCompletionValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.accumulatedCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="项目完成率" align="center" prop="projectCompletionRate"></el-table-column>
|
||||
</el-table>
|
||||
<pagination
|
||||
v-show="total > 0"
|
||||
@ -48,7 +68,7 @@
|
||||
|
||||
<script setup name="ValueAllocation" lang="ts">
|
||||
import { listOutTable } from '@/api/out/outDesignTable';
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { proxy } = getCurrentInstance() as any;
|
||||
import { useUserStoreHook } from '@/store/modules/user';
|
||||
import { dayjs } from 'element-plus';
|
||||
// 获取用户 store
|
||||
|
Reference in New Issue
Block a user