[update] 修改bug78192
This commit is contained in:
@@ -28,7 +28,8 @@ module.exports = {
|
|||||||
auditContent: '稽查内容',
|
auditContent: '稽查内容',
|
||||||
disabledBatchDel: '选中数据中存在没有操作权限的数据,请重新选择',
|
disabledBatchDel: '选中数据中存在没有操作权限的数据,请重新选择',
|
||||||
pleaseSelectUserOrDepart: '授权部门和授权人员至少需要选择一个',
|
pleaseSelectUserOrDepart: '授权部门和授权人员至少需要选择一个',
|
||||||
noDataPermiss: '无数据权限,重新选择'
|
youNot: '您没有',
|
||||||
|
dataPremissReCheck: '数据权限,请重新选择'
|
||||||
},
|
},
|
||||||
// 评审会记录
|
// 评审会记录
|
||||||
reviewMeeting: {
|
reviewMeeting: {
|
||||||
|
|||||||
@@ -28,7 +28,8 @@ module.exports = {
|
|||||||
auditContent: '稽查内容',
|
auditContent: '稽查内容',
|
||||||
disabledBatchDel: '选中数据中存在没有操作权限的数据,请重新选择',
|
disabledBatchDel: '选中数据中存在没有操作权限的数据,请重新选择',
|
||||||
pleaseSelectUserOrDepart: '授权部门和授权人员至少需要选择一个',
|
pleaseSelectUserOrDepart: '授权部门和授权人员至少需要选择一个',
|
||||||
noDataPermiss: '无数据权限,重新选择'
|
youNot: '您没有',
|
||||||
|
dataPremissReCheck: '数据权限,请重新选择'
|
||||||
},
|
},
|
||||||
// 评审会记录
|
// 评审会记录
|
||||||
reviewMeeting: {
|
reviewMeeting: {
|
||||||
|
|||||||
@@ -572,9 +572,11 @@ export default {
|
|||||||
this.$message.warning(this.$t('selectLeastOne'))
|
this.$message.warning(this.$t('selectLeastOne'))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
if (this.selectionRows.find(item => !item.detailFlag)) {
|
const notPremissData = this.selectionRows.filter(item => !item.detailFlag).map(item => item.standard_number)
|
||||||
|
if (notPremissData && notPremissData.length > 0) {
|
||||||
// 选中数据存在没有查看权限的数据
|
// 选中数据存在没有查看权限的数据
|
||||||
this.$message.warning(this.$t('enterpriseStandardLibrary.standard.noDataPermiss'))
|
this.$message.warning(this.$t('enterpriseStandardLibrary.standard.youNot') +
|
||||||
|
notPremissData.join(',') + this.$t('enterpriseStandardLibrary.standard.dataPremissReCheck'))
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.$refs.temporaryPermissionSet.open(this.selectedRowKeys.join(','))
|
this.$refs.temporaryPermissionSet.open(this.selectedRowKeys.join(','))
|
||||||
|
|||||||
Reference in New Issue
Block a user