src/views/energyManagement/gasManagement/index.vue
@@ -225,12 +225,12 @@ <el-row :gutter="20"> <el-col :span="12"> <el-form-item label="设计压力(MPa)" prop="designPressure"> <el-input-number v-model="deviceForm.designPressure" :min="0" :precision="2" style="width: 100%" /> <el-input-number v-model="deviceForm.designPressure" :min="0" style="width: 100%" /> </el-form-item> </el-col> <el-col :span="12"> <el-form-item label="容积(m³)" prop="volume"> <el-input-number v-model="deviceForm.volume" :min="0" :precision="2" style="width: 100%" /> <el-input-number v-model="deviceForm.volume" :min="0" style="width: 100%" /> </el-form-item> </el-col> </el-row> src/views/equipmentManagement/gasTank/simple.vue
@@ -151,13 +151,13 @@ </el-select> </el-form-item> <el-form-item label="设计压力"> <el-input-number v-model="editBasicInfo.designPressure" :precision="2" style="width: 100%" /> <el-input-number v-model="editBasicInfo.designPressure" style="width: 100%" /> </el-form-item> <el-form-item label="工作压力"> <el-input-number v-model="editBasicInfo.workingPressure" :precision="2" style="width: 100%" /> <el-input-number v-model="editBasicInfo.workingPressure" style="width: 100%" /> </el-form-item> <el-form-item label="容积"> <el-input-number v-model="editBasicInfo.volume" :precision="2" style="width: 100%" /> <el-input-number v-model="editBasicInfo.volume" style="width: 100%" /> </el-form-item> </el-form> <template #footer> src/views/procurementManagement/invoiceEntry/components/Modal.vue
@@ -128,7 +128,6 @@ placeholder="请输入" :min="0" :step="0.1" :precision="2" clearable style="width: 100%" @change="invoiceNumBlur(row)" @@ -139,7 +138,6 @@ v-model="row.ticketsAmount" placeholder="请输入" :min="0" :precision="2" :step="0.1" clearable style="width: 100%" @@ -349,6 +347,7 @@ if (!row.ticketsNum || row.ticketsNum === "") { row.ticketsNum = 0; } row.ticketsNum = row.ticketsNum.toFixed(5); if (Number(row.ticketsNum) > Number(row.tempFutureTickets)) { proxy.$modal.msgWarning("本次开票数不得大于未开票数"); row.ticketsNum = 0; @@ -368,6 +367,7 @@ if (!row.ticketsAmount) { row.ticketsAmount = 0; } row.ticketsAmount = row.ticketsAmount.toFixed(5); // 计算是否超过来票总金额 if (row.ticketsAmount > row.tempFutureTicketsAmount) { proxy.$modal.msgWarning("本次来票金额不得大于未来票金额"); src/views/procurementManagement/invoiceEntry/indexOld.vue
@@ -318,7 +318,6 @@ v-model="scope.row.ticketsNum" placeholder="请选择" :min="0" :precision="2" :step="0.1" clearable style="width: 100%" @@ -339,7 +338,6 @@ v-model="scope.row.ticketsAmount" placeholder="请选择" :min="0" :precision="2" :step="0.1" clearable style="width: 100%" src/views/procurementManagement/paymentEntry/index.vue
@@ -75,7 +75,6 @@ <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.currentPaymentAmount" :disabled="!scope.row.editType" :precision="2" placeholder="请输入" clearable /> @@ -198,7 +197,6 @@ <el-col :span="12"> <el-form-item label="本次付款金额:" prop="currentPaymentAmount"> <el-input-number :step="0.01" :min="0" style="width: 100%" :precision="2" v-model="form.currentPaymentAmount" placeholder="请输入" clearable src/views/procurementManagement/procurementInvoiceLedger/Form/EditForm.vue
@@ -28,12 +28,12 @@ </el-col> <el-col :span="12"> <el-form-item label="来票数:"> <el-input-number :step="0.1" :min="0" style="width: 100%" v-model="form.ticketsNum" @change="inputTicketsNum" :precision="2"/> <el-input-number :step="0.1" :min="0" style="width: 100%" v-model="form.ticketsNum" @change="inputTicketsNum"/> </el-form-item> </el-col> <el-col :span="12"> <el-form-item label="本次来票金额(元):"> <el-input-number :step="0.1" :min="0" style="width: 100%" v-model="form.ticketsAmount" @change="inputTicketsAmount" :precision="2"/> <el-input-number :step="0.1" :min="0" style="width: 100%" v-model="form.ticketsAmount" @change="inputTicketsAmount"/> </el-form-item> </el-col> <el-col :span="12"> src/views/procurementManagement/procurementLedger/index.vue
@@ -492,7 +492,6 @@ <el-form-item label="含税单价(元):" prop="taxInclusiveUnitPrice"> <el-input-number v-model="productForm.taxInclusiveUnitPrice" :precision="2" :step="0.1" clearable style="width: 100%" @@ -505,7 +504,6 @@ <el-input-number :step="0.1" clearable :precision="2" style="width: 100%" v-model="productForm.quantity" placeholder="请输入" @@ -519,7 +517,6 @@ <el-form-item label="含税总价(元):" prop="taxInclusiveTotalPrice"> <el-input-number v-model="productForm.taxInclusiveTotalPrice" :precision="2" :step="0.1" clearable style="width: 100%" @@ -556,7 +553,6 @@ <el-form-item label="库存预警数量:" prop="warnNum"> <el-input-number v-model="productForm.warnNum" :precision="2" :step="0.1" clearable style="width: 100%" @@ -649,7 +645,6 @@ <el-form-item label="合同金额(元):" prop="contractAmount"> <el-input-number v-model="scanAddForm.contractAmount" :precision="2" :step="0.1" clearable style="width: 100%" src/views/qualityManagement/rawMaterialInspection/components/formDia.vue
@@ -56,7 +56,7 @@ <el-col :span="12"> <el-form-item label="数量:" prop="quantity"> <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="form.quantity" placeholder="请输入" clearable :precision="2"/> clearable/> </el-form-item> </el-col> </el-row> src/views/salesManagement/invoiceLedger/index.vue
@@ -86,7 +86,7 @@ </el-col> <el-col :span="12"> <el-form-item :label="`发票金额(元): 合同总额(${form.taxInclusiveTotalPrice}元)`" prop="invoiceTotal"> <el-input-number :step="0.01" :min="0" :max="form.taxInclusiveTotalPrice" style="width: 100%" v-model="form.invoiceTotal" placeholder="请输入" clearable :precision="2"/> <el-input-number :step="0.01" :min="0" :max="form.taxInclusiveTotalPrice" style="width: 100%" v-model="form.invoiceTotal" placeholder="请输入" clearable/> </el-form-item> </el-col> </el-row> src/views/salesManagement/invoiceRegistration/index.vue
@@ -361,7 +361,6 @@ disabled v-model="scope.row.noInvoiceAmount" :formatter="formattedInputNumber" :precision="2" :step="0.01" ></el-input> </template> src/views/salesManagement/paymentShipping/index.vue
@@ -200,7 +200,7 @@ <span>¥{{ currentRecord.orderAmount }}</span> </el-form-item> <el-form-item label="付款金额" prop="paymentAmount"> <el-input-number v-model="paymentAmount" :precision="2" :min="0" :max="currentRecord.orderAmount" style="width: 100%"></el-input-number> <el-input-number v-model="paymentAmount" :min="0" :max="currentRecord.orderAmount" style="width: 100%"></el-input-number> </el-form-item> <el-form-item label="付款方式" prop="paymentMethod"> <el-select v-model="paymentMethod" placeholder="请选择付款方式" style="width: 100%"> src/views/salesManagement/receiptPayment/index.vue
@@ -89,7 +89,6 @@ <el-input-number :step="0.01" :min="0" style="width: 100%" v-model="scope.row.receiptPaymentAmount" :disabled="!scope.row.editType" :precision="2" placeholder="请输入" clearable /> @@ -300,7 +299,6 @@ <el-col :span="12"> <el-form-item label="本次回款金额:" prop="receiptPaymentAmount"> <el-input-number :step="0.01" :min="0" style="width: 100%" :precision="2" v-model="form.receiptPaymentAmount" placeholder="请输入" clearable src/views/salesManagement/salesLedger/index.vue
@@ -248,14 +248,12 @@ <el-col :span="12"> <el-form-item label="含税单价(元):" prop="taxInclusiveUnitPrice"> <el-input-number :step="0.01" :min="0" v-model="productForm.taxInclusiveUnitPrice" style="width: 100%" :precision="2" placeholder="请输入" clearable @change="calculateFromUnitPrice" /> </el-form-item> </el-col> <el-col :span="12"> <el-form-item label="数量:" prop="quantity"> <el-input-number :step="0.1" :min="0" v-model="productForm.quantity" placeholder="请输入" clearable :precision="2" @change="calculateFromQuantity" style="width: 100%" /> </el-form-item> </el-col> src/views/salesManagement/salesQuotation/index.vue
@@ -209,7 +209,7 @@ </el-table-column> <el-table-column prop="quantity" label="数量"> <template #default="scope"> <el-input-number v-model="scope.row.quantity" :min="1" :precision="0" style="width: 100%" /> <el-input-number v-model="scope.row.quantity" :min="1" style="width: 100%" /> </template> </el-table-column> <el-table-column prop="unit" label="单位"> @@ -219,7 +219,7 @@ </el-table-column> <el-table-column prop="unitPrice" label="单价"> <template #default="scope"> <el-input-number v-model="scope.row.unitPrice" :min="0" :precision="2" style="width: 100%" @change="calculateAmount(scope.row)" /> <el-input-number v-model="scope.row.unitPrice" :min="0" style="width: 100%" @change="calculateAmount(scope.row)" /> </template> </el-table-column> <el-table-column prop="amount" label="金额" width="120">