From 2be772da9e520390124cceaa81e1dc0c8ea8018d Mon Sep 17 00:00:00 2001
From: licp <lichunping@guanfang.com.cn>
Date: 星期五, 19 七月 2024 17:29:58 +0800
Subject: [PATCH] 对接费用统计导出
---
src/components/do/b1-ins-order/add.vue | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/src/components/do/b1-ins-order/add.vue b/src/components/do/b1-ins-order/add.vue
index 623669a..fb9622e 100644
--- a/src/components/do/b1-ins-order/add.vue
+++ b/src/components/do/b1-ins-order/add.vue
@@ -844,7 +844,8 @@
<div>
<div v-if="isShowInput" style="margin-bottom: 6px">
<span>寰幆娆℃暟:</span>
- <el-input size="small" type="number" v-model="temperatureTestNum" style="width: 120px"></el-input>
+ <!-- <el-input size="small" type="number" v-model="temperatureTestNum" style="width: 120px"></el-input> -->
+ <el-input-number v-model="temperatureTestNum" :min="2" :max="1000000" size="small" label=""></el-input-number>
</div>
<el-checkbox-group v-model="temperatureTest" @change="handleTemperatureTestChange" style="display: flex;flex-direction: column;">
<el-checkbox v-for="item in temperatureList" :label="item" :key="item" style="margin-bottom: 6px">{{item}}</el-checkbox>
@@ -2655,6 +2656,7 @@
getTotal() {
this.totalArr = []
this.total = 0;
+ console.log(this.sampleList)
this.sampleList.forEach(item => {
if (item.insProduct && item.insProduct.length > 0) {
item.insProduct.forEach(a => {
@@ -2700,6 +2702,7 @@
if (item.manHourGroup === '' || !item.manHourGroup) {
return true
} else {
+ console.log(item)
mySet.add(item.manHourGroup)
let num2 = mySet.size
if (num2 > num1) {
--
Gitblit v1.9.3