|
@@ -253,6 +253,17 @@
|
|
|
<el-form-item :label="$t('Edb.Detail.source')" v-if="[69,70].includes(type)" style="width:50%">
|
|
|
<span>{{type===69?'标准差':'百分比'}}</span>
|
|
|
</el-form-item>
|
|
|
+
|
|
|
+ <el-form-item :label="$t('EtaBasePage.null_val_deal')" prop="emptyType" v-if="type===45">
|
|
|
+ <el-select
|
|
|
+ v-model="formData.emptyType"
|
|
|
+ :placeholder="$t('Edb.InputHolderAll.input_fre')"
|
|
|
+ style="width: 340px"
|
|
|
+ >
|
|
|
+ <el-option :label="$t('EtaBasePage.null_val_deal_2')" :value="0"></el-option>
|
|
|
+ <el-option :label="$t('EtaBasePage.null_val_deal_3')" :value="3"></el-option>
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
</el-form>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -313,6 +324,7 @@ export default {
|
|
|
moveVal:backData.moveVal,
|
|
|
calendar_type:backData.calendar_type,
|
|
|
value_type: this.type === 54 ? backData.formula : '期末值',
|
|
|
+ emptyType:backData.emptyType||0
|
|
|
}
|
|
|
this.getDataList();
|
|
|
|
|
@@ -428,7 +440,8 @@ export default {
|
|
|
moveUnit: '天',
|
|
|
moveVal: '',
|
|
|
calendar_type: '公历',
|
|
|
- value_type: '期末值'
|
|
|
+ value_type: '期末值',
|
|
|
+ emptyType:0
|
|
|
},
|
|
|
options: [],
|
|
|
//frequencyArr: ['日度', '周度','旬度', '月度', '季度', '年度'],
|
|
@@ -597,7 +610,8 @@ export default {
|
|
|
moveUnit: '天',
|
|
|
moveVal: '',
|
|
|
calendar_type: '公历',
|
|
|
- value_type: '期末值'
|
|
|
+ value_type: '期末值',
|
|
|
+ emptyType:0,
|
|
|
};
|
|
|
this.$refs.form.resetFields();
|
|
|
},
|
|
@@ -625,6 +639,7 @@ export default {
|
|
|
MoveFrequency: this.formData.moveUnit,
|
|
|
MoveType: this.formData.moveType,
|
|
|
Calendar: this.formData.calendar_type,
|
|
|
+ EmptyType:this.formData.emptyType
|
|
|
}
|
|
|
|
|
|
/* 编辑 */
|
|
@@ -696,7 +711,8 @@ export default {
|
|
|
moveUnit: '天',
|
|
|
moveVal: '',
|
|
|
calendar_type: this.formData.calendar_type,
|
|
|
- value_type: this.formData.value_type
|
|
|
+ value_type: this.formData.value_type,
|
|
|
+ emptyType:0,
|
|
|
}
|
|
|
},
|
|
|
|