新版交易所前段管理后台
1
admin
2026-02-01 d841e83acfd09a5c4f455a2cc74c615ac30c049d
src/views/modules/recharge/address.vue
@@ -103,20 +103,20 @@
      this.dataListSelections = val;
    },
    // 新增 / 修改
    addOrUpdateHandle(id) {
    addOrUpdateHandle(uuid) {
      this.addOrUpdateVisible = true;
      this.$nextTick(() => {
        this.$refs.addOrUpdate.init(id);
        this.$refs.addOrUpdate.init(uuid);
      });
    },
    // 删除
    deleteHandle(id) {
      var ids = id
        ? [id]
    deleteHandle(uuid) {
      var ids = uuid
        ? [uuid]
        : this.dataListSelections.map((item) => {
            return item.roleId;
          });
      this.$confirm(`确定进行[${id ? "删除" : "批量删除"}]操作?`, "提示", {
      this.$confirm(`确定进行[${uuid ? "删除" : "批量删除"}]操作?`, "提示", {
        confirmButtonText: "确定",
        cancelButtonText: "取消",
        type: "warning",