444 lines
15 KiB
Vue
444 lines
15 KiB
Vue
<template>
|
|
<page-container>
|
|
<j-advanced-search
|
|
:columns="columns"
|
|
target="notice-config"
|
|
@search="handleSearch"
|
|
/>
|
|
<JProTable
|
|
ref="configRef"
|
|
:columns="columns"
|
|
:request="ConfigApi.list"
|
|
:defaultParams="{
|
|
sorts: [{ name: 'createTime', order: 'desc' }],
|
|
}"
|
|
:params="params"
|
|
:gridColumn="3"
|
|
>
|
|
<template #headerTitle>
|
|
<j-space>
|
|
<PermissionButton
|
|
type="primary"
|
|
@click="handleAdd"
|
|
hasPermission="notice/Config:add"
|
|
>
|
|
新增
|
|
</PermissionButton>
|
|
<a-upload
|
|
name="file"
|
|
accept="json"
|
|
:showUploadList="false"
|
|
:before-upload="beforeUpload"
|
|
>
|
|
<PermissionButton hasPermission="notice/Config:import">
|
|
导入
|
|
</PermissionButton>
|
|
</a-upload>
|
|
<j-popconfirm
|
|
title="确认导出?"
|
|
ok-text="确定"
|
|
cancel-text="取消"
|
|
@confirm="handleExport"
|
|
>
|
|
<PermissionButton hasPermission="notice/Config:export">
|
|
导出
|
|
</PermissionButton>
|
|
</j-popconfirm>
|
|
</j-space>
|
|
</template>
|
|
<template #card="slotProps">
|
|
<CardBox
|
|
:showStatus="false"
|
|
:value="slotProps"
|
|
:actions="getActions(slotProps, 'card')"
|
|
v-bind="slotProps"
|
|
>
|
|
<template #img>
|
|
<slot name="img">
|
|
<img
|
|
:src="
|
|
getLogo(slotProps.type, slotProps.provider)
|
|
"
|
|
class="logo"
|
|
/>
|
|
</slot>
|
|
</template>
|
|
<template #content>
|
|
<h3 class="card-item-content-title">
|
|
{{ slotProps.name }}
|
|
</h3>
|
|
<j-row>
|
|
<j-col :span="12">
|
|
<div class="card-item-content-text">
|
|
通知方式
|
|
</div>
|
|
<div>
|
|
{{ getMethodTxt(slotProps.type) }}
|
|
</div>
|
|
</j-col>
|
|
<j-col :span="12">
|
|
<div class="card-item-content-text">说明</div>
|
|
<Ellipsis>
|
|
{{ slotProps.description }}
|
|
</Ellipsis>
|
|
</j-col>
|
|
</j-row>
|
|
</template>
|
|
<template #actions="item">
|
|
<j-tooltip
|
|
v-bind="item.tooltip"
|
|
:title="item.disabled && item.tooltip.title"
|
|
>
|
|
<j-dropdown
|
|
placement="bottomRight"
|
|
v-if="item.key === 'others'"
|
|
>
|
|
<j-button>
|
|
<AIcon :type="item.icon" />
|
|
<span>{{ item.text }}</span>
|
|
</j-button>
|
|
<template #overlay>
|
|
<j-menu>
|
|
<j-menu-item
|
|
v-for="(o, i) in item.children"
|
|
:key="i"
|
|
>
|
|
<PermissionButton
|
|
type="link"
|
|
@click="o.onClick"
|
|
:hasPermission="`notice/Config:${o.key}`"
|
|
>
|
|
<template #icon>
|
|
<AIcon :type="o.icon" />
|
|
</template>
|
|
<span>{{ o.text }}</span>
|
|
</PermissionButton>
|
|
</j-menu-item>
|
|
</j-menu>
|
|
</template>
|
|
</j-dropdown>
|
|
<j-popconfirm
|
|
v-else-if="item.key === 'delete'"
|
|
v-bind="item.popConfirm"
|
|
:disabled="item.disabled"
|
|
>
|
|
<PermissionButton
|
|
:disabled="item.disabled"
|
|
:hasPermission="`notice/Config:${item.key}`"
|
|
>
|
|
<template #icon>
|
|
<AIcon type="DeleteOutlined" />
|
|
</template>
|
|
</PermissionButton>
|
|
</j-popconfirm>
|
|
<template v-else>
|
|
<PermissionButton
|
|
:disabled="item.disabled"
|
|
@click="item.onClick"
|
|
:hasPermission="`notice/Config:${item.key}`"
|
|
>
|
|
<template #icon>
|
|
<AIcon :type="item.icon" />
|
|
</template>
|
|
<span>{{ item.text }}</span>
|
|
</PermissionButton>
|
|
</template>
|
|
</j-tooltip>
|
|
</template>
|
|
</CardBox>
|
|
</template>
|
|
<template #action="slotProps">
|
|
<j-space :size="16">
|
|
<template
|
|
v-for="i in getActions(slotProps, 'table')"
|
|
:key="i.key"
|
|
>
|
|
<PermissionButton
|
|
:disabled="i.disabled"
|
|
:popConfirm="i.popConfirm"
|
|
:tooltip="{
|
|
...i.tooltip,
|
|
}"
|
|
@click="i.onClick"
|
|
type="link"
|
|
style="padding: 0px"
|
|
:hasPermission="'notice/Config:' + i.key"
|
|
>
|
|
<template #icon><AIcon :type="i.icon" /></template>
|
|
</PermissionButton>
|
|
</template>
|
|
</j-space>
|
|
</template>
|
|
</JProTable>
|
|
|
|
<Debug v-model:visible="debugVis" :data="currentConfig" />
|
|
<Log v-model:visible="logVis" :data="currentConfig" />
|
|
<SyncUser v-model:visible="syncVis" :data="currentConfig" />
|
|
</page-container>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import ConfigApi from '@/api/notice/config';
|
|
import type { ActionsType } from '@/components/Table/index.vue';
|
|
|
|
import { message } from 'ant-design-vue';
|
|
|
|
import { NOTICE_METHOD, MSG_TYPE } from '@/views/notice/const';
|
|
import SyncUser from './SyncUser/index.vue';
|
|
import Debug from './Debug/index.vue';
|
|
import Log from './Log/index.vue';
|
|
import { downloadObject } from '@/utils/utils';
|
|
import { useMenuStore } from 'store/menu';
|
|
|
|
const menuStory = useMenuStore();
|
|
|
|
let providerList: any = [];
|
|
Object.keys(MSG_TYPE).forEach((key) => {
|
|
providerList = [...providerList, ...MSG_TYPE[key]];
|
|
});
|
|
|
|
const configRef = ref<Record<string, any>>({});
|
|
const params = ref<Record<string, any>>({});
|
|
|
|
const columns = [
|
|
{
|
|
title: '配置名称',
|
|
dataIndex: 'name',
|
|
key: 'name',
|
|
search: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
{
|
|
title: '通知方式',
|
|
dataIndex: 'type',
|
|
key: 'type',
|
|
scopedSlots: true,
|
|
search: {
|
|
type: 'select',
|
|
options: NOTICE_METHOD,
|
|
handleValue: (v: any) => {
|
|
return v;
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: '类型',
|
|
dataIndex: 'provider',
|
|
key: 'provider',
|
|
scopedSlots: true,
|
|
search: {
|
|
type: 'select',
|
|
options: providerList,
|
|
handleValue: (v: any) => {
|
|
return v;
|
|
},
|
|
},
|
|
},
|
|
{
|
|
title: '说明',
|
|
dataIndex: 'description',
|
|
key: 'description',
|
|
search: {
|
|
type: 'string',
|
|
},
|
|
},
|
|
{
|
|
title: '操作',
|
|
key: 'action',
|
|
fixed: 'right',
|
|
width: 250,
|
|
scopedSlots: true,
|
|
},
|
|
];
|
|
|
|
/**
|
|
* 搜索
|
|
* @param params
|
|
*/
|
|
const handleSearch = (e: any) => {
|
|
console.log('handleSearch:', e);
|
|
params.value = e;
|
|
console.log('params.value: ', params.value);
|
|
};
|
|
|
|
/**
|
|
* 根据通知方式展示对应logo
|
|
*/
|
|
const getLogo = (type: string, provider: string) => {
|
|
return MSG_TYPE[type].find((f: any) => f.value === provider)?.logo;
|
|
};
|
|
/**
|
|
* 通知方式字段展示对应文字
|
|
*/
|
|
const getMethodTxt = (type: string) => {
|
|
return NOTICE_METHOD.find((f) => f.value === type)?.label;
|
|
};
|
|
|
|
/**
|
|
* 新增
|
|
*/
|
|
const handleAdd = () => {
|
|
menuStory.jumpPage('notice/Config/Detail', { id: ':id' });
|
|
};
|
|
|
|
/**
|
|
* 导入
|
|
*/
|
|
const beforeUpload = (file: any) => {
|
|
console.log('file: ', file);
|
|
const reader = new FileReader();
|
|
reader.readAsText(file);
|
|
reader.onload = async (result) => {
|
|
const text = result.target?.result;
|
|
console.log('text: ', text);
|
|
if (!file.type.includes('json')) {
|
|
message.error('请上传json格式文件');
|
|
return false;
|
|
}
|
|
try {
|
|
const data = JSON.parse(text || '{}');
|
|
const { success } = await ConfigApi.update(data);
|
|
if (success) {
|
|
message.success('操作成功');
|
|
configRef.value.reload();
|
|
}
|
|
return true;
|
|
} catch {
|
|
// message.error('请上传json格式文件');
|
|
}
|
|
return true;
|
|
};
|
|
return false;
|
|
};
|
|
|
|
/**
|
|
* 导出
|
|
*/
|
|
const handleExport = () => {
|
|
downloadObject(configRef.value._dataSource, `通知配置`);
|
|
};
|
|
|
|
const syncVis = ref(false);
|
|
const debugVis = ref(false);
|
|
const logVis = ref(false);
|
|
const currentConfig = ref<Partial<Record<string, any>>>();
|
|
const getActions = (
|
|
data: Partial<Record<string, any>>,
|
|
type: 'card' | 'table',
|
|
): ActionsType[] => {
|
|
if (!data) return [];
|
|
const actions = [
|
|
{
|
|
key: 'update',
|
|
text: '编辑',
|
|
tooltip: {
|
|
title: '编辑',
|
|
},
|
|
icon: 'EditOutlined',
|
|
onClick: () => {
|
|
menuStory.jumpPage('notice/Config/Detail', {
|
|
id: data.id,
|
|
});
|
|
},
|
|
},
|
|
{
|
|
key: 'debug',
|
|
text: '调试',
|
|
tooltip: {
|
|
title: '调试',
|
|
},
|
|
icon: 'BugOutlined',
|
|
onClick: () => {
|
|
debugVis.value = true;
|
|
currentConfig.value = data;
|
|
},
|
|
},
|
|
{
|
|
key: 'log',
|
|
text: '通知记录',
|
|
tooltip: {
|
|
title: '通知记录',
|
|
},
|
|
icon: 'BarsOutlined',
|
|
onClick: () => {
|
|
logVis.value = true;
|
|
currentConfig.value = data;
|
|
},
|
|
},
|
|
{
|
|
key: 'delete',
|
|
text: '删除',
|
|
popConfirm: {
|
|
title: '确认删除?',
|
|
onConfirm: async () => {
|
|
const resp = await ConfigApi.del(data.id);
|
|
if (resp.status === 200) {
|
|
message.success('操作成功!');
|
|
configRef.value?.reload();
|
|
} else {
|
|
message.error('操作失败!');
|
|
}
|
|
},
|
|
},
|
|
icon: 'DeleteOutlined',
|
|
},
|
|
];
|
|
|
|
const others: ActionsType = {
|
|
key: 'others',
|
|
text: '其他',
|
|
icon: 'EllipsisOutlined',
|
|
children: [
|
|
{
|
|
key: 'export',
|
|
text: '导出',
|
|
tooltip: {
|
|
title: '导出',
|
|
},
|
|
icon: 'ArrowDownOutlined',
|
|
onClick: () => {
|
|
downloadObject(data, `通知配置`);
|
|
},
|
|
},
|
|
{
|
|
key: 'bind',
|
|
text: '同步用户',
|
|
tooltip: {
|
|
title: '同步用户',
|
|
},
|
|
icon: 'TeamOutlined',
|
|
onClick: () => {
|
|
syncVis.value = true;
|
|
currentConfig.value = data;
|
|
},
|
|
},
|
|
],
|
|
};
|
|
|
|
if (type === 'card') {
|
|
if (
|
|
data.provider !== 'dingTalkMessage' &&
|
|
data.provider !== 'corpMessage'
|
|
)
|
|
others.children.splice(1, 1);
|
|
actions.splice(actions.length - 1, 0, others);
|
|
return actions;
|
|
} else {
|
|
if (
|
|
data.provider !== 'dingTalkMessage' &&
|
|
data.provider !== 'corpMessage'
|
|
)
|
|
others.children.splice(1, 1);
|
|
actions.splice(actions.length - 1, 0, ...others.children);
|
|
return actions;
|
|
}
|
|
};
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.logo {
|
|
width: 88px;
|
|
height: 88px;
|
|
}
|
|
</style>
|