修改参数收集,认证工程师权限
This commit is contained in:
@@ -786,7 +786,7 @@ module.exports = {
|
|||||||
modifyprojectInterfacePerson: 'Modify Project Interface Person',
|
modifyprojectInterfacePerson: 'Modify Project Interface Person',
|
||||||
operatethisbutton: 'You do not have permission to operate this button',
|
operatethisbutton: 'You do not have permission to operate this button',
|
||||||
ParameterLibrary: 'Parameter Library',
|
ParameterLibrary: 'Parameter Library',
|
||||||
referenceparameter: 'Reference Parameter',
|
referenceparameter: 'Copy Parameter',
|
||||||
tempSave: 'Save',
|
tempSave: 'Save',
|
||||||
Assignedby: 'Assign',
|
Assignedby: 'Assign',
|
||||||
CompulsoryWithdrawal: 'Revoke',
|
CompulsoryWithdrawal: 'Revoke',
|
||||||
|
|||||||
@@ -804,7 +804,7 @@ module.exports = {
|
|||||||
modifyprojectInterfacePerson: '修改工程接口人',
|
modifyprojectInterfacePerson: '修改工程接口人',
|
||||||
operatethisbutton: '没有权限操作此按钮',
|
operatethisbutton: '没有权限操作此按钮',
|
||||||
ParameterLibrary: '参数库',
|
ParameterLibrary: '参数库',
|
||||||
referenceparameter: '引用参数',
|
referenceparameter: '复制参数',
|
||||||
tempSave: '暂存',
|
tempSave: '暂存',
|
||||||
Assignedby: '分配填写人',
|
Assignedby: '分配填写人',
|
||||||
CompulsoryWithdrawal: '强制撤回',
|
CompulsoryWithdrawal: '强制撤回',
|
||||||
@@ -2711,7 +2711,7 @@ module.exports = {
|
|||||||
modifyprojectInterfacePerson: '修改工程接口人',
|
modifyprojectInterfacePerson: '修改工程接口人',
|
||||||
operatethisbutton: '没有权限操作此按钮',
|
operatethisbutton: '没有权限操作此按钮',
|
||||||
ParameterLibrary: '参数库',
|
ParameterLibrary: '参数库',
|
||||||
referenceparameter: '引用参数',
|
referenceparameter: '复制参数',
|
||||||
tempSave: '暂存',
|
tempSave: '暂存',
|
||||||
Assignedby: '分配填写人',
|
Assignedby: '分配填写人',
|
||||||
CompulsoryWithdrawal: '强制撤回',
|
CompulsoryWithdrawal: '强制撤回',
|
||||||
|
|||||||
@@ -65,7 +65,9 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="content-box-type">
|
<div class="content-box-type">
|
||||||
<span class="content-box-left">{{ $t('areaOfResponsibility') }}</span>
|
<span class="content-box-left">{{ $t('areaOfResponsibility') }}</span>
|
||||||
<span class="content-box-text">{{queryForm['dutyTerritoryName'] || queryForm['dutyTerritory_dictText'] || '--'}}</span>
|
<span
|
||||||
|
class="content-box-text">{{ queryForm['dutyTerritoryName'] || queryForm['dutyTerritory_dictText'] || '--'
|
||||||
|
}}</span>
|
||||||
</div>
|
</div>
|
||||||
<div class="content-box-type">
|
<div class="content-box-type">
|
||||||
<span class="content-box-left">{{ $t('typeOfDeliverables') }}</span>
|
<span class="content-box-left">{{ $t('typeOfDeliverables') }}</span>
|
||||||
@@ -174,10 +176,10 @@
|
|||||||
{{ $t('reviewAndReturn') }}
|
{{ $t('reviewAndReturn') }}
|
||||||
</van-radio>
|
</van-radio>
|
||||||
<van-radio name="zrrjsrw" v-if="$route.query.taskDefinitionKey == 'Task responsibility confirmation'">
|
<van-radio name="zrrjsrw" v-if="$route.query.taskDefinitionKey == 'Task responsibility confirmation'">
|
||||||
{{$t('missionAccepted')}}
|
{{ $t('accept') }}
|
||||||
</van-radio>
|
</van-radio>
|
||||||
<van-radio name="zrrjjrw" v-if="$route.query.taskDefinitionKey == 'Task responsibility confirmation'">
|
<van-radio name="zrrjjrw" v-if="$route.query.taskDefinitionKey == 'Task responsibility confirmation'">
|
||||||
{{$t('missionRejection')}}
|
{{ $t('refuse') }}
|
||||||
</van-radio>
|
</van-radio>
|
||||||
</van-radio-group>
|
</van-radio-group>
|
||||||
</template>
|
</template>
|
||||||
@@ -411,6 +413,12 @@
|
|||||||
val.approvalFile = val.approvalFile.split(',')
|
val.approvalFile = val.approvalFile.split(',')
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
for (let i = 0; i < this.dataSource.length; i++) {
|
||||||
|
if (this.dataSource[i].taskDefinitionKey == 'List Release') {
|
||||||
|
this.dataSource.splice(i, 1)
|
||||||
|
i--
|
||||||
|
}
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.dataSource = []
|
this.dataSource = []
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user