This commit is contained in:
2025-08-25 09:04:49 +08:00
45 changed files with 3105 additions and 1032 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"
@ -73,6 +74,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']"