金额格式设置
This commit is contained in:
@ -39,8 +39,16 @@
|
||||
<el-table-column label="人工填报数量" align="center" prop="artificialNum" />
|
||||
<el-table-column label="无人机识别数量" align="center" prop="uavNum" />
|
||||
<el-table-column label="确认数量" align="center" prop="confirmNum" />
|
||||
<el-table-column label="对乙产值" align="center" prop="outValue" />
|
||||
<el-table-column label="对甲产值" align="center" prop="ownerValue" />
|
||||
<el-table-column label="对乙产值" align="center" prop="outValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.outValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="对甲产值" align="center" prop="ownerValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="流程状态" align="center" prop="status">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="wf_business_status" :value="scope.row.auditStatus" />
|
||||
|
||||
@ -24,9 +24,21 @@
|
||||
<el-table v-loading="loading" :data="monthPlanList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="index" label="序号" width="60" align="center" />
|
||||
<el-table-column label="计划月份" align="center" prop="planMonth" />
|
||||
<el-table-column label="计划产值" align="center" prop="planValue" />
|
||||
<el-table-column label="完成产值" align="center" prop="completeValue" />
|
||||
<el-table-column label="差额" align="center" prop="differenceValue" />
|
||||
<el-table-column label="计划产值" align="center" prop="planValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.planValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="完成产值" align="center" prop="completeValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.completeValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="差额" align="center" prop="differenceValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.differenceValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="类型" align="center">
|
||||
<template #default="scope">
|
||||
<span v-if="scope.row.type == '1'">对甲</span>
|
||||
|
||||
@ -40,9 +40,21 @@
|
||||
<el-table v-loading="loading" :data="monthPlanList">
|
||||
<el-table-column type="index" label="序号" width="55" align="center" />
|
||||
<el-table-column label="计划月份" align="center" prop="planMonth" />
|
||||
<el-table-column label="计划产值(元)" align="center" prop="planValue" />
|
||||
<el-table-column label="完成产值(元)" align="center" prop="completeValue" />
|
||||
<el-table-column label="差额(元)" align="center" prop="differenceValue" />
|
||||
<el-table-column label="计划产值(元)" align="center" prop="planValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.planValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="完成产值(元)" align="center" prop="completeValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.completeValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="差额(元)" align="center" prop="differenceValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.differenceValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="产值类型" align="center" prop="valueType">
|
||||
<template #default="scope">
|
||||
<dict-tag :options="out_value_type" :value="scope.row.valueType" />
|
||||
@ -104,7 +116,7 @@
|
||||
<script setup name="MonthPlan" lang="ts">
|
||||
import { listMonthPlan, getMonthPlan, delMonthPlan, addMonthPlan, updateMonthPlan } from '@/api/out/monthPlan';
|
||||
import { MonthPlanVO } from '@/api/out/monthPlan/types';
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { proxy } = getCurrentInstance() as any;
|
||||
const { out_value_type } = toRefs<any>(proxy?.useDict('out_value_type'));
|
||||
const { wf_business_status } = toRefs<any>(proxy?.useDict('wf_business_status'));
|
||||
|
||||
|
||||
@ -31,11 +31,27 @@
|
||||
</template>
|
||||
|
||||
<el-table v-loading="loading" :data="monthPlanAuditList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="设计产值(元)" align="center" prop="designValue" />
|
||||
<el-table-column label="采购产值(元)" align="center" prop="purchaseValue" />
|
||||
<el-table-column label="施工产值(元)" align="center" prop="constructionValue" />
|
||||
<el-table-column label="总产值(元)" align="center" prop="totalValue" />
|
||||
<el-table-column type="index" width="55" label="序号" align="center" />
|
||||
<el-table-column label="设计产值(元)" align="center" prop="designValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.designValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="采购产值(元)" align="center" prop="purchaseValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.purchaseValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="施工产值(元)" align="center" prop="constructionValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.constructionValue) }}
|
||||
</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="planMonth" />
|
||||
</el-table>
|
||||
|
||||
|
||||
@ -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
|
||||
|
||||
@ -23,9 +23,21 @@
|
||||
<el-card shadow="never">
|
||||
<el-table v-loading="loading" :data="tableData" v-if="activeTab == '1' || activeTab == '2'">
|
||||
<el-table-column label="项目" align="center" prop="projectName" />
|
||||
<el-table-column label="累计完工产值" align="center" prop="totalCompletionOutputValue" />
|
||||
<el-table-column label="累计结算产值" align="center" prop="totalSettlementOutputValue" />
|
||||
<el-table-column label="完工未结算额" align="center" prop="completionUnsettledAmount" />
|
||||
<el-table-column label="累计完工产值" align="center" prop="totalCompletionOutputValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalCompletionOutputValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="累计结算产值" align="center" prop="totalSettlementOutputValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalSettlementOutputValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完工未结算额" align="center" prop="completionUnsettledAmount">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.completionUnsettledAmount) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完工未结算比例" align="center" prop="completionUnsettledRatio" />
|
||||
<!-- <el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
@ -36,9 +48,21 @@
|
||||
<el-table v-loading="loading" :data="tableData" v-if="activeTab == '3'">
|
||||
<el-table-column label="项目" align="center" prop="projectName" />
|
||||
<!-- <el-table-column label="累计完工产值" align="center" prop="totalCompletionOutputValue" /> -->
|
||||
<el-table-column label="分包累计结算产值" align="center" prop="subTotalSettlementOutputValue" />
|
||||
<el-table-column label="业主累计结算产值" align="center" prop="ownerTotalSettlementOutputValue" />
|
||||
<el-table-column label="差额" align="center" prop="differenceValue" />
|
||||
<el-table-column label="分包累计结算产值" align="center" prop="subTotalSettlementOutputValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subTotalSettlementOutputValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="业主累计结算产值" align="center" prop="ownerTotalSettlementOutputValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerTotalSettlementOutputValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="差额" align="center" prop="differenceValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.differenceValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<!-- <el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
<el-button type="primary" @click="handleEdit(scope.row)" link icon="Position">联查分包结算</el-button>
|
||||
@ -47,12 +71,36 @@
|
||||
</el-table>
|
||||
<el-table v-loading="loading" :data="tableData" v-if="activeTab == '4'">
|
||||
<el-table-column label="项目" align="center" prop="projectName" />
|
||||
<el-table-column label="对甲计划总产值" align="center" prop="ownerTotal" />
|
||||
<el-table-column label="对乙计划总产值" align="center" prop="subTotal" />
|
||||
<el-table-column label="对甲月计划产值" align="center" prop="ownerPlanTotal" />
|
||||
<el-table-column label="对乙月计划产值" align="center" prop="subPlanTotal" />
|
||||
<el-table-column label="对甲月实际产值" align="center" prop="ownerActualTotal" />
|
||||
<el-table-column label="对乙月实际产值" align="center" prop="subActualTotal" />
|
||||
<el-table-column label="对甲计划总产值" align="center" prop="ownerTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙计划总产值" align="center" prop="subTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对甲月计划产值" align="center" prop="ownerPlanTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerPlanTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙月计划产值" align="center" prop="subPlanTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subPlanTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对甲月实际产值" align="center" prop="ownerActualTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerActualTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙月实际产值" align="center" prop="subActualTotal">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subActualTotal) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<!-- <el-table-column label="操作" align="center">
|
||||
<template #default="scope">
|
||||
<el-button type="primary" @click="handleEdit(scope.row)" link icon="Position">联查分包结算</el-button>
|
||||
@ -75,7 +123,7 @@
|
||||
<script setup lang="ts">
|
||||
import { useUserStoreHook } from '@/store/modules/user';
|
||||
import { listOutTable, comparisonOfOutputValue, comparisonOfSettlementValue } from '@/api/out/outDesignTableVS/index';
|
||||
|
||||
const { proxy } = getCurrentInstance();
|
||||
import { dayjs } from 'element-plus';
|
||||
const userStore = useUserStoreHook();
|
||||
const currentProject = computed(() => userStore.selectedProject);
|
||||
|
||||
@ -16,18 +16,66 @@
|
||||
<el-card shadow="never">
|
||||
<el-table v-loading="loading" :data="tableData">
|
||||
<el-table-column label="项目" align="center" prop="projectName" />
|
||||
<el-table-column label="项目总产值" align="center" prop="totalValue" />
|
||||
<el-table-column label="月预计产值" align="center" prop="monthlyEstimatedValue" />
|
||||
<el-table-column label="完成产值(第一周)" align="center" prop="firstWeekCompletionValue" />
|
||||
<el-table-column label="完成产值(第二周)" align="center" prop="secondWeekCompletionValue" />
|
||||
<el-table-column label="完成产值(第三周)" align="center" prop="thirdWeekCompletionValue" />
|
||||
<el-table-column label="完成产值(第四周)" align="center" prop="fourthWeekCompletionValue" />
|
||||
<el-table-column label="完成产值(第五周)" align="center" prop="fifthWeekCompletionValue" />
|
||||
<el-table-column label="完成产值月合计" align="center" prop="totalCompletionValue" />
|
||||
<el-table-column label="产值差额" align="center" prop="valueDifference" />
|
||||
<el-table-column label="预计累计产值" align="center" prop="estimatedAccumulatedValue" />
|
||||
<el-table-column label="累计完成产值" align="center" prop="accumulatedCompletionValue" />
|
||||
<el-table-column label="产值差额" align="center" prop="valueDifferenceAccumulation" />
|
||||
<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="monthlyEstimatedValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.monthlyEstimatedValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值(第一周)" align="center" prop="firstWeekCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.firstWeekCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值(第二周)" align="center" prop="secondWeekCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.secondWeekCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值(第三周)" align="center" prop="thirdWeekCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.thirdWeekCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值(第四周)" align="center" prop="fourthWeekCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.fourthWeekCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值(第五周)" align="center" prop="fifthWeekCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.fifthWeekCompletionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="完成产值月合计" align="center" prop="totalCompletionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalCompletionValue) }}
|
||||
</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="estimatedAccumulatedValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.estimatedAccumulatedValue) }}
|
||||
</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="valueDifferenceAccumulation"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.valueDifferenceAccumulation) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="项目完成总进度" align="center" prop="totalCompletionProgress" />
|
||||
</el-table>
|
||||
<pagination
|
||||
@ -50,6 +98,7 @@ import { listOutTable } from '@/api/out/outTable';
|
||||
const userStore = useUserStoreHook();
|
||||
const currentProject = computed(() => userStore.selectedProject);
|
||||
const activeTab = ref('1');
|
||||
const { proxy } = getCurrentInstance() as any;
|
||||
const queryParams = ref({
|
||||
month: '',
|
||||
pageNum: 1,
|
||||
@ -102,15 +151,15 @@ const getList = async () => {
|
||||
total.value = res.total;
|
||||
}
|
||||
};
|
||||
const resetMonth=()=>{
|
||||
const currentDate = new Date();
|
||||
const resetMonth = () => {
|
||||
const currentDate = new Date();
|
||||
const year = currentDate.getFullYear();
|
||||
const month = currentDate.getMonth() + 1; // 月份从0开始,所以需要加1
|
||||
|
||||
// 形成"YYYY-M"格式
|
||||
const formattedDate = `${year}-${String(month).padStart(2, '0')}`;
|
||||
queryParams.value.month = formattedDate;
|
||||
}
|
||||
};
|
||||
onMounted(() => {
|
||||
resetMonth();
|
||||
|
||||
|
||||
@ -12,7 +12,11 @@
|
||||
<el-table-column label="规格" align="center" prop="specification" />
|
||||
<el-table-column label="单位" align="center" prop="unit" />
|
||||
<el-table-column label="接收数量" align="center" prop="acceptedQuantity" />
|
||||
<el-table-column label="价格" align="center" prop="unitPrice"> </el-table-column>
|
||||
<el-table-column label="价格" align="center" prop="unitPrice">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.unitPrice) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="备注" align="center" prop="remark"> </el-table-column>
|
||||
<el-table-column label="操作" align="center" prop="remark" v-if="queryParams.type == '1'">
|
||||
<template #default="scope">
|
||||
|
||||
@ -48,7 +48,11 @@
|
||||
<span>{{ parseTime(scope.row.settlementDate, '{y}-{m}-{d}') }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="结算产值" align="center" prop="settlementValue" />
|
||||
<el-table-column label="结算产值" align="center" prop="settlementValue" >
|
||||
<template #default="scope">
|
||||
<span>{{ proxy.formatPrice(scope.row.settlementValue) }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="说明" align="center" prop="remark" />
|
||||
<el-table-column label="合同编码" align="center" prop="contractCode" />
|
||||
<el-table-column label="合同名称" align="center" prop="contractName" />
|
||||
|
||||
@ -17,14 +17,46 @@
|
||||
|
||||
<el-table v-loading="loading" :data="valueAllocationList" @selection-change="handleSelectionChange">
|
||||
<el-table-column type="selection" width="55" align="center" />
|
||||
<el-table-column label="对甲总产值" align="center" prop="ownerTotalValue" />
|
||||
<el-table-column label="对甲设计产值" align="center" prop="ownerDesignValue" />
|
||||
<el-table-column label="对甲采购产值" align="center" prop="ownerPurchaseValue" />
|
||||
<el-table-column label="对甲施工产值" align="center" prop="ownerConstructionValue" />
|
||||
<el-table-column label="对乙总产值" align="center" prop="subTotalValue" />
|
||||
<el-table-column label="对乙设计产值" align="center" prop="subDesignValue" />
|
||||
<el-table-column label="对乙采购产值" align="center" prop="subPurchaseValue" />
|
||||
<el-table-column label="对乙施工产值" align="center" prop="subConstructionValue" />
|
||||
<el-table-column label="对甲总产值" align="center" prop="ownerTotalValue">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerTotalValue) }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="对甲设计产值" align="center" prop="ownerDesignValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerDesignValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对甲采购产值" align="center" prop="ownerPurchaseValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerPurchaseValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对甲施工产值" align="center" prop="ownerConstructionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.ownerConstructionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙总产值" align="center" prop="subTotalValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subTotalValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙设计产值" align="center" prop="subDesignValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subDesignValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙采购产值" align="center" prop="subPurchaseValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subPurchaseValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="对乙施工产值" align="center" prop="subConstructionValue"
|
||||
><template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.subConstructionValue) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||||
<template #default="scope">
|
||||
<el-tooltip content="修改" placement="top">
|
||||
|
||||
Reference in New Issue
Block a user