index.vue 12.8 KB
Newer Older
sunhongwei's avatar
sunhongwei committed
1 2 3 4 5
<template>
  <div class="app-container">
    <doc-alert title="SaaS 多租户" url="https://doc.iocoder.cn/saas-tenant/" />
    <!-- 搜索工作栏 -->
    <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
Marcus's avatar
Marcus committed
6 7
      <el-form-item :label="$t('租户名')" prop="name">
        <el-input v-model="queryParams.name" :placeholder="$t('请输入租户名')" clearable @keyup.enter.native="handleQuery"/>
sunhongwei's avatar
sunhongwei committed
8
      </el-form-item>
Marcus's avatar
Marcus committed
9 10
      <el-form-item :label="$t('联系人')" prop="contactName">
        <el-input v-model="queryParams.contactName" :placeholder="$t('请输入联系人')" clearable @keyup.enter.native="handleQuery"/>
sunhongwei's avatar
sunhongwei committed
11
      </el-form-item>
Marcus's avatar
Marcus committed
12 13
      <el-form-item :label="$t('联系手机')" prop="contactMobile">
        <el-input v-model="queryParams.contactMobile" :placeholder="$t('请输入联系手机')" clearable @keyup.enter.native="handleQuery"/>
sunhongwei's avatar
sunhongwei committed
14
      </el-form-item>
Marcus's avatar
Marcus committed
15 16
      <el-form-item :label="$t('租户状态')" prop="status">
        <el-select v-model="queryParams.status" :placeholder="$t('请选择租户状态')" clearable>
sunhongwei's avatar
sunhongwei committed
17 18 19 20 21
          <el-option v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)"
                       :key="dict.value" :label="dict.label" :value="dict.value"/>
        </el-select>
      </el-form-item>
      <el-form-item>
Marcus's avatar
Marcus committed
22 23
        <el-button type="primary" icon="el-icon-search" @click="handleQuery">{{ $t('搜索') }}</el-button>
        <el-button icon="el-icon-refresh" @click="resetQuery">{{ $t('重置') }}</el-button>
sunhongwei's avatar
sunhongwei committed
24 25 26 27 28 29 30
      </el-form-item>
    </el-form>

    <!-- 操作工具栏 -->
    <el-row :gutter="10" class="mb8">
      <el-col :span="1.5">
        <el-button type="primary" plain icon="el-icon-plus" size="mini" @click="handleAdd"
Marcus's avatar
Marcus committed
31
                   v-hasPermi="['system:tenant:create']">{{ $t('新增') }}</el-button>
sunhongwei's avatar
sunhongwei committed
32 33 34
      </el-col>
      <el-col :span="1.5">
        <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport" :loading="exportLoading"
Marcus's avatar
Marcus committed
35
                   v-hasPermi="['system:tenant:export']">{{ $t('导出') }}</el-button>
sunhongwei's avatar
sunhongwei committed
36 37 38 39 40 41
      </el-col>
      <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
    </el-row>

    <!-- 列表 -->
    <el-table v-loading="loading" :data="list">
Marcus's avatar
Marcus committed
42 43 44
      <el-table-column :label="$t('租户编号')" align="center" prop="id" />
      <el-table-column :label="$t('租户名')" align="center" prop="name" />
      <el-table-column :label="$t('租户套餐')" align="center" prop="packageId">
sunhongwei's avatar
sunhongwei committed
45
        <template slot-scope="scope">
Marcus's avatar
Marcus committed
46
          <el-tag v-if="scope.row.packageId === 0" type="danger">{{ $t('系统租户') }}</el-tag>
sunhongwei's avatar
sunhongwei committed
47 48 49
          <el-tag v-else> {{getPackageName(scope.row.packageId)}} </el-tag>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
50 51 52
      <el-table-column :label="$t('联系人')" align="center" prop="contactName" />
      <el-table-column :label="$t('联系手机')" align="center" prop="contactMobile" />
      <el-table-column :label="$t('账号额度')" align="center" prop="accountCount">
sunhongwei's avatar
sunhongwei committed
53 54 55 56
        <template slot-scope="scope">
          <el-tag> {{scope.row.accountCount}} </el-tag>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
57
      <el-table-column :label="$t('过期时间')" align="center" prop="expireTime" width="180">
sunhongwei's avatar
sunhongwei committed
58 59 60 61
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.expireTime) }}</span>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
62 63
      <el-table-column :label="$t('绑定域名')" align="center" prop="domain" width="180" />
      <el-table-column :label="$t('租户状态')" align="center" prop="status">
sunhongwei's avatar
sunhongwei committed
64 65 66 67
        <template slot-scope="scope">
          <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status"/>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
68
      <el-table-column :label="$t('创建时间')" align="center" prop="createTime" width="180">
sunhongwei's avatar
sunhongwei committed
69 70 71 72
        <template slot-scope="scope">
          <span>{{ parseTime(scope.row.createTime) }}</span>
        </template>
      </el-table-column>
Marcus's avatar
Marcus committed
73
      <el-table-column :label="$t('操作')" align="center" class-name="small-padding fixed-width">
sunhongwei's avatar
sunhongwei committed
74 75
        <template slot-scope="scope">
          <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
Marcus's avatar
Marcus committed
76
                     v-hasPermi="['system:tenant:update']">{{ $t('修改') }}</el-button>
sunhongwei's avatar
sunhongwei committed
77
          <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
Marcus's avatar
Marcus committed
78
                     v-hasPermi="['system:tenant:delete']">{{ $t('删除') }}</el-button>
sunhongwei's avatar
sunhongwei committed
79 80 81 82 83 84 85 86 87 88
        </template>
      </el-table-column>
    </el-table>
    <!-- 分页组件 -->
    <pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
                @pagination="getList"/>

    <!-- 对话框(添加 / 修改) -->
    <el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
      <el-form ref="form" :model="form" :rules="rules" label-width="80px">
Marcus's avatar
Marcus committed
89 90
        <el-form-item :label="$t('租户名')" prop="name">
          <el-input v-model="form.name" :placeholder="$t('请输入租户名')" />
sunhongwei's avatar
sunhongwei committed
91
        </el-form-item>
Marcus's avatar
Marcus committed
92 93
        <el-form-item :label="$t('租户套餐')" prop="packageId">
          <el-select v-model="form.packageId" :placeholder="$t('请选择租户套餐')" clearable size="small">
sunhongwei's avatar
sunhongwei committed
94 95 96
            <el-option v-for="item in packageList" :key="item.id" :label="item.name" :value="item.id"/>
          </el-select>
        </el-form-item>
Marcus's avatar
Marcus committed
97 98
        <el-form-item :label="$t('联系人')" prop="contactName">
          <el-input v-model="form.contactName" :placeholder="$t('请输入联系人')" />
sunhongwei's avatar
sunhongwei committed
99
        </el-form-item>
Marcus's avatar
Marcus committed
100 101
        <el-form-item :label="$t('联系手机')" prop="contactMobile">
          <el-input v-model="form.contactMobile" :placeholder="$t('请输入联系手机')" />
sunhongwei's avatar
sunhongwei committed
102
        </el-form-item>
Marcus's avatar
Marcus committed
103 104
        <el-form-item v-if="form.id === undefined" :label="$t('用户名称')" prop="username">
          <el-input v-model="form.username" :placeholder="$t('请输入用户名称')" />
sunhongwei's avatar
sunhongwei committed
105
        </el-form-item>
Marcus's avatar
Marcus committed
106 107
        <el-form-item v-if="form.id === undefined" :label="$t('用户密码')" prop="password">
          <el-input v-model="form.password" :placeholder="$t('请输入用户密码')" type="password" show-password />
sunhongwei's avatar
sunhongwei committed
108
        </el-form-item>
Marcus's avatar
Marcus committed
109 110
        <el-form-item :label="$t('账号额度')" prop="accountCount">
          <el-input-number v-model="form.accountCount" :placeholder="$t('请输入账号额度')" controls-position="right" :min="0" />
sunhongwei's avatar
sunhongwei committed
111
        </el-form-item>
Marcus's avatar
Marcus committed
112
        <el-form-item :label="$t('过期时间')" prop="expireTime">
sunhongwei's avatar
sunhongwei committed
113
          <el-date-picker clearable size="small" v-model="form.expireTime" type="date"
Marcus's avatar
Marcus committed
114
                          value-format="timestamp" :placeholder="$t('请选择过期时间')" />
sunhongwei's avatar
sunhongwei committed
115
        </el-form-item>
Marcus's avatar
Marcus committed
116 117
        <el-form-item :label="$t('绑定域名')" prop="domain">
          <el-input v-model="form.domain" :placeholder="$t('请输入绑定域名')" />
sunhongwei's avatar
sunhongwei committed
118
        </el-form-item>
Marcus's avatar
Marcus committed
119
        <el-form-item :label="$t('租户状态')" prop="status">
sunhongwei's avatar
sunhongwei committed
120 121 122 123 124 125 126
          <el-radio-group v-model="form.status">
            <el-radio v-for="dict in this.getDictDatas(DICT_TYPE.COMMON_STATUS)"
                      :key="dict.value" :label="parseInt(dict.value)">{{dict.label}}</el-radio>
          </el-radio-group>
        </el-form-item>
      </el-form>
      <div slot="footer" class="dialog-footer">
Marcus's avatar
Marcus committed
127 128
        <el-button type="primary" @click="submitForm">{{ $t('确 定') }}</el-button>
        <el-button @click="cancel">{{ $t('取 消') }}</el-button>
sunhongwei's avatar
sunhongwei committed
129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
      </div>
    </el-dialog>
  </div>
</template>

<script>
import { createTenant, updateTenant, deleteTenant, getTenant, getTenantPage, exportTenantExcel } from "@/api/system/tenant";
import { CommonStatusEnum } from '@/utils/constants'
import {getTenantPackageList} from "@/api/system/tenantPackage";

export default {
  name: "Tenant",
  components: {
  },
  data() {
    return {
      // 遮罩层
      loading: true,
      // 导出遮罩层
      exportLoading: false,
      // 显示搜索条件
      showSearch: true,
      // 总条数
      total: 0,
      // 租户列表
      list: [],
      // 租户套餐列表
      packageList: [],
      // 弹出层标题
      title: "",
      // 是否显示弹出层
      open: false,
      dateRangeCreateTime: [],
      // 查询参数
      queryParams: {
        pageNo: 1,
        pageSize: 10,
        name: null,
        contactName: null,
        contactMobile: null,
        status: undefined,
      },
      // 表单参数
      form: {},
      // 表单校验
      rules: {
Marcus's avatar
Marcus committed
175 176 177 178 179 180 181 182 183
        name: [{ required: true, message: this.$t("租户名不能为空"), trigger: "blur" }],
        packageId: [{ required: true, message: this.$t("租户套餐不能为空"), trigger: "blur" }],
        contactName: [{ required: true, message: this.$t("联系人不能为空"), trigger: "blur" }],
        status: [{ required: true, message: this.$t("租户状态不能为空"), trigger: "blur" }],
        accountCount: [{ required: true, message: this.$t("账号额度不能为空"), trigger: "blur" }],
        expireTime: [{ required: true, message: this.$t("过期时间不能为空"), trigger: "blur" }],
        domain: [{ required: true, message: this.$t("绑定域名不能为空"), trigger: "blur" }],
        username: [{ required: true, message: this.$t("用户名称不能为空"), trigger: "blur" }],
        password: [{ required: true, message: this.$t("用户密码不能为空"), trigger: "blur" }],
sunhongwei's avatar
sunhongwei committed
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
      }
    };
  },
  created() {
    this.getList();
    // 获得租户套餐列表
    getTenantPackageList().then(response => {
      this.packageList = response.data;
    })
  },
  methods: {
    /** 查询列表 */
    getList() {
      this.loading = true;
      // 处理查询参数
      let params = {...this.queryParams};
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行查询
      getTenantPage(params).then(response => {
        this.list = response.data.list;
        this.total = response.data.total;
        this.loading = false;
      });
    },
    /** 取消按钮 */
    cancel() {
      this.open = false;
      this.reset();
    },
    /** 表单重置 */
    reset() {
      this.form = {
        id: undefined,
        name: undefined,
        packageId: undefined,
        contactName: undefined,
        contactMobile: undefined,
        accountCount: undefined,
        expireTime: undefined,
        domain: undefined,
        status: CommonStatusEnum.ENABLE,
      };
      this.resetForm("form");
    },
    /** 搜索按钮操作 */
    handleQuery() {
      this.queryParams.pageNo = 1;
      this.getList();
    },
    /** 重置按钮操作 */
    resetQuery() {
      this.dateRangeCreateTime = [];
      this.resetForm("queryForm");
      this.handleQuery();
    },
    /** 新增按钮操作 */
    handleAdd() {
      this.reset();
      this.open = true;
Marcus's avatar
Marcus committed
243
      this.title = this.$t("添加租户");
sunhongwei's avatar
sunhongwei committed
244 245 246 247 248 249 250 251
    },
    /** 修改按钮操作 */
    handleUpdate(row) {
      this.reset();
      const id = row.id;
      getTenant(id).then(response => {
        this.form = response.data;
        this.open = true;
Marcus's avatar
Marcus committed
252
        this.title = this.$t("修改租户");
sunhongwei's avatar
sunhongwei committed
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310
      });
    },
    /** 提交按钮 */
    submitForm() {
      this.$refs["form"].validate(valid => {
        if (!valid) {
          return;
        }
        // 修改的提交
        if (this.form.id != null) {
          updateTenant(this.form).then(response => {
            this.$modal.msgSuccess("修改成功");
            this.open = false;
            this.getList();
          });
          return;
        }
        // 添加的提交
        createTenant(this.form).then(response => {
          this.$modal.msgSuccess("新增成功");
          this.open = false;
          this.getList();
        });
      });
    },
    /** 删除按钮操作 */
    handleDelete(row) {
      const id = row.id;
      this.$modal.confirm('是否确认删除租户编号为"' + id + '"的数据项?').then(function() {
          return deleteTenant(id);
        }).then(() => {
          this.getList();
          this.$modal.msgSuccess("删除成功");
      }).catch(() => {});
    },
    /** 导出按钮操作 */
    handleExport() {
      // 处理查询参数
      let params = {...this.queryParams};
      params.pageNo = undefined;
      params.pageSize = undefined;
      this.addBeginAndEndTime(params, this.dateRangeCreateTime, 'createTime');
      // 执行导出
      this.$modal.confirm('是否确认导出所有租户数据项?').then(() => {
          this.exportLoading = true;
          return exportTenantExcel(params);
        }).then(response => {
          this.$download.excel(response, '租户.xls');
          this.exportLoading = false;
      }).catch(() => {});
    },
    /** 套餐名格式化 */
    getPackageName(packageId) {
      for (const item of this.packageList) {
        if (item.id === packageId) {
          return item.name;
        }
      }
Marcus's avatar
Marcus committed
311
      return this.$t('未知套餐');
sunhongwei's avatar
sunhongwei committed
312 313 314 315
    }
  }
};
</script>