批量修改认证进度 当前状态角色校验对接接口

This commit is contained in:
zyx.net
2022-08-23 09:31:06 +08:00
parent e9a74c4025
commit bf5116167e
@@ -199,13 +199,13 @@
>
<a-row :gutter="24">
<a-col :span="24">
<span style='font-size: 16px;margin-bottom: 20px;' v-for='(item,key) in NotSelectedNoEngineerValue'>
<span>{{ item.nioNumber }}</span>
<span style='font-size: 16px;margin-bottom: 20px;display: flex;justify-content: center'' v-for='(item,key) in NotSelectedNoEngineerValue'>
<span v-html='item'></span>
</span>
</a-col>
</a-row>
<div class="imports-footer">
<div class="imports-footer-wrap">
<div class="imports-footer-wrap" style='text-align: center'>
<a-button class="imports-btn" type="primary" @click="cancleoperationFailed">{{$t('cancel')}}</a-button>
</div>
</div>
@@ -553,10 +553,13 @@
}
postAction('/project/projectTaskInventoryEO/verifyRoleCode', query).then((res) => {
if (res.success) {
this.$refs.batchModelRef.getData(this.selectedRowKeys)
if(res.result == []){
this.$refs.batchModelRef.getData(this.selectedRowKeys)
}else{
this.NotSelectedNoEngineerValue = res.result
this.visibleoperationFailed = true
}
} else {
this.NotSelectedNoEngineerValue = res.result
this.visibleoperationFailed = true
}
})
@@ -584,10 +587,14 @@
}
postAction('/project/projectTaskInventoryEO/verifyRoleCode', query).then((res) => {
if (res.success) {
this.$refs.batchChangeModelRef.getData(this.selectionRowsArray)
if(res.result == []){
this.$refs.batchChangeModelRef.getData(this.selectionRowsArray)
}else{
this.NotSelectedNoEngineerValue = res.result
this.visibleoperationFailed = true
}
} else {
this.NotSelectedNoEngineerValue = res.result
this.visibleoperationFailed = true
}
})