|
@@ -962,6 +962,10 @@ export default {
|
|
|
}
|
|
|
},
|
|
|
|
|
|
+ roleId() {
|
|
|
+ return parseInt(localStorage.getItem('AdminId'));
|
|
|
+ },
|
|
|
+
|
|
|
//指标详情,也就是tableData[0]
|
|
|
EdbData(){
|
|
|
return this.tableData[0]?this.tableData[0]:{Button:{},DataInsertConfig:{},DataList:[]}
|
|
@@ -1998,7 +2002,7 @@ export default {
|
|
|
end_date: item.EndDate
|
|
|
}
|
|
|
})
|
|
|
- const { EdbInfoId,CalculateFormula,EdbName,EdbNameEn,Unit,UnitEn,Frequency,EmptyType,MaxEmptyType,Extra } = res.EdbInfoDetail;
|
|
|
+ const { EdbInfoId,CalculateFormula,EdbName,EdbNameEn,Unit,UnitEn,Frequency,EmptyType,MaxEmptyType,Extra,SysUserId } = res.EdbInfoDetail;
|
|
|
/* 公式和表单 */
|
|
|
this.calulateForm = {
|
|
|
edb_id: EdbInfoId,
|
|
@@ -2010,12 +2014,13 @@ export default {
|
|
|
emptyType: EmptyType,
|
|
|
maxEmptyType: MaxEmptyType,
|
|
|
Extra,
|
|
|
- view
|
|
|
+ view,
|
|
|
+ isCreator: SysUserId===this.roleId
|
|
|
};
|
|
|
} else {
|
|
|
// 多指标求和求平均
|
|
|
if([81,82].includes(type)){
|
|
|
- this.operationForm={...res,view}
|
|
|
+ this.operationForm={...res,view,isCreator: res.EdbInfoDetail.SysUserId===this.roleId}
|
|
|
this.showBatchComputedPop=true
|
|
|
return
|
|
|
}
|
|
@@ -2031,7 +2036,8 @@ export default {
|
|
|
unit: this.currentLang==='en'?dataInfo.UnitEn:dataInfo.Unit,
|
|
|
menu: menuArrId||[],
|
|
|
Extra:dataInfo.Extra,
|
|
|
- view
|
|
|
+ view,
|
|
|
+ isCreator: dataInfo.SysUserId===this.roleId
|
|
|
}
|
|
|
|
|
|
this.operationForm = [23,24,37,53].includes(type)
|