修改总览文字

This commit is contained in:
熊丽君
2021-12-16 10:26:29 +08:00
parent 5397d68280
commit 1fa12169d2
5 changed files with 11 additions and 8 deletions

View File

@ -118,7 +118,7 @@ export default {
/** 删除按钮操作 */
handleDelete(row) {
this.$modal
.confirm('是否确认删除用户编号为"' + row.id + '"的数据项?')
.confirm('是否确认删除编号为"' + row.id + '"的数据项?')
.then(function () {
return rightTwoDel({ id: row.id })
})
@ -132,7 +132,7 @@ export default {
handleExport() {
const queryParams = this.queryParams
this.$modal
.confirm('是否确认导出所有用户数据项?')
.confirm('是否确认导出所有数据项?')
.then(() => {
this.exportLoading = true
return exportUser(queryParams)