482 lines
16 KiB
Vue
482 lines
16 KiB
Vue
<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="appId">
|
||
<el-input
|
||
v-model="queryParams.appId"
|
||
placeholder="appid"
|
||
clearable
|
||
@keyup.enter.native="handleQuery"
|
||
/>
|
||
</el-form-item>
|
||
<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="appType">
|
||
<el-select v-model="queryParams.appType" placeholder="应用类型" clearable>
|
||
<el-option
|
||
v-for="dict in dict.type.sys_biz_app_type"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
/>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item>
|
||
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
||
<el-button icon="el-icon-refresh" size="mini" @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:sysBizApp:add']"
|
||
>新增</el-button>
|
||
</el-col>
|
||
<!--
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="success"
|
||
plain
|
||
icon="el-icon-edit"
|
||
size="mini"
|
||
:disabled="single"
|
||
@click="handleUpdate"
|
||
v-hasPermi="['system:sysBizApp:edit']"
|
||
>修改</el-button>
|
||
</el-col> -->
|
||
<el-col :span="1.5">
|
||
<el-button
|
||
type="danger"
|
||
plain
|
||
icon="el-icon-delete"
|
||
size="mini"
|
||
:disabled="multiple"
|
||
@click="handleDelete"
|
||
v-hasPermi="['system:sysBizApp:remove']"
|
||
>删除</el-button>
|
||
</el-col>
|
||
<!-- <el-col :span="1.5">
|
||
<el-button
|
||
type="warning"
|
||
plain
|
||
icon="el-icon-download"
|
||
size="mini"
|
||
@click="handleExport"
|
||
v-hasPermi="['system:sysBizApp:export']"
|
||
>导出</el-button>
|
||
</el-col> -->
|
||
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
||
</el-row>
|
||
|
||
<el-table v-loading="loading" :data="sysBizAppList" @selection-change="handleSelectionChange">
|
||
<el-table-column type="selection" width="55" align="center" />
|
||
<!-- <el-table-column label="序号" align="center" min-width="60">
|
||
<template slot-scope="scope">
|
||
<span v-text="getIndex(scope.$index)"> </span>
|
||
</template>
|
||
</el-table-column> -->
|
||
<!--
|
||
<el-table-column label="xxx" align="left" prop="xxx" min-width="180">
|
||
<template slot-scope="scope">
|
||
<div class="link-type" @click="handleView(scope.row)">{{scope.row.orderSn}}</div>
|
||
</template>
|
||
</el-table-column>
|
||
-->
|
||
<el-table-column label="应用" align="left" prop="appId" min-width="150" >
|
||
<template slot-scope="scope">
|
||
<div style="display:inline-flex;width:100%" @click="handleUpdate(scope.row)" >
|
||
<div style="">
|
||
<div style="height:50px;overflow: hidden;">
|
||
<el-avatar :src="scope.row.logo"></el-avatar>
|
||
</div>
|
||
</div>
|
||
<div style="">
|
||
<div style="padding-left: 10px;" >
|
||
<div class="link-type" style="text-align:left;font-weight: bold;">{{scope.row.name}}</div>
|
||
<div style="color:gray;text-align: left;" >{{scope.row.appId}}</div>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
|
||
</template>
|
||
</el-table-column>
|
||
<el-table-column label="首页地址" align="left" prop="url" min-width="100" />
|
||
<el-table-column label="应用类型" align="center" prop="appType" min-width="100" >
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.sys_biz_app_type" :value="scope.row.appType"/>
|
||
</template>
|
||
</el-table-column>
|
||
<!-- <el-table-column label="是否开放 1-开放 0-不开放" align="center" prop="isPublic" min-width="100" >
|
||
<template slot-scope="scope">
|
||
<dict-tag :options="dict.type.sys_public_flag" :value="scope.row.isPublic"/>
|
||
</template>
|
||
</el-table-column> -->
|
||
<el-table-column label="创建时间" align="center" prop="createTime" min-width="170" />
|
||
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
||
<template slot-scope="scope">
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-edit"
|
||
@click="handleUpdate(scope.row)"
|
||
v-hasPermi="['system:sysBizApp:edit']"
|
||
>修改</el-button>
|
||
<!--
|
||
<el-button
|
||
size="mini"
|
||
type="text"
|
||
icon="el-icon-delete"
|
||
@click="handleDelete(scope.row)"
|
||
v-hasPermi="['system:sysBizApp:remove']"
|
||
>删除</el-button> -->
|
||
</template>
|
||
</el-table-column>
|
||
</el-table>
|
||
|
||
<pagination
|
||
v-show="total>0"
|
||
:total="total"
|
||
:page-sizes="[20,50,100,300,500,1000,2000,5000]"
|
||
:page.sync="queryParams.pageNum"
|
||
:limit.sync="queryParams.pageSize"
|
||
:page-size="queryParams.pageSize"
|
||
@pagination="getList"
|
||
/>
|
||
|
||
<!-- 添加或修改系统业务APP对话框 -->
|
||
<el-dialog :title="title" :visible.sync="open" width="500px" :close-on-click-modal="false" append-to-body>
|
||
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
||
<el-form-item label="名称" prop="name">
|
||
<el-input v-model="form.name" placeholder="请输入名称" />
|
||
</el-form-item>
|
||
<el-form-item label="图标">
|
||
<image-one-upload v-model="form.logo"/>
|
||
</el-form-item>
|
||
<el-form-item label="首页地址" prop="url">
|
||
<el-input v-model="form.url" placeholder="url" />
|
||
</el-form-item>
|
||
<el-form-item label="应用类型" prop="appType">
|
||
<el-select v-model="form.appType" placeholder="应用类型">
|
||
<el-option
|
||
v-for="dict in dict.type.sys_biz_app_type"
|
||
:key="dict.value"
|
||
:label="dict.label"
|
||
:value="dict.value"
|
||
></el-option>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="是否开放">
|
||
<el-radio-group v-model="form.isPublic">
|
||
<el-radio
|
||
v-for="dict in dict.type.sys_public_flag"
|
||
:key="dict.value"
|
||
:label="dict.value+''"
|
||
>{{dict.label}}</el-radio>
|
||
</el-radio-group>
|
||
</el-form-item>
|
||
<el-form-item label="应用角色">
|
||
<el-select v-model="form.roleId" placeholder="请选择角色">
|
||
<el-option
|
||
v-for="item in roleOptions"
|
||
:key="item.roleId"
|
||
:label="item.roleName"
|
||
:value="item.roleId"
|
||
></el-option>
|
||
</el-select>
|
||
</el-form-item>
|
||
<el-form-item label="备注" prop="remark">
|
||
<el-input v-model="form.remark" type="textarea" placeholder="请输入内容" />
|
||
</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>
|
||
|
||
|
||
<el-dialog :title="titleView" :visible.sync="openView" width="60%" :close-on-click-modal="false" append-to-body>
|
||
<SysBizAppDetail :appId="appId" ></SysBizAppDetail>
|
||
</el-dialog>
|
||
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import { listRole } from "@/api/system/role";
|
||
import { listSysBizApp, getSysBizApp, delSysBizApp, addSysBizApp, updateSysBizApp } from "@/api/system/sysBizApp";
|
||
import elDateSimplePicker from '@/components/DatePickerAdv/elDateSimplePicker';
|
||
import SysBizAppDetail from '@/views/system/sysBizApp/view';
|
||
|
||
export default {
|
||
name: "sysBizApp",
|
||
components: { elDateSimplePicker,SysBizAppDetail },
|
||
dicts: [
|
||
'sys_biz_app_type',
|
||
'sys_public_flag',
|
||
],
|
||
data() {
|
||
return {
|
||
// 遮罩层
|
||
loading: true,
|
||
// 选中数组
|
||
ids: [],
|
||
// 非单个禁用
|
||
single: true,
|
||
// 非多个禁用
|
||
multiple: true,
|
||
// 显示搜索条件
|
||
showSearch: true,
|
||
// 创建时间搜索
|
||
dateTimeRange:[],
|
||
// 搜索下拉
|
||
// itemOptions:[],
|
||
// 下拉枚举
|
||
// xxStatusOtions: [
|
||
// {value: '0', label: 'xx1'},
|
||
// {value: '10', label: 'xxx'},
|
||
// ],
|
||
// 总条数
|
||
total: 0,
|
||
// 系统业务APP表格数据
|
||
sysBizAppList: [],
|
||
// 弹出层标题
|
||
title: "",
|
||
// 是否显示弹出层
|
||
open: false,
|
||
|
||
// 弹出展示层
|
||
appId:null,
|
||
titleView:"",
|
||
openView: false,
|
||
|
||
// 角色选项
|
||
roleOptions: [],
|
||
|
||
// 备注时间范围
|
||
daterangeCreateTime: [],
|
||
// 备注时间范围
|
||
daterangeUpdateTime: [],
|
||
// 查询参数
|
||
queryParams: {
|
||
pageNum: 1,
|
||
pageSize: 20,
|
||
appId: null,
|
||
name: null,
|
||
appType: null,
|
||
},
|
||
// 表单参数
|
||
form: {},
|
||
// 表单校验
|
||
rules: {
|
||
name: [
|
||
{ required: true, message: "名称不能为空", trigger: "blur" }
|
||
],
|
||
logo: [
|
||
{ required: true, message: "logo不能为空", trigger: "blur" }
|
||
],
|
||
}
|
||
};
|
||
},
|
||
created() {
|
||
this.getList();
|
||
this.initRole();
|
||
},
|
||
methods: {
|
||
initRole(){
|
||
let q={};
|
||
this.roleOptions = [];
|
||
listRole(q).then(response => {
|
||
response.rows.forEach(item =>{
|
||
var optItem={roleId:item.roleId,roleName:item.roleName};
|
||
this.roleOptions.push(optItem)
|
||
});
|
||
console.log(this.roleOptions);
|
||
});
|
||
},
|
||
/** 查询系统业务APP列表 */
|
||
getList() {
|
||
this.loading = true;
|
||
this.queryParams.params = {};
|
||
if (null != this.daterangeCreateTime && '' != this.daterangeCreateTime) {
|
||
this.queryParams.params["beginCreateTime"] = this.daterangeCreateTime[0];
|
||
this.queryParams.params["endCreateTime"] = this.daterangeCreateTime[1];
|
||
}
|
||
if (null != this.daterangeUpdateTime && '' != this.daterangeUpdateTime) {
|
||
this.queryParams.params["beginUpdateTime"] = this.daterangeUpdateTime[0];
|
||
this.queryParams.params["endUpdateTime"] = this.daterangeUpdateTime[1];
|
||
}
|
||
listSysBizApp(this.addDateRange(this.queryParams, this.dateTimeRange)).then(response => {
|
||
this.sysBizAppList = response.rows;
|
||
this.total = response.total;
|
||
this.loading = false;
|
||
});
|
||
},
|
||
// 取消按钮
|
||
cancel() {
|
||
this.open = false;
|
||
this.reset();
|
||
},
|
||
// 表单重置
|
||
reset() {
|
||
this.form = {
|
||
appId: null,
|
||
name: null,
|
||
nameEn: null,
|
||
logo: null,
|
||
url: null,
|
||
appType: null,
|
||
isPublic: null,
|
||
tenantId: null,
|
||
delFlag: null,
|
||
createBy: null,
|
||
createTime: null,
|
||
updateBy: null,
|
||
updateTime: null,
|
||
remark: null,
|
||
roleId: null
|
||
};
|
||
this.resetForm("form");
|
||
},
|
||
/** 搜索按钮操作 */
|
||
handleQuery() {
|
||
this.queryParams.pageNum = 1;
|
||
this.getList();
|
||
},
|
||
/** 重置按钮操作 */
|
||
resetQuery() {
|
||
this.resetForm("queryForm");
|
||
this.handleQuery();
|
||
},
|
||
// 多选框选中数据
|
||
handleSelectionChange(selection) {
|
||
this.ids = selection.map(item => item.appId)
|
||
this.single = selection.length!==1
|
||
this.multiple = !selection.length
|
||
},
|
||
/** 新增按钮操作 */
|
||
handleAdd() {
|
||
this.reset();
|
||
this.open = true;
|
||
this.title = "新增";
|
||
},
|
||
/** 修改按钮操作 */
|
||
handleUpdate(row) {
|
||
this.reset();
|
||
const appId = row.appId || this.ids
|
||
getSysBizApp(appId).then(response => {
|
||
this.form = response.data;
|
||
this.form.roleId = response.roleId;
|
||
this.open = true;
|
||
this.title = "修改";
|
||
});
|
||
},
|
||
handleView(row) {
|
||
this.appId=row.appId;
|
||
this.titleView="查看";
|
||
this.openView=true;
|
||
// this.router.push({ path: '/system/sysBizApp/viewDetail', query: { appId: row.appId }})
|
||
},
|
||
/** 提交按钮 */
|
||
submitForm() {
|
||
this.$refs["form"].validate(valid => {
|
||
if (valid) {
|
||
if (this.form.appId != null) {
|
||
updateSysBizApp(this.form).then(response => {
|
||
this.$modal.msgSuccess("修改成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
} else {
|
||
addSysBizApp(this.form).then(response => {
|
||
this.$modal.msgSuccess("新增成功");
|
||
this.open = false;
|
||
this.getList();
|
||
});
|
||
}
|
||
}
|
||
});
|
||
},
|
||
/** 删除按钮操作 */
|
||
handleDelete(row) {
|
||
const appIds = row.appId || this.ids;
|
||
this.$modal.confirm('是否确认删除').then(function() {
|
||
return delSysBizApp(appIds);
|
||
}).then(() => {
|
||
this.getList();
|
||
this.$modal.msgSuccess("删除成功");
|
||
}).catch(() => {});
|
||
},
|
||
/** 导出按钮操作 */
|
||
handleExport() {
|
||
// this.download('system/sysBizApp/export', {
|
||
// ...this.queryParams
|
||
// }, `sysBizApp_${new Date().getTime()}.xlsx`)
|
||
const loadingInstance = this.$loading({
|
||
text: '正在导出...'
|
||
})
|
||
var qParam = {...this.queryParams};
|
||
qParam.pageNum=1;
|
||
qParam.pageSize=5000;
|
||
|
||
listSysBizApp(this.addDateRange(qParam, this.dateTimeRange)).then(response => {
|
||
this.downloadLoading = false
|
||
if (response.code === 200) {
|
||
const curList = response.rows
|
||
import('@/vendor/Export2Excel').then(excel => {
|
||
const tHeader = ['appid','名称','英文名称','logo','url地址','1-内部域 2-外部域','是否开放 1-开放 0-不开放','租户ID','删除标志(0代表存在 2代表删除)','创建者','创建时间','更新者','更新时间','备注',];
|
||
const filterVal = ['appId','name','nameEn','logo','url','appType','isPublic','tenantId','delFlag','createBy','createTime','updateBy','updateTime','remark',];
|
||
const data = this.formatJson(filterVal, curList, response.rows)
|
||
excel.export_json_to_excel({
|
||
header: tHeader,
|
||
data,
|
||
filename: '系统业务APP',
|
||
autoWidth: true
|
||
})
|
||
loadingInstance.close()
|
||
})
|
||
}
|
||
});
|
||
},
|
||
formatJson(filterVal, jsonData, resData) {
|
||
let index = 0
|
||
return jsonData.map(v => filterVal.map(j => {
|
||
if (j === 'index') {
|
||
return ++index
|
||
}
|
||
if (j === 'status') {
|
||
var statusStr='xxx'
|
||
if(v[j] == 10){
|
||
statusStr='xxx'
|
||
}
|
||
return statusStr;
|
||
}
|
||
return v[j]
|
||
}))
|
||
},
|
||
/** 列索引函数 */
|
||
getIndex($index) {
|
||
return (this.queryParams.pageNum - 1) * this.queryParams.pageSize + $index + 1
|
||
},
|
||
/** 时间搜索响应函数 */
|
||
dateTimeChange(value){
|
||
this.dateTimeRange=value;
|
||
},
|
||
}
|
||
};
|
||
</script>
|