feat:【antd】【bpm】oa 相关代码优化
This commit is contained in:
@@ -22,7 +22,6 @@ import { useFormSchema } from './data';
|
|||||||
|
|
||||||
const formLoading = ref(false); // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
const formLoading = ref(false); // 表单的加载中:1)修改时的数据加载;2)提交的按钮禁用
|
||||||
|
|
||||||
// 审批相关:变量
|
|
||||||
const processDefineKey = 'oa_leave'; // 流程定义 Key
|
const processDefineKey = 'oa_leave'; // 流程定义 Key
|
||||||
const startUserSelectTasks = ref<any>([]); // 发起人需要选择审批人的用户任务列表
|
const startUserSelectTasks = ref<any>([]); // 发起人需要选择审批人的用户任务列表
|
||||||
const startUserSelectAssignees = ref<any>({}); // 发起人选择审批人的数据
|
const startUserSelectAssignees = ref<any>({}); // 发起人选择审批人的数据
|
||||||
@@ -95,7 +94,6 @@ async function onSubmit() {
|
|||||||
key: 'action_process_msg',
|
key: 'action_process_msg',
|
||||||
});
|
});
|
||||||
|
|
||||||
// TODO @ziye、@jason:好像跳转不了?
|
|
||||||
await router.push({
|
await router.push({
|
||||||
name: 'BpmOALeave',
|
name: 'BpmOALeave',
|
||||||
});
|
});
|
||||||
@@ -121,49 +119,44 @@ function onBack() {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
// ============================== 审核流程相关 ==============================
|
|
||||||
|
|
||||||
/** 审批相关:获取审批详情 */
|
/** 审批相关:获取审批详情 */
|
||||||
async function getApprovalDetail() {
|
async function getApprovalDetail() {
|
||||||
try {
|
const data = await getApprovalDetailApi({
|
||||||
const data = await getApprovalDetailApi({
|
processDefinitionId: processDefinitionId.value,
|
||||||
processDefinitionId: processDefinitionId.value,
|
// TODO 小北:可以支持 processDefinitionKey 查询
|
||||||
// TODO 小北:可以支持 processDefinitionKey 查询
|
activityId: BpmNodeIdEnum.START_USER_NODE_ID,
|
||||||
activityId: BpmNodeIdEnum.START_USER_NODE_ID,
|
processVariablesStr: JSON.stringify({
|
||||||
processVariablesStr: JSON.stringify({
|
day: dayjs(formData.value?.startTime).diff(
|
||||||
day: dayjs(formData.value?.startTime).diff(
|
dayjs(formData.value?.endTime),
|
||||||
dayjs(formData.value?.endTime),
|
'day',
|
||||||
'day',
|
),
|
||||||
),
|
}), // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
|
||||||
}), // 解决 GET 无法传递对象的问题,后端 String 再转 JSON
|
});
|
||||||
});
|
|
||||||
|
|
||||||
if (!data) {
|
if (!data) {
|
||||||
message.error('查询不到审批详情信息!');
|
message.error('查询不到审批详情信息!');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// 获取审批节点,显示 Timeline 的数据
|
// 获取审批节点,显示 Timeline 的数据
|
||||||
activityNodes.value = data.activityNodes;
|
activityNodes.value = data.activityNodes;
|
||||||
|
|
||||||
// 获取发起人自选的任务
|
// 获取发起人自选的任务
|
||||||
startUserSelectTasks.value = data.activityNodes?.filter(
|
startUserSelectTasks.value = data.activityNodes?.filter(
|
||||||
(node: BpmProcessInstanceApi.ApprovalNodeInfo) =>
|
(node: BpmProcessInstanceApi.ApprovalNodeInfo) =>
|
||||||
BpmCandidateStrategyEnum.START_USER_SELECT === node.candidateStrategy,
|
BpmCandidateStrategyEnum.START_USER_SELECT === node.candidateStrategy,
|
||||||
);
|
);
|
||||||
// 恢复之前的选择审批人
|
// 恢复之前的选择审批人
|
||||||
if (startUserSelectTasks.value?.length > 0) {
|
if (startUserSelectTasks.value?.length > 0) {
|
||||||
for (const node of startUserSelectTasks.value) {
|
for (const node of startUserSelectTasks.value) {
|
||||||
startUserSelectAssignees.value[node.id] =
|
startUserSelectAssignees.value[node.id] =
|
||||||
tempStartUserSelectAssignees.value[node.id] &&
|
tempStartUserSelectAssignees.value[node.id] &&
|
||||||
tempStartUserSelectAssignees.value[node.id].length > 0
|
tempStartUserSelectAssignees.value[node.id].length > 0
|
||||||
? tempStartUserSelectAssignees.value[node.id]
|
? tempStartUserSelectAssignees.value[node.id]
|
||||||
: [];
|
: [];
|
||||||
}
|
|
||||||
}
|
}
|
||||||
} finally {
|
|
||||||
//
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/** 审批相关:选择发起人 */
|
/** 审批相关:选择发起人 */
|
||||||
function selectUserConfirm(id: string, userList: any[]) {
|
function selectUserConfirm(id: string, userList: any[]) {
|
||||||
startUserSelectAssignees.value[id] = userList?.map((item: any) => item.id);
|
startUserSelectAssignees.value[id] = userList?.map((item: any) => item.id);
|
||||||
@@ -189,7 +182,6 @@ watch(
|
|||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
// ============================== 生命周期 ==============================
|
|
||||||
onMounted(async () => {
|
onMounted(async () => {
|
||||||
const processDefinitionDetail: any = await getProcessDefinition(
|
const processDefinitionDetail: any = await getProcessDefinition(
|
||||||
undefined,
|
undefined,
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ import { h } from 'vue';
|
|||||||
|
|
||||||
import { DICT_TYPE } from '@vben/constants';
|
import { DICT_TYPE } from '@vben/constants';
|
||||||
import { getDictOptions } from '@vben/hooks';
|
import { getDictOptions } from '@vben/hooks';
|
||||||
import { formatDateTime } from '@vben/utils';
|
import { formatDate } from '@vben/utils';
|
||||||
|
|
||||||
import { DictTag } from '#/components/dict-tag';
|
import { DictTag } from '#/components/dict-tag';
|
||||||
import { getRangePickerDefaultProps } from '#/utils';
|
import { getRangePickerDefaultProps } from '#/utils';
|
||||||
@@ -71,7 +71,7 @@ export function useFormSchema(): VbenFormSchema[] {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/** 列表的搜索表单 */
|
/** 列表的搜索表单 */
|
||||||
export function GridFormSchema(): VbenFormSchema[] {
|
export function useGridFormSchema(): VbenFormSchema[] {
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
fieldName: 'type',
|
fieldName: 'type',
|
||||||
@@ -83,17 +83,26 @@ export function GridFormSchema(): VbenFormSchema[] {
|
|||||||
allowClear: true,
|
allowClear: true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
fieldName: 'createTime',
|
||||||
|
label: '创建时间',
|
||||||
|
component: 'RangePicker',
|
||||||
|
componentProps: {
|
||||||
|
...getRangePickerDefaultProps(),
|
||||||
|
allowClear: true,
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
fieldName: 'status',
|
fieldName: 'status',
|
||||||
label: '审批结果',
|
label: '审批结果',
|
||||||
component: 'Select',
|
component: 'Select',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
placeholder: '请选择审批结果',
|
placeholder: '请选择审批结果',
|
||||||
|
allowClear: true,
|
||||||
options: getDictOptions(
|
options: getDictOptions(
|
||||||
DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
|
DICT_TYPE.BPM_PROCESS_INSTANCE_STATUS,
|
||||||
'number',
|
'number',
|
||||||
),
|
),
|
||||||
allowClear: true,
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -102,14 +111,7 @@ export function GridFormSchema(): VbenFormSchema[] {
|
|||||||
component: 'Input',
|
component: 'Input',
|
||||||
componentProps: {
|
componentProps: {
|
||||||
placeholder: '请输入原因',
|
placeholder: '请输入原因',
|
||||||
},
|
allowClear: true,
|
||||||
},
|
|
||||||
{
|
|
||||||
fieldName: 'createTime',
|
|
||||||
label: '创建时间',
|
|
||||||
component: 'RangePicker',
|
|
||||||
componentProps: {
|
|
||||||
...getRangePickerDefaultProps(),
|
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
@@ -136,13 +138,13 @@ export function useGridColumns(): VxeTableGridOptions['columns'] {
|
|||||||
field: 'startTime',
|
field: 'startTime',
|
||||||
title: '开始时间',
|
title: '开始时间',
|
||||||
minWidth: 180,
|
minWidth: 180,
|
||||||
formatter: 'formatDateTime',
|
formatter: 'formatDate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'endTime',
|
field: 'endTime',
|
||||||
title: '结束时间',
|
title: '结束时间',
|
||||||
minWidth: 180,
|
minWidth: 180,
|
||||||
formatter: 'formatDateTime',
|
formatter: 'formatDate',
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
field: 'type',
|
field: 'type',
|
||||||
@@ -188,12 +190,12 @@ export function useDetailFormSchema(): DescriptionItemSchema[] {
|
|||||||
{
|
{
|
||||||
label: '开始时间',
|
label: '开始时间',
|
||||||
field: 'startTime',
|
field: 'startTime',
|
||||||
render: (val) => formatDateTime(val) as string,
|
render: (val) => formatDate(val) as string,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '结束时间',
|
label: '结束时间',
|
||||||
field: 'endTime',
|
field: 'endTime',
|
||||||
render: (val) => formatDateTime(val) as string,
|
render: (val) => formatDate(val) as string,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '原因',
|
label: '原因',
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
<script setup lang="ts">
|
<script lang="ts" setup>
|
||||||
import type { BpmOALeaveApi } from '#/api/bpm/oa/leave';
|
import type { BpmOALeaveApi } from '#/api/bpm/oa/leave';
|
||||||
|
|
||||||
import { computed, onMounted, ref } from 'vue';
|
import { computed, onMounted, ref } from 'vue';
|
||||||
@@ -6,29 +6,41 @@ import { useRoute } from 'vue-router';
|
|||||||
|
|
||||||
import { ContentWrap } from '@vben/common-ui';
|
import { ContentWrap } from '@vben/common-ui';
|
||||||
|
|
||||||
|
import { Spin } from 'ant-design-vue';
|
||||||
|
|
||||||
import { getLeave } from '#/api/bpm/oa/leave';
|
import { getLeave } from '#/api/bpm/oa/leave';
|
||||||
import { Description } from '#/components/description';
|
import { useDescription } from '#/components/description';
|
||||||
|
|
||||||
import { useDetailFormSchema } from './data';
|
import { useDetailFormSchema } from './data';
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
id: string;
|
id: string;
|
||||||
}>();
|
}>();
|
||||||
const datailLoading = ref(false);
|
|
||||||
const detailData = ref<BpmOALeaveApi.Leave>();
|
|
||||||
|
|
||||||
const { query } = useRoute();
|
const { query } = useRoute();
|
||||||
|
|
||||||
|
const loading = ref(false);
|
||||||
|
const formData = ref<BpmOALeaveApi.Leave>();
|
||||||
const queryId = computed(() => query.id as string);
|
const queryId = computed(() => query.id as string);
|
||||||
|
|
||||||
|
const [Descriptions] = useDescription({
|
||||||
|
bordered: true,
|
||||||
|
column: 1,
|
||||||
|
class: 'mx-4',
|
||||||
|
schema: useDetailFormSchema(),
|
||||||
|
});
|
||||||
|
|
||||||
|
/** 获取详情数据 */
|
||||||
async function getDetailData() {
|
async function getDetailData() {
|
||||||
try {
|
try {
|
||||||
datailLoading.value = true;
|
loading.value = true;
|
||||||
detailData.value = await getLeave(Number(props.id || queryId.value));
|
formData.value = await getLeave(Number(props.id || queryId.value));
|
||||||
} finally {
|
} finally {
|
||||||
datailLoading.value = false;
|
loading.value = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** 初始化 */
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
getDetailData();
|
getDetailData();
|
||||||
});
|
});
|
||||||
@@ -36,20 +48,8 @@ onMounted(() => {
|
|||||||
|
|
||||||
<template>
|
<template>
|
||||||
<ContentWrap class="m-2">
|
<ContentWrap class="m-2">
|
||||||
<Description
|
<Spin :spinning="loading" tip="加载中...">
|
||||||
:data="detailData"
|
<Descriptions :data="formData" />
|
||||||
:schema="useDetailFormSchema()"
|
</Spin>
|
||||||
:component-props="{
|
|
||||||
column: 1,
|
|
||||||
bordered: true,
|
|
||||||
size: 'small',
|
|
||||||
}"
|
|
||||||
/>
|
|
||||||
</ContentWrap>
|
</ContentWrap>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
|
||||||
:deep(.ant-descriptions-item-label) {
|
|
||||||
width: 150px;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|||||||
@@ -5,19 +5,91 @@ import type { BpmOALeaveApi } from '#/api/bpm/oa/leave';
|
|||||||
import { h } from 'vue';
|
import { h } from 'vue';
|
||||||
|
|
||||||
import { DocAlert, Page, prompt } from '@vben/common-ui';
|
import { DocAlert, Page, prompt } from '@vben/common-ui';
|
||||||
|
import { BpmProcessInstanceStatus } from '@vben/constants';
|
||||||
|
|
||||||
import { message, Textarea } from 'ant-design-vue';
|
import { message, Textarea } from 'ant-design-vue';
|
||||||
|
|
||||||
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
import { ACTION_ICON, TableAction, useVbenVxeGrid } from '#/adapter/vxe-table';
|
||||||
import { getLeavePage } from '#/api/bpm/oa/leave';
|
import { getLeavePage } from '#/api/bpm/oa/leave';
|
||||||
import { cancelProcessInstanceByStartUser } from '#/api/bpm/processInstance';
|
import { cancelProcessInstanceByStartUser } from '#/api/bpm/processInstance';
|
||||||
|
import { $t } from '#/locales';
|
||||||
import { router } from '#/router';
|
import { router } from '#/router';
|
||||||
|
|
||||||
import { GridFormSchema, useGridColumns } from './data';
|
import { useGridColumns, useGridFormSchema } from './data';
|
||||||
|
|
||||||
|
/** 刷新表格 */
|
||||||
|
function handleRefresh() {
|
||||||
|
gridApi.query();
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 创建请假 */
|
||||||
|
function handleCreate() {
|
||||||
|
router.push({
|
||||||
|
name: 'OALeaveCreate',
|
||||||
|
query: {
|
||||||
|
formType: 'create',
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 取消请假 */
|
||||||
|
function handleCancel(row: BpmOALeaveApi.Leave) {
|
||||||
|
prompt({
|
||||||
|
title: '取消流程',
|
||||||
|
content: '请输入取消原因',
|
||||||
|
modelPropName: 'value',
|
||||||
|
component: () => {
|
||||||
|
return h(Textarea, {
|
||||||
|
placeholder: '请输入取消原因',
|
||||||
|
allowClear: true,
|
||||||
|
rows: 2,
|
||||||
|
rules: [{ required: true, message: '请输入取消原因' }],
|
||||||
|
});
|
||||||
|
},
|
||||||
|
async beforeClose(scope) {
|
||||||
|
if (!scope.isConfirm) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!scope.value) {
|
||||||
|
message.error('请输入取消原因');
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
const hideLoading = message.loading({
|
||||||
|
content: '正在取消中...',
|
||||||
|
duration: 0,
|
||||||
|
});
|
||||||
|
try {
|
||||||
|
await cancelProcessInstanceByStartUser(row.id, scope.value);
|
||||||
|
message.success('取消成功');
|
||||||
|
handleRefresh();
|
||||||
|
} catch {
|
||||||
|
return false;
|
||||||
|
} finally {
|
||||||
|
hideLoading();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 查看请假详情 */
|
||||||
|
function handleDetail(row: BpmOALeaveApi.Leave) {
|
||||||
|
router.push({
|
||||||
|
name: 'OALeaveDetail',
|
||||||
|
query: { id: row.id },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/** 审批进度 */
|
||||||
|
function handleProgress(row: BpmOALeaveApi.Leave) {
|
||||||
|
router.push({
|
||||||
|
name: 'BpmProcessInstanceDetail',
|
||||||
|
query: { id: row.processInstanceId },
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
const [Grid, gridApi] = useVbenVxeGrid({
|
const [Grid, gridApi] = useVbenVxeGrid({
|
||||||
formOptions: {
|
formOptions: {
|
||||||
schema: GridFormSchema(),
|
schema: useGridFormSchema(),
|
||||||
},
|
},
|
||||||
gridOptions: {
|
gridOptions: {
|
||||||
columns: useGridColumns(),
|
columns: useGridColumns(),
|
||||||
@@ -36,6 +108,7 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
},
|
},
|
||||||
rowConfig: {
|
rowConfig: {
|
||||||
keyField: 'id',
|
keyField: 'id',
|
||||||
|
isHover: true,
|
||||||
},
|
},
|
||||||
toolbarConfig: {
|
toolbarConfig: {
|
||||||
refresh: true,
|
refresh: true,
|
||||||
@@ -43,70 +116,6 @@ const [Grid, gridApi] = useVbenVxeGrid({
|
|||||||
},
|
},
|
||||||
} as VxeTableGridOptions<BpmOALeaveApi.Leave>,
|
} as VxeTableGridOptions<BpmOALeaveApi.Leave>,
|
||||||
});
|
});
|
||||||
|
|
||||||
/** 创建请假 */
|
|
||||||
function handleCreate() {
|
|
||||||
router.push({
|
|
||||||
name: 'OALeaveCreate',
|
|
||||||
query: {
|
|
||||||
formType: 'create',
|
|
||||||
},
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 查看请假详情 */
|
|
||||||
function handleDetail(row: BpmOALeaveApi.Leave) {
|
|
||||||
router.push({
|
|
||||||
name: 'OALeaveDetail',
|
|
||||||
query: { id: row.id },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 取消请假 */
|
|
||||||
function handleCancel(row: BpmOALeaveApi.Leave) {
|
|
||||||
prompt({
|
|
||||||
async beforeClose(scope) {
|
|
||||||
if (scope.isConfirm) {
|
|
||||||
if (scope.value) {
|
|
||||||
try {
|
|
||||||
await cancelProcessInstanceByStartUser(row.id, scope.value);
|
|
||||||
message.success('取消成功');
|
|
||||||
handleRefresh();
|
|
||||||
} catch {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
message.error('请输入取消原因');
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
component: () => {
|
|
||||||
return h(Textarea, {
|
|
||||||
placeholder: '请输入取消原因',
|
|
||||||
allowClear: true,
|
|
||||||
rows: 2,
|
|
||||||
rules: [{ required: true, message: '请输入取消原因' }],
|
|
||||||
});
|
|
||||||
},
|
|
||||||
content: '请输入取消原因',
|
|
||||||
title: '取消流程',
|
|
||||||
modelPropName: 'value',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 审批进度 */
|
|
||||||
function handleProgress(row: BpmOALeaveApi.Leave) {
|
|
||||||
router.push({
|
|
||||||
name: 'BpmProcessInstanceDetail',
|
|
||||||
query: { id: row.processInstanceId },
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/** 刷新表格 */
|
|
||||||
function handleRefresh() {
|
|
||||||
gridApi.query();
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
@@ -126,7 +135,6 @@ function handleRefresh() {
|
|||||||
label: '发起请假',
|
label: '发起请假',
|
||||||
type: 'primary',
|
type: 'primary',
|
||||||
icon: ACTION_ICON.ADD,
|
icon: ACTION_ICON.ADD,
|
||||||
auth: ['bpm:oa-leave:create'],
|
|
||||||
onClick: handleCreate,
|
onClick: handleCreate,
|
||||||
},
|
},
|
||||||
]"
|
]"
|
||||||
@@ -139,14 +147,12 @@ function handleRefresh() {
|
|||||||
label: $t('common.detail'),
|
label: $t('common.detail'),
|
||||||
type: 'link',
|
type: 'link',
|
||||||
icon: ACTION_ICON.VIEW,
|
icon: ACTION_ICON.VIEW,
|
||||||
auth: ['bpm:oa-leave:query'],
|
|
||||||
onClick: handleDetail.bind(null, row),
|
onClick: handleDetail.bind(null, row),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
label: '审批进度',
|
label: '审批进度',
|
||||||
type: 'link',
|
type: 'link',
|
||||||
icon: ACTION_ICON.VIEW,
|
icon: ACTION_ICON.VIEW,
|
||||||
auth: ['bpm:oa-leave:query'],
|
|
||||||
onClick: handleProgress.bind(null, row),
|
onClick: handleProgress.bind(null, row),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
@@ -154,11 +160,8 @@ function handleRefresh() {
|
|||||||
type: 'link',
|
type: 'link',
|
||||||
danger: true,
|
danger: true,
|
||||||
icon: ACTION_ICON.DELETE,
|
icon: ACTION_ICON.DELETE,
|
||||||
auth: ['bpm:user-group:query'],
|
ifShow: row.result === BpmProcessInstanceStatus.RUNNING,
|
||||||
popConfirm: {
|
onClick: handleCancel.bind(null, row),
|
||||||
title: '取消流程',
|
|
||||||
confirm: handleCancel.bind(null, row),
|
|
||||||
},
|
|
||||||
},
|
},
|
||||||
]"
|
]"
|
||||||
/>
|
/>
|
||||||
|
|||||||
Reference in New Issue
Block a user