| | |
| | | vm.$modal.msgSuccess(text + '成功'); |
| | | vm.search(); |
| | | } |
| | | }).catch((err) => { |
| | | vm.$message.warning(err.msg); |
| | | }); |
| | | }); |
| | | }, |
| | | del(row) { |
| | | this.$modal |
| | | .confirm('是否确认删除名称为"' + row.categoryName + '"的机构吗?') |
| | | var that = this |
| | | this.$modal.confirm('是否确认删除名称为"' + row.categoryName + '"的机构吗?') |
| | | .then(function () { |
| | | finsystenant.del({ id: row.id }).then((res) => {}); |
| | | }) |
| | | .then((res) => { |
| | | this.$message.success('删除成功!'); |
| | | this.refreshData(); |
| | | }) |
| | | .catch(() => {}); |
| | | finsystenant.del({ id: row.id }).then((res) => { |
| | | that.$message.success('删除成功!'); |
| | | that.refreshData(); |
| | | }) |
| | | .catch((err) => { |
| | | that.$message.warning(err.msg); |
| | | }); |
| | | }); |
| | | }, |
| | | showAdd() { |
| | | if (this.p && this.p) { |