Merge branch 'ljx' of http://xny.yj-3d.com:3000/taoge/mk_system into dhr
This commit is contained in:
@ -22,7 +22,7 @@
|
||||
<div>
|
||||
<div>
|
||||
<span>租金</span>
|
||||
<span>{{ detailInfo.rentSum / 1000 }} 万元</span>
|
||||
<span>{{ proxy.formatPrice(detailInfo.rentSum) / 1000 }} 万元</span>
|
||||
</div>
|
||||
<el-icon :size="50" color="#3176ff">
|
||||
<Postcard />
|
||||
@ -83,9 +83,21 @@
|
||||
{{ scope.row.transferArea && scope.row.designArea ? ((scope.row.transferArea / scope.row.designArea) * 100).toFixed(2) : '0.00' }}
|
||||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column label="土地租金(元)" align="center" prop="landRentAll" width="180" />
|
||||
<el-table-column label="青苗赔偿(元)" align="center" prop="seedlingCompensationAll" width="180" />
|
||||
<el-table-column label="总金额(元)" align="center" prop="totalAmountAll" width="150" />
|
||||
<el-table-column label="土地租金(元)" align="center" prop="landRentAll" width="180">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.landRentAll) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="青苗赔偿(元)" align="center" prop="seedlingCompensationAll" width="180">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.seedlingCompensationAll) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="总金额(元)" align="center" prop="totalAmountAll" width="150">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalAmountAll) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
|
||||
<el-table-column label="操作" align="center" fixed="right" width="200">
|
||||
<template #default="scope">
|
||||
@ -168,9 +180,21 @@
|
||||
<el-table-column label="流转状态" align="center" prop="transferStatusName" />
|
||||
<el-table-column label="已流转面积(亩)" align="center" prop="areaValue" width="180" />
|
||||
<el-table-column label="流转比例(%)" align="center" prop="transferRatio" width="180" />
|
||||
<el-table-column label="土地租金(元)" align="center" prop="landRent" width="180" />
|
||||
<el-table-column label="青苗赔偿(元)" align="center" prop="seedlingCompensation" width="180" />
|
||||
<el-table-column label="总金额(元)" align="center" prop="totalAmount" width="150" />
|
||||
<el-table-column label="土地租金(元)" align="center" prop="landRent" width="180">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.landRent) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="青苗赔偿(元)" align="center" prop="seedlingCompensation" width="180">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.seedlingCompensation) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="总金额(元)" align="center" prop="totalAmount" width="150">
|
||||
<template #default="scope">
|
||||
{{ proxy.formatPrice(scope.row.totalAmount) }}
|
||||
</template></el-table-column
|
||||
>
|
||||
<el-table-column label="状态说明" align="center" prop="statusDescription" />
|
||||
<el-table-column label="问题总结" align="center" prop="issueSummary" />
|
||||
<el-table-column label="下一步策略" align="center" prop="nextStrategy" width="180" />
|
||||
@ -557,7 +581,7 @@ interface PageData<T, Q> {
|
||||
rules: Record<string, any[]>;
|
||||
}
|
||||
|
||||
const { proxy } = getCurrentInstance() as ComponentInternalInstance;
|
||||
const { proxy } = getCurrentInstance() as any;
|
||||
// 获取用户 store
|
||||
const userStore = useUserStoreHook();
|
||||
// 从 store 中获取项目列表和当前选中的项目
|
||||
|
Reference in New Issue
Block a user