|
@@ -0,0 +1,464 @@
|
|
|
+<template>
|
|
|
+ <div class="app-container">
|
|
|
+ <!-- 搜索工作栏 -->
|
|
|
+ <el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
+ <el-form-item label="机构名" prop="name">
|
|
|
+ <el-input v-model="queryParams.name" placeholder="请输入机构名" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <!-- <el-form-item label="联系人" prop="contactName">
|
|
|
+ <el-input v-model="queryParams.contactName" placeholder="请输入联系人" clearable @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="联系手机" prop="contactMobile">
|
|
|
+ <el-input v-model="queryParams.contactMobile" placeholder="请输入联系手机" clearable
|
|
|
+ @keyup.enter.native="handleQuery" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <el-form-item label="机构状态" prop="status">
|
|
|
+ <el-select v-model="queryParams.status" placeholder="请选择机构状态" clearable>
|
|
|
+ <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 label="创建时间" prop="createTime">
|
|
|
+ <el-date-picker v-model="queryParams.createTime" style="width: 240px" value-format="yyyy-MM-dd HH:mm:ss"
|
|
|
+ type="daterange" range-separator="-" start-placeholder="开始日期" end-placeholder="结束日期"
|
|
|
+ :default-time="['00:00:00', '23:59:59']" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <el-form-item>
|
|
|
+ <el-button type="primary" icon="el-icon-search" @click="handleQuery">搜索</el-button>
|
|
|
+ <el-button icon="el-icon-refresh" @click="resetQuery">重置</el-button>
|
|
|
+ </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"
|
|
|
+ v-hasPermi="['system:tenant:create']">新增</el-button>
|
|
|
+ </el-col>
|
|
|
+ <el-col :span="1.5">
|
|
|
+ <el-button type="warning" plain icon="el-icon-download" size="mini" @click="handleExport"
|
|
|
+ :loading="exportLoading" v-hasPermi="['system:tenant:export']">导出</el-button>
|
|
|
+ </el-col>
|
|
|
+ <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
+ </el-row>
|
|
|
+
|
|
|
+ <!-- 列表 -->
|
|
|
+ <el-table v-loading="loading" :data="list">
|
|
|
+ <el-table-column label="序号" align="center" prop="id" />
|
|
|
+ <el-table-column label="机构编号" align="center" prop="tenantDocCode" />
|
|
|
+ <el-table-column label="机构名" align="center" prop="name" />
|
|
|
+ <el-table-column label="机构地址" align="center" prop="location" />
|
|
|
+ <el-table-column label="机构套餐" align="center" prop="packageId">
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-tag v-if="scope.row.packageId === 0" type="danger">系统机构</el-tag>
|
|
|
+ <el-tag v-else> {{ getPackageName(scope.row.packageId) }} </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="联系人" align="center" prop="contactName" />
|
|
|
+ <el-table-column label="联系手机" align="center" prop="contactMobile" />
|
|
|
+ <el-table-column label="账号数量" align="center" prop="accountCount">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-tag> {{ scope.row.accountCount }} </el-tag>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="过期时间" align="center" prop="expireTime" width="150">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <span>{{ parseTime(scope.row.expireTime, "{y}-{m}-{d}") }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <!-- <el-table-column label="绑定域名" align="center" prop="domain" width="180" /> -->
|
|
|
+ <el-table-column label="管理手机" align="center" prop="managePhone" />
|
|
|
+ <el-table-column label="管理密码" align="center">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-button type="text" @click="showManagePwd(scope.row)" size="mini">查看密码</el-button>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="机构状态" align="center" prop="status">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <dict-tag :type="DICT_TYPE.COMMON_STATUS" :value="scope.row.status" />
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="创建时间" align="center" prop="createTime" width="180">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <span>{{ parseTime(scope.row.createTime) }}</span>
|
|
|
+ </template>
|
|
|
+ </el-table-column>
|
|
|
+ <el-table-column label="操作" align="center" class-name="small-padding fixed-width" fixed="right" width="120">
|
|
|
+
|
|
|
+ <template v-slot="scope">
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-edit" @click="handleUpdate(scope.row)"
|
|
|
+ v-hasPermi="['system:tenant:update']">修改</el-button>
|
|
|
+ <el-button size="mini" type="text" plain icon="el-icon-plus" @click="aaaaaaa(scope.row)">初始化机构</el-button>
|
|
|
+ <el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
|
|
|
+ v-hasPermi="['system:tenant:delete']">删除</el-button>
|
|
|
+ </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 v-loading="loadingCreate">
|
|
|
+ <el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
|
|
+ <!-- <el-form-item label="机构编号" prop="tenantDocCode">
|
|
|
+ <el-input v-model="form.tenantDocCode" placeholder="请输入机构编号" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <el-form-item label="机构名" prop="name">
|
|
|
+ <el-input v-model="form.name" placeholder="请输入机构名" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="机构地址" prop="location">
|
|
|
+ <el-cascader v-model="form.location" :options="locations" :show-all-levels="false" :props="{
|
|
|
+ label: 'name', value: 'id',
|
|
|
+ children: 'children'
|
|
|
+ }" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="机构套餐" prop="packageId">
|
|
|
+ <el-select v-model="form.packageId" placeholder="请选择机构套餐" clearable size="small">
|
|
|
+ <el-option v-for="item in packageList" :key="item.id" :label="item.name" :value="item.id" />
|
|
|
+ </el-select>
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="联系人" prop="contactName">
|
|
|
+ <el-input v-model="form.contactName" placeholder="请输入联系人" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="联系手机" prop="contactMobile">
|
|
|
+ <el-input v-model="form.contactMobile" placeholder="请输入联系手机" />
|
|
|
+ </el-form-item>
|
|
|
+ <!-- <el-form-item v-if="form.id === undefined" label="用户名称" prop="username">
|
|
|
+ <el-input v-model="form.username" placeholder="请输入用户名称" />
|
|
|
+ </el-form-item> -->
|
|
|
+ <el-form-item v-if="form.id === undefined" label="用户密码" prop="password">
|
|
|
+ <el-input v-model="form.password" placeholder="请输入用户密码" type="password" show-password />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="账号数量" prop="accountCount">
|
|
|
+ <el-input-number v-model="form.accountCount" placeholder="请输入账号数量" controls-position="right" :min="0" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="过期时间" prop="expireTime">
|
|
|
+ <el-date-picker clearable size="small" v-model="form.expireTime" type="date" value-format="timestamp"
|
|
|
+ placeholder="请选择过期时间" />
|
|
|
+ </el-form-item>
|
|
|
+
|
|
|
+ <el-form-item label="提醒时间" prop="reminderTime">
|
|
|
+ <el-input-number v-model="form.reminderTime" placeholder="请输入提醒时间" controls-position="right" :precision="0"
|
|
|
+ :step="1" :min="1" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="绑定域名" prop="domain">
|
|
|
+ <el-input v-model="form.domain" placeholder="请输入绑定域名" />
|
|
|
+ </el-form-item>
|
|
|
+ <el-form-item label="机构状态" prop="status">
|
|
|
+ <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">
|
|
|
+ <el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
+ <el-button @click="cancel">取 消</el-button>
|
|
|
+ </div>
|
|
|
+ </el-dialog>
|
|
|
+ </div>
|
|
|
+</template>
|
|
|
+
|
|
|
+<script>
|
|
|
+import {
|
|
|
+ createTenant,
|
|
|
+ updateTenant,
|
|
|
+ deleteTenant,
|
|
|
+ getTenant,
|
|
|
+ getTenantPage,
|
|
|
+ exportTenantExcel,
|
|
|
+ getUserManageDetail,
|
|
|
+} from "@/api/system/tenant";
|
|
|
+import { CommonStatusEnum } from "@/utils/constants";
|
|
|
+import { getTenantPackageList } from "@/api/system/tenantPackage";
|
|
|
+import { getAreaByIp, getAreaTree, getAreaTreePart } from "@/api/system/area";
|
|
|
+
|
|
|
+export default {
|
|
|
+ name: "Tenant",
|
|
|
+ components: {},
|
|
|
+ data() {
|
|
|
+ var validateMobile = (rule, value, callback) => {
|
|
|
+ var phoneReg = /(^1\d{10}$)|(^[0-9]\d{7}$)/;
|
|
|
+ // if (!phoneReg.test(value)) {
|
|
|
+ // callback(new Error("手机号码格式错误!"));
|
|
|
+ // } else {
|
|
|
+ // // else if (this.form.contactMobile == "") {
|
|
|
+ // // callback(new Error("手机号不能为空!"));
|
|
|
+ // // }
|
|
|
+ // callback();
|
|
|
+ // }
|
|
|
+ if (this.form.contactMobile == "") {
|
|
|
+ callback(new Error("手机号码不能为空!"));
|
|
|
+ } else {
|
|
|
+ if (!phoneReg.test(value)) {
|
|
|
+ callback(new Error("手机号码格式错误!"));
|
|
|
+ }
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ };
|
|
|
+
|
|
|
+ var validatePass = (rule, value, callback) => {
|
|
|
+ var passReg = /(?=.*[A-Z])(?=.*[a-z])(?=.*[0-9])(?=.*[\W_]).{8,}/;
|
|
|
+ if (this.form.password == "") {
|
|
|
+ callback(new Error("密码不能为空!"));
|
|
|
+ } else {
|
|
|
+ if (!passReg.test(value)) {
|
|
|
+ callback(
|
|
|
+ new Error("密码必须由至少8位的大小写字母数字及特殊字符组成")
|
|
|
+ );
|
|
|
+ }
|
|
|
+ callback();
|
|
|
+ }
|
|
|
+ };
|
|
|
+ return {
|
|
|
+ locations: [],
|
|
|
+ // 遮罩层
|
|
|
+ loading: true,
|
|
|
+ loadingCreate: false,
|
|
|
+ // 导出遮罩层
|
|
|
+ exportLoading: false,
|
|
|
+ // 显示搜索条件
|
|
|
+ showSearch: true,
|
|
|
+ // 总条数
|
|
|
+ total: 0,
|
|
|
+ // 机构列表
|
|
|
+ list: [],
|
|
|
+ // 机构套餐列表
|
|
|
+ packageList: [],
|
|
|
+ // 弹出层标题
|
|
|
+ title: "",
|
|
|
+ // 是否显示弹出层
|
|
|
+ open: false,
|
|
|
+ // 查询参数
|
|
|
+ queryParams: {
|
|
|
+ pageNo: 1,
|
|
|
+ pageSize: 10,
|
|
|
+ name: null,
|
|
|
+ contactName: null,
|
|
|
+ contactMobile: null,
|
|
|
+ status: undefined,
|
|
|
+ createTime: [],
|
|
|
+ },
|
|
|
+ // 表单参数
|
|
|
+ form: {},
|
|
|
+ // 表单校验
|
|
|
+ rules: {
|
|
|
+ // tenantDocCode: [
|
|
|
+ // { required: true, message: "机构编号不能为空", trigger: "blur" },
|
|
|
+ // ],
|
|
|
+ location: [
|
|
|
+ { required: true, message: "机构地址不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ password: [
|
|
|
+ {
|
|
|
+ // validator: validatePass,
|
|
|
+ required: true,
|
|
|
+ message: "用户密码不能为空",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ contactMobile: [
|
|
|
+ {
|
|
|
+ validator: validateMobile,
|
|
|
+ required: true,
|
|
|
+ // message: "联系手机格式错误",
|
|
|
+ trigger: "blur",
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ name: [{ required: true, message: "机构名不能为空", trigger: "blur" }],
|
|
|
+ packageId: [
|
|
|
+ { required: true, message: "机构套餐不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ contactName: [
|
|
|
+ { required: true, message: "联系人不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+
|
|
|
+ status: [
|
|
|
+ { required: true, message: "机构状态不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ accountCount: [
|
|
|
+ { required: true, message: "账号数量不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ expireTime: [
|
|
|
+ { required: true, message: "过期时间不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ reminderTime: [
|
|
|
+ { required: true, message: "提醒时间不能为空", trigger: "blur" },
|
|
|
+ ],
|
|
|
+ // domain: [
|
|
|
+ // { required: true, message: "绑定域名不能为空", trigger: "blur" },
|
|
|
+ // ],
|
|
|
+ },
|
|
|
+ };
|
|
|
+ },
|
|
|
+ created() {
|
|
|
+ this.getList();
|
|
|
+ // 获得机构套餐列表
|
|
|
+ getTenantPackageList().then((response) => {
|
|
|
+ this.packageList = response.data;
|
|
|
+ });
|
|
|
+ getAreaTreePart().then(response => {
|
|
|
+ this.locations = response.data;
|
|
|
+ })
|
|
|
+ },
|
|
|
+ methods: {
|
|
|
+ showManagePwd(row) {
|
|
|
+ getUserManageDetail(row.managePhone).then(res => {
|
|
|
+ this.$alert(res.data, row.managePhone + '的管理密码', {
|
|
|
+ confirmButtonText: '确定',
|
|
|
+ });
|
|
|
+ })
|
|
|
+
|
|
|
+ },
|
|
|
+ aaaaaaa(row) {
|
|
|
+ // console.log(row)
|
|
|
+ this.$router.push({
|
|
|
+ path: "/system/initialize/dataAndRule",
|
|
|
+ query: { tenantId: row.id },
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 查询列表 */
|
|
|
+ getList() {
|
|
|
+ this.loading = true;
|
|
|
+ // 执行查询
|
|
|
+ getTenantPage(this.queryParams).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,
|
|
|
+ location: undefined,
|
|
|
+ };
|
|
|
+ this.resetForm("form");
|
|
|
+ },
|
|
|
+ /** 搜索按钮操作 */
|
|
|
+ handleQuery() {
|
|
|
+ this.queryParams.pageNo = 1;
|
|
|
+ this.getList();
|
|
|
+ },
|
|
|
+ /** 重置按钮操作 */
|
|
|
+ resetQuery() {
|
|
|
+ this.resetForm("queryForm");
|
|
|
+ this.handleQuery();
|
|
|
+ },
|
|
|
+ /** 新增按钮操作 */
|
|
|
+ handleAdd() {
|
|
|
+ this.reset();
|
|
|
+ this.open = true;
|
|
|
+ this.title = "添加机构";
|
|
|
+ },
|
|
|
+ /** 修改按钮操作 */
|
|
|
+ handleUpdate(row) {
|
|
|
+ this.reset();
|
|
|
+ const id = row.id;
|
|
|
+ getTenant(id).then((response) => {
|
|
|
+ this.form = response.data;
|
|
|
+ this.form.location = parseInt(this.form.location)
|
|
|
+ this.open = true;
|
|
|
+ this.title = "修改机构";
|
|
|
+ });
|
|
|
+ },
|
|
|
+ /** 提交按钮 */
|
|
|
+ submitForm() {
|
|
|
+ this.loadingCreate = true;
|
|
|
+ if (this.form.location != null && this.form.location != "" && this.form.location instanceof Array) {
|
|
|
+ this.form.location = this.form.location[this.form.location.length - 1];
|
|
|
+ }
|
|
|
+ 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.loadingCreate = false;
|
|
|
+ this.getList();
|
|
|
+ });
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ // 添加的提交
|
|
|
+ createTenant(this.form).then((response) => {
|
|
|
+ this.$modal
|
|
|
+ .confirm(
|
|
|
+ '机构创建成功,请使用账号"' +
|
|
|
+ response.data +
|
|
|
+ '"登录新的机构管理员账号'
|
|
|
+ )
|
|
|
+ .then(() => {
|
|
|
+ this.open = false;
|
|
|
+ this.loadingCreate = 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.$modal
|
|
|
+ .confirm("是否确认导出所有机构数据项?")
|
|
|
+ .then(() => {
|
|
|
+ this.exportLoading = true;
|
|
|
+ return exportTenantExcel(params);
|
|
|
+ })
|
|
|
+ .then((response) => {
|
|
|
+ this.$download.excel(response, "机构.xlsx");
|
|
|
+ this.exportLoading = false;
|
|
|
+ })
|
|
|
+ .catch(() => { });
|
|
|
+ },
|
|
|
+ /** 套餐名格式化 */
|
|
|
+ getPackageName(packageId) {
|
|
|
+ for (const item of this.packageList) {
|
|
|
+ if (item.id === packageId) {
|
|
|
+ return item.name;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return "未知套餐";
|
|
|
+ },
|
|
|
+ },
|
|
|
+};
|
|
|
+</script>
|