|
|
@@ -707,13 +707,13 @@ export default {
|
|
|
},
|
|
|
/** 删除按钮操作 */
|
|
|
handleDelete(row) {
|
|
|
- const companyUserId = row.companyUserId;
|
|
|
- this.$confirm('是否确认删除用户编号为"' + companyUserId + '"的数据项?', "警告", {
|
|
|
+ const userCompanyUserId = row.userCompanyUserId;
|
|
|
+ this.$confirm('是否确认删除用户编号为"' + userCompanyUserId + '"的数据项?', "警告", {
|
|
|
confirmButtonText: "确定",
|
|
|
cancelButtonText: "取消",
|
|
|
type: "warning"
|
|
|
}).then(function() {
|
|
|
- return delUserCompanyUser(companyUserId);
|
|
|
+ return delUserCompanyUser(userCompanyUserId);
|
|
|
}).then(() => {
|
|
|
this.getList();
|
|
|
this.msgSuccess("删除成功");
|