[update] 修改bug87539

This commit is contained in:
lideqin
2024-07-26 17:29:56 +08:00
parent 9a22f1c764
commit 3b3fd05902
3 changed files with 33 additions and 3 deletions
@@ -35,7 +35,11 @@ module.exports = {
cancelAuthor: 'deauthorize',
authorizationDate: 'Authorization date',
authorizationStandard: 'Authorized bid',
confirmCancelAuthor: 'Confirm the deauthorization?'
confirmCancelAuthor: 'Confirm the deauthorization?',
viewAll: 'View all',
inputExample: 'Input example',
nullAutoCreate: 'Do not fill automatically generated',
cannotJumpAfterDeletion: 'After deletion, other places using the standard cannot jump, confirm deletion?'
},
// 评审会记录
reviewMeeting: {
@@ -38,7 +38,8 @@ module.exports = {
confirmCancelAuthor: '确认解除授权?',
viewAll: '查看全部',
inputExample: '输入示例:',
nullAutoCreate: '不填自动生成'
nullAutoCreate: '不填自动生成',
cannotJumpAfterDeletion: '删除后,其他使用标准的地方无法跳转,确认删除吗?'
},
// 评审会记录
reviewMeeting: {
@@ -561,7 +561,7 @@ export default {
const ids = this.selectedRowKeys.join(',')
this.$confirm({
title: this.$t('confirmBatchDeletion'),
content: this.$t('deleteAData'),
content: this.$t('enterpriseStandardLibrary.standard.cannotJumpAfterDeletion'),
onOk: () => {
this.loading = true
postAction(this.url.deleteBatch, { ids: ids }).then((res) => {
@@ -637,6 +637,31 @@ export default {
this[operation.clickEvent](record)
}
},
handleDelete (id) {
if (!this.url.delete) {
this.$message.warning('请设置url.delete属性!')
return
}
const that = this
this.$confirm({
title: this.$t('confirmDeletion'),
content: this.$t('enterpriseStandardLibrary.standard.cannotJumpAfterDeletion'),
onOk: () => {
postAction(that.url.delete, { ids: id }).then((res) => {
if (res.success) {
that.$message.success(res.message)
// 判断当前删除的数据是否是最后一页的最后一条数据,如果是的话页码减一
if (that.ipagination.current > 1 && ((that.ipagination.current - 1) * that.ipagination.pageSize) + 1 === that.ipagination.total) {
that.ipagination.current -= 1
}
that.loadData()
} else {
that.$message.warning(res.message)
}
})
}
})
},
// 收藏
handleCollection (record) {
if (this.collectionFlag || this.loading) {