投标成本核算

This commit is contained in:
ljx
2025-08-23 06:28:18 +08:00
parent f3f8ab0b87
commit 73772f036f
8 changed files with 773 additions and 32 deletions

View File

@ -53,6 +53,7 @@
<el-table-column prop="unitPrice" label="单价" align="center">
<template #default="scope">
<el-input-number
:disabled="reviewStatus != 'draft'"
:model-value="scope.row.unitPrice"
@change="(val) => (scope.row.unitPrice = val)"
:precision="2"
@ -72,6 +73,7 @@
<el-button
type="primary"
size="small"
:disabled="reviewStatus != 'draft'"
@click="handleSave(scope.row)"
v-if="scope.row.quantity && scope.row.quantity != 0"
v-hasPermi="['tender:billofquantitiesLimitList:edit']"