|
@@ -11,11 +11,11 @@
|
|
|
:title="showSave?'批量计算-结果保存':'批量计算-选择指标和计算公式'"
|
|
|
>
|
|
|
<div class="batch-computed-wrap" v-if="!showSave">
|
|
|
- <el-form inline>
|
|
|
+ <el-form inline :disabled="operationForm.view">
|
|
|
<div class="type-wrap">
|
|
|
<div style="margin-right:50px">
|
|
|
<span>计算公式</span>
|
|
|
- <el-select v-model="computedType" @change="handleComputedTypeChange" placeholder="请选择">
|
|
|
+ <el-select :disabled="isEdit" v-model="computedType" @change="handleComputedTypeChange" placeholder="请选择">
|
|
|
<el-option
|
|
|
v-for="opt in computedBatchTypes"
|
|
|
:key="opt.type"
|
|
@@ -170,7 +170,7 @@
|
|
|
<!-- 多指标求和/平均 -->
|
|
|
<template v-if="computedType=='multipleEDB'">
|
|
|
<el-form-item style="margin-right:30px">
|
|
|
- <el-radio-group v-model="subComputedType">
|
|
|
+ <el-radio-group :disabled="isEdit" v-model="subComputedType">
|
|
|
<el-radio :label="81">求和</el-radio>
|
|
|
<el-radio :label="82">求平均</el-radio>
|
|
|
</el-radio-group>
|
|
@@ -262,6 +262,7 @@
|
|
|
:indeterminate="isCheckIndeterminate"
|
|
|
style="margin-left:10px"
|
|
|
@change="listCheckAllChange"
|
|
|
+ :disabled="operationForm.view"
|
|
|
/>
|
|
|
</div>
|
|
|
</div>
|
|
@@ -278,10 +279,10 @@
|
|
|
height="500px"
|
|
|
v-loading="listLoading"
|
|
|
>
|
|
|
- <el-table-column type="selection" min-width="50" align="center" />
|
|
|
+ <el-table-column type="selection" min-width="50" align="center" v-if="!operationForm.view"/>
|
|
|
<el-table-column label="指标全称" show-overflow-tooltip align="center" prop="EdbName"/>
|
|
|
- <el-table-column label="最新日期" align="center" prop="LatestDate" width="120px" />
|
|
|
- <el-table-column label="最新值" align="center" show-overflow-tooltip prop="LatestValue" width="80px"/>
|
|
|
+ <el-table-column label="最新日期" align="center" prop="EndDate" width="120px" />
|
|
|
+ <el-table-column label="最新值" align="center" show-overflow-tooltip prop="EndValue" width="80px"/>
|
|
|
<el-table-column label="创建人" align="center" show-overflow-tooltip prop="SysUserRealName" width="80px"/>
|
|
|
<el-table-column label="频度" align="center" prop="Frequency" width="50px"/>
|
|
|
<el-table-column label="单位" show-overflow-tooltip align="center" prop="Unit" width="50px"/>
|
|
@@ -298,7 +299,7 @@
|
|
|
/>
|
|
|
</div>
|
|
|
<div style="padding-top:200px;margin:0 30px">
|
|
|
- <el-button type="primary" :loading="addLoading" @click="getAddEdbListData">加入已选指标</el-button>
|
|
|
+ <el-button type="primary" :disabled="operationForm.view" :loading="addLoading" @click="getAddEdbListData">加入已选指标</el-button>
|
|
|
</div>
|
|
|
<div class="right-box">
|
|
|
<el-table
|
|
@@ -312,7 +313,7 @@
|
|
|
</template>
|
|
|
</el-table-column>
|
|
|
<el-table-column label="指标全称" show-overflow-tooltip align="center" prop="EdbName"/>
|
|
|
- <el-table-column width="50px" align="center">
|
|
|
+ <el-table-column width="50px" align="center" v-if="!operationForm.view">
|
|
|
<template slot="header" slot-scope="scope">
|
|
|
<img @click="handleDelSelect('all')" style="width:15px;height:15px;cursor: pointer;" src="~@/assets/img/ai_m/delete.png" alt="">
|
|
|
</template>
|
|
@@ -335,6 +336,8 @@
|
|
|
:subComputedType="subComputedType"
|
|
|
:selectList="selectList"
|
|
|
:formData="formData"
|
|
|
+ :isEdit="isEdit"
|
|
|
+ :operationForm="operationForm"
|
|
|
@close="showSave=false"
|
|
|
@addCallBack="handleAddSuccess"
|
|
|
v-else
|
|
@@ -355,6 +358,12 @@ export default {
|
|
|
isShow:{
|
|
|
type: Boolean
|
|
|
},
|
|
|
+ operationForm: {
|
|
|
+ type: Object,
|
|
|
+ },
|
|
|
+ type: {
|
|
|
+ type: Number
|
|
|
+ },
|
|
|
},
|
|
|
filters:{
|
|
|
getNoText(e){
|
|
@@ -420,6 +429,7 @@ export default {
|
|
|
this.isCheckIndeterminate=false
|
|
|
this.checkAllStatus=false
|
|
|
this.selectionReactCancel=false
|
|
|
+ this.isEdit=false
|
|
|
this.filter={
|
|
|
classify:'',
|
|
|
frequency:'',
|
|
@@ -438,6 +448,11 @@ export default {
|
|
|
nullValueWay:0,
|
|
|
maxNullWay:1,
|
|
|
}
|
|
|
+ }else{
|
|
|
+ // 编辑多指标求和\平均
|
|
|
+ if([81,82].includes(this.type)){
|
|
|
+ this.initData()
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
},
|
|
@@ -516,6 +531,8 @@ export default {
|
|
|
selectList:[],//添加到右侧的数据
|
|
|
addLoading:false,
|
|
|
|
|
|
+ isEdit:false,//是否为多指标求和等编辑
|
|
|
+
|
|
|
}
|
|
|
},
|
|
|
mounted() {
|
|
@@ -525,6 +542,25 @@ export default {
|
|
|
},
|
|
|
|
|
|
methods: {
|
|
|
+ // 编辑时初始化数据
|
|
|
+ initData(){
|
|
|
+ this.isEdit=true
|
|
|
+ const arr=this.operationForm.CalculateList||[]
|
|
|
+ this.selectList=arr.map(item=>{
|
|
|
+ return {
|
|
|
+ ClassifyId:item.ClassifyId,
|
|
|
+ EdbInfoId:item.FromEdbInfoId,
|
|
|
+ EdbName:item.FromEdbName,
|
|
|
+ Frequency:item.Frequency,
|
|
|
+ Unit:item.Unit
|
|
|
+ }
|
|
|
+ })
|
|
|
+ this.computedType='multipleEDB'
|
|
|
+ this.subComputedType=this.type
|
|
|
+ this.formData.timeSeriesVal=this.operationForm.EdbInfoDetail.Extra?JSON.parse(this.operationForm.EdbInfoDetail.Extra).DateTag:'A'
|
|
|
+ this.formData.nullValueWay=this.operationForm.EdbInfoDetail.EmptyType||0
|
|
|
+
|
|
|
+ },
|
|
|
//批量计算成功回调
|
|
|
handleAddSuccess(type,params){
|
|
|
this.$emit('addCallBack',type,params)
|
|
@@ -609,6 +645,7 @@ export default {
|
|
|
|
|
|
// 删除已选指标库指标
|
|
|
handleDelSelect(e){
|
|
|
+ if(this.operationForm.view) return
|
|
|
if(e==='all'){
|
|
|
this.selectList=[]
|
|
|
return
|