From 8d2730f04572c2b119af320cbe9d53a2358bda11 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 05 十二月 2024 17:25:54 +0800 Subject: [PATCH] 阈值 前端名字调整 --- src/views/system/work-order/threshold/index.vue | 25 +++++++++++++------------ 1 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/views/system/work-order/threshold/index.vue b/src/views/system/work-order/threshold/index.vue index 1139da9..7064243 100644 --- a/src/views/system/work-order/threshold/index.vue +++ b/src/views/system/work-order/threshold/index.vue @@ -45,6 +45,7 @@ justify-content: space-between; " > + <div> <div style=" @@ -64,13 +65,13 @@ :key="item.id" > <el-input - v-model="videoList[index].value" + v-model="videoList[index].valueAuto" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditVideo" ></el-input> - <span v-else>{{ item.value }}</span> + <span v-else>{{ item.valueAuto }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item> @@ -87,13 +88,13 @@ :key="item.id" > <el-input - v-model="videoList[index].valueAuto" + v-model="videoList[index].value" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditVideo" ></el-input> - <span v-else>{{ item.valueAuto }}</span> + <span v-else>{{ item.value }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item> @@ -153,13 +154,13 @@ :key="item.id" > <el-input - v-model="faceList[index].value" + v-model="faceList[index].valueAuto" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditFace" ></el-input> - <span v-else>{{ item.value }}</span> + <span v-else>{{ item.valueAuto }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item> @@ -176,13 +177,13 @@ :key="item.id" > <el-input - v-model="faceList[index].valueAuto" + v-model="faceList[index].value" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditFace" ></el-input> - <span v-else>{{ item.valueAuto }}</span> + <span v-else>{{ item.value }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item @@ -243,13 +244,13 @@ :key="item.id" > <el-input - v-model="carList[index].value" + v-model="carList[index].valueAuto" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditCar" ></el-input> - <span v-else>{{ item.value }}</span> + <span v-else>{{ item.valueAuto }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item> @@ -266,13 +267,13 @@ :key="item.id" > <el-input - v-model="carList[index].valueAuto" + v-model="carList[index].value" size="mini" style="width: 100px" :type="item.countType=='int'?'number':''" v-if="ifEditCar" ></el-input> - <span v-else>{{ item.valueAuto }}</span> + <span v-else>{{ item.value }}</span> <span class="unit" v-if="item.countType=='percent'">%</span> <span class="unit" v-if="item.countType=='second'">绉�</span> </el-form-item> -- Gitblit v1.8.0