|
@@ -76,9 +76,9 @@
|
|
|
v-model.number="scope.row.conditionInfo.defaultValue"
|
|
|
placeholder="距离"
|
|
|
class="input-style font-14"
|
|
|
- :disabled="scope.row.conditionInfo.hasValue"
|
|
|
+ :disabled="!scope.row.conditionInfo.hasValue"
|
|
|
type="number"
|
|
|
- @input="testInput(scope.row.conditionInfo.hasValue)"
|
|
|
+ @input="testInput(scope.row.conditionInfo.defaultValue)"
|
|
|
></el-input>
|
|
|
<!-- :disabled="scope.row.condition == 'F'" -->
|
|
|
</template>
|
|
@@ -265,7 +265,6 @@ export default {
|
|
|
});
|
|
|
if (sign) {
|
|
|
this.$parent.tableData = this.dialogData;
|
|
|
- console.log(this.dialogData);
|
|
|
this.dialogVisible = false;
|
|
|
} else {
|
|
|
this.$message.warning("请将信息补充完整!");
|