| | |
| | | <el-row> |
| | | <el-col :span="12"> |
| | | <el-form-item label="管网" prop="dmModuleItem.moduleid"> |
| | | <el-select v-model="dataForm.dmModuleItem.moduleid" placeholder="请选择"> |
| | | <el-select v-model="dataForm.dmModuleItem.moduleid" placeholder="请选择" @change="clearExpressionList"> |
| | | <el-option |
| | | v-for="item in moduleList" |
| | | :key="item.id" |
| | |
| | | <el-col :span="12"> |
| | | <el-form-item label="预测长度" prop="mmPredictItem.predictlength"> |
| | | <el-input |
| | | @change="changePredictLength" |
| | | @change="clearExpressionList" |
| | | v-model="dataForm.mmPredictItem.predictlength" placeholder="预测长度" |
| | | maxlength="5"/> |
| | | </el-form-item> |
| | |
| | | v-model="scope.row.point" |
| | | placeholder="请选择" |
| | | filterable |
| | | :no-data-text="'无数据(predictlength:' + dataForm.mmPredictItem.predictlength + ')'" |
| | | :no-data-text="'无数据(预测长度:' + dataForm.mmPredictItem.predictlength + ';管网:' + moduleList.find(e => e.id === dataForm.dmModuleItem.moduleid)?.modulename + ')'" |
| | | @change="changeNormalItemSelect" |
| | | style="width: 100%"> |
| | | <el-option-group |
| | | v-for="group in modelparamListMap['NormalItem'].filter(e => e.predictlength == dataForm.mmPredictItem.predictlength)" |
| | | v-for="group in modelparamListMap['NormalItem'].filter(e => e.predictlength == dataForm.mmPredictItem.predictlength && e.moduleid === dataForm.dmModuleItem.moduleid)" |
| | | :key="group.value" |
| | | :label="group.label" |
| | | > |
| | |
| | | fileList.value = [] |
| | | } |
| | | |
| | | const changePredictLength = (value) => { |
| | | const clearExpressionList = (value) => { |
| | | expressionList.value = [{ |
| | | point: '', |
| | | operator: '' |