fc
This commit is contained in:
commit
553d244b43
25
.gitignore
vendored
Normal file
25
.gitignore
vendored
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
# Logs
|
||||||
|
logs
|
||||||
|
*.log
|
||||||
|
npm-debug.log*
|
||||||
|
yarn-debug.log*
|
||||||
|
yarn-error.log*
|
||||||
|
pnpm-debug.log*
|
||||||
|
lerna-debug.log*
|
||||||
|
|
||||||
|
node_modules
|
||||||
|
dist
|
||||||
|
dist-ssr
|
||||||
|
*.local
|
||||||
|
|
||||||
|
# Editor directories and files
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/extensions.json
|
||||||
|
.idea
|
||||||
|
.DS_Store
|
||||||
|
*.suo
|
||||||
|
*.ntvs*
|
||||||
|
*.njsproj
|
||||||
|
*.sln
|
||||||
|
*.sw?
|
||||||
|
.vscode
|
13
index.html
Normal file
13
index.html
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8" />
|
||||||
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Vite + Vue</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div id="app"></div>
|
||||||
|
<script type="module" src="/src/main.js"></script>
|
||||||
|
</body>
|
||||||
|
</html>
|
1761
package-lock.json
generated
Normal file
1761
package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
20
package.json
Normal file
20
package.json
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
{
|
||||||
|
"name": "btgxq-examine",
|
||||||
|
"private": true,
|
||||||
|
"version": "0.0.0",
|
||||||
|
"type": "module",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "vite",
|
||||||
|
"build": "vite build",
|
||||||
|
"preview": "vite preview"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"vue": "^3.2.47"
|
||||||
|
},
|
||||||
|
"devDependencies": {
|
||||||
|
"@vitejs/plugin-vue": "^4.1.0",
|
||||||
|
"naive-ui": "^2.34.3",
|
||||||
|
"stylus": "^0.59.0",
|
||||||
|
"vite": "^4.3.2"
|
||||||
|
}
|
||||||
|
}
|
1
public/vite.svg
Normal file
1
public/vite.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>
|
After Width: | Height: | Size: 1.5 KiB |
13
src/App.vue
Normal file
13
src/App.vue
Normal file
@ -0,0 +1,13 @@
|
|||||||
|
<template>
|
||||||
|
<n-message-provider>
|
||||||
|
<!-- <scroing/> -->
|
||||||
|
<wgy />
|
||||||
|
</n-message-provider>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script setup>
|
||||||
|
import { NMessageProvider } from 'naive-ui';
|
||||||
|
import Wgy from './components/wgy/Wgy.vue';
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style scoped></style>
|
1
src/assets/vue.svg
Normal file
1
src/assets/vue.svg
Normal file
@ -0,0 +1 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="37.07" height="36" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 198"><path fill="#41B883" d="M204.8 0H256L128 220.8L0 0h97.92L128 51.2L157.44 0h47.36Z"></path><path fill="#41B883" d="m0 0l128 220.8L256 0h-51.2L128 132.48L50.56 0H0Z"></path><path fill="#35495E" d="M50.56 0L128 133.12L204.8 0h-47.36L128 51.2L97.92 0H50.56Z"></path></svg>
|
After Width: | Height: | Size: 496 B |
133
src/components/common/Scoring.vue
Normal file
133
src/components/common/Scoring.vue
Normal file
@ -0,0 +1,133 @@
|
|||||||
|
<template>
|
||||||
|
<n-form label-placement="left" label-width="auto" :model="form">
|
||||||
|
<n-form-item label="分值*" path="scroe.value">
|
||||||
|
<n-input-number v-model:value="form.score.value" placeholder="输入分值" :max="form.score.maxValue"
|
||||||
|
:min="form.score.minValue"/>
|
||||||
|
</n-form-item>
|
||||||
|
<n-form-item label="分值原因*" path="score.reason">
|
||||||
|
<n-input type="textarea" v-model:value="form.score.reason" placeholder="输入分值原因" @keydown.enter.prevent />
|
||||||
|
</n-form-item>
|
||||||
|
<n-space>
|
||||||
|
<n-form-item label="填报人*" path="score.userName">
|
||||||
|
<n-input v-model:value="form.score.userName" placeholder="输入填报人" readonly />
|
||||||
|
</n-form-item>
|
||||||
|
<n-form-item label="填报日期*" path="score.date">
|
||||||
|
<n-input v-model:value="form.score.date" placeholder="输入填报日期" readonly />
|
||||||
|
</n-form-item>
|
||||||
|
</n-space>
|
||||||
|
<n-space justify="end">
|
||||||
|
<n-button type="primary" @click="onConfirmClick">确定</n-button>
|
||||||
|
</n-space>
|
||||||
|
</n-form>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
NForm,
|
||||||
|
NFormItem,
|
||||||
|
NInput,
|
||||||
|
NInputNumber,
|
||||||
|
NButton,
|
||||||
|
NSpace,
|
||||||
|
|
||||||
|
useMessage
|
||||||
|
} from 'naive-ui'
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'Scroing',
|
||||||
|
components: {
|
||||||
|
NForm,
|
||||||
|
NFormItem,
|
||||||
|
NInput,
|
||||||
|
NInputNumber,
|
||||||
|
NButton,
|
||||||
|
NSpace,
|
||||||
|
},
|
||||||
|
props: {
|
||||||
|
rowKey: {
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
rowIndex: {
|
||||||
|
required: true
|
||||||
|
},
|
||||||
|
score: {
|
||||||
|
required: false,
|
||||||
|
default: 0
|
||||||
|
},
|
||||||
|
reason: {
|
||||||
|
required: false,
|
||||||
|
},
|
||||||
|
minScore: {
|
||||||
|
required: false,
|
||||||
|
default: 0
|
||||||
|
},
|
||||||
|
maxScore: {
|
||||||
|
required: false,
|
||||||
|
default: 100
|
||||||
|
}
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
let vueSelf = this;
|
||||||
|
console.log(vueSelf.maxScore)
|
||||||
|
return {
|
||||||
|
message: useMessage(),
|
||||||
|
form: {
|
||||||
|
score: {
|
||||||
|
value: vueSelf.score,
|
||||||
|
maxValue: vueSelf.maxScore,
|
||||||
|
minValue: vueSelf.minScore,
|
||||||
|
reason: vueSelf.reason,
|
||||||
|
userId: '1',
|
||||||
|
userName: '管理员',
|
||||||
|
date: ''
|
||||||
|
},
|
||||||
|
},
|
||||||
|
rules: {
|
||||||
|
scroe: {
|
||||||
|
value: [
|
||||||
|
{
|
||||||
|
required: true,
|
||||||
|
message: '请输入分值'
|
||||||
|
}
|
||||||
|
],
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
onConfirmClick() {
|
||||||
|
if(this.form.score.value === null) {
|
||||||
|
this.message.error('请输入分值')
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if(!this.form.score.reason) {
|
||||||
|
this.message.error('请输入分值原因')
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.$emit('confirm', this.rowKey, this.rowIndex, {
|
||||||
|
score: this.form.score.value,
|
||||||
|
reason: this.form.score.reason,
|
||||||
|
userId: this.form.score.userId,
|
||||||
|
userName: this.form.score.userName,
|
||||||
|
date: this.form.score.date,
|
||||||
|
});
|
||||||
|
},
|
||||||
|
getCurrentDate() {
|
||||||
|
let date = new Date();
|
||||||
|
let year = date.getFullYear();
|
||||||
|
let month = date.getMonth() + 1;
|
||||||
|
month = month < 10 ? `0${month}` : month;
|
||||||
|
let day = date.getDay();
|
||||||
|
day = day < 10 ? `0${day}` : day;
|
||||||
|
return `${year}-${month}-${day}`;
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.form.score.date = this.getCurrentDate()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
|
||||||
|
</style>
|
85
src/components/common/WgyReportDay.vue
Normal file
85
src/components/common/WgyReportDay.vue
Normal file
@ -0,0 +1,85 @@
|
|||||||
|
<template>
|
||||||
|
<n-space vertical>
|
||||||
|
<n-data-table
|
||||||
|
size="small"
|
||||||
|
:columns="table.columns"
|
||||||
|
:data="table.data"
|
||||||
|
:max-height="400"
|
||||||
|
:single-line="false"/>
|
||||||
|
</n-space>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
} from 'naive-ui';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'WgyReportDay',
|
||||||
|
components: {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
let vueSelf = this;
|
||||||
|
return {
|
||||||
|
table: {
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '张三2023年1月周分明细表',
|
||||||
|
key: 'title',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '月',
|
||||||
|
key: 'month',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '日',
|
||||||
|
key: 'day',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '星期',
|
||||||
|
key: 'week',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '备注',
|
||||||
|
key: 'remark',
|
||||||
|
width: 100,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
data: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
let data = [];
|
||||||
|
for(var i = 0; i < 100; i++) {
|
||||||
|
data.push({
|
||||||
|
month: 12,
|
||||||
|
day: 1,
|
||||||
|
week: '星期日',
|
||||||
|
remark: '123'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.table.data = data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
|
||||||
|
</style>
|
105
src/components/common/WgyWork copy.vue
Normal file
105
src/components/common/WgyWork copy.vue
Normal file
@ -0,0 +1,105 @@
|
|||||||
|
<template>
|
||||||
|
<n-space vertical>
|
||||||
|
<n-data-table
|
||||||
|
size="small"
|
||||||
|
:columns="table.columns"
|
||||||
|
:data="table.data"
|
||||||
|
:max-height="400"
|
||||||
|
:single-line="false"/>
|
||||||
|
</n-space>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
} from 'naive-ui';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'WgyWork',
|
||||||
|
components: {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
let vueSelf = this;
|
||||||
|
return {
|
||||||
|
table: {
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '张三2023年1月考勤得分明细表',
|
||||||
|
key: 'title',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '月',
|
||||||
|
key: 'month',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '日',
|
||||||
|
key: 'day',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '签到',
|
||||||
|
key: 'signIn',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '签退',
|
||||||
|
key: 'signOut',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '轨迹',
|
||||||
|
key: 'distance',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '总分',
|
||||||
|
key: 'score',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '备注',
|
||||||
|
key: 'remark',
|
||||||
|
width: 100,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
data: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
let data = [];
|
||||||
|
for(var i = 0; i < 100; i++) {
|
||||||
|
data.push({
|
||||||
|
month: 12,
|
||||||
|
day: 1,
|
||||||
|
signIn: 1,
|
||||||
|
signOut: 1,
|
||||||
|
distance: 1,
|
||||||
|
remark: '123'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.table.data = data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
|
||||||
|
</style>
|
117
src/components/common/WgyWork.vue
Normal file
117
src/components/common/WgyWork.vue
Normal file
@ -0,0 +1,117 @@
|
|||||||
|
<template>
|
||||||
|
<n-space vertical>
|
||||||
|
<n-data-table
|
||||||
|
size="small"
|
||||||
|
:columns="table.columns"
|
||||||
|
:data="table.data"
|
||||||
|
:max-height="400"
|
||||||
|
:single-line="false"/>
|
||||||
|
</n-space>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
import {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
} from 'naive-ui';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
name: 'WgyWork',
|
||||||
|
components: {
|
||||||
|
NSpace,
|
||||||
|
NDataTable,
|
||||||
|
},
|
||||||
|
data() {
|
||||||
|
let vueSelf = this;
|
||||||
|
return {
|
||||||
|
table: {
|
||||||
|
columns: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '张三2023年1月考勤得分明细表',
|
||||||
|
key: 'title',
|
||||||
|
children: [
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '月',
|
||||||
|
key: 'month',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '日',
|
||||||
|
key: 'day',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '签到',
|
||||||
|
key: 'signIn',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '是否迟到',
|
||||||
|
key: 'isLate',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '签退',
|
||||||
|
key: 'signOut',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '是否早退',
|
||||||
|
key: 'isEarly',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '轨迹',
|
||||||
|
key: 'distance',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '总分',
|
||||||
|
key: 'score',
|
||||||
|
width: 60,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
align: 'center',
|
||||||
|
title: '备注',
|
||||||
|
key: 'remark',
|
||||||
|
width: 100,
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
],
|
||||||
|
data: []
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
methods: {
|
||||||
|
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
let data = [];
|
||||||
|
for(var i = 0; i < 100; i++) {
|
||||||
|
data.push({
|
||||||
|
month: 12,
|
||||||
|
day: 1,
|
||||||
|
signIn: 1,
|
||||||
|
signOut: 1,
|
||||||
|
distance: 1,
|
||||||
|
remark: '123'
|
||||||
|
})
|
||||||
|
}
|
||||||
|
this.table.data = data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<style lang="stylus" scoped>
|
||||||
|
|
||||||
|
</style>
|
1001
src/components/wgy/Wgy.vue
Normal file
1001
src/components/wgy/Wgy.vue
Normal file
File diff suppressed because it is too large
Load Diff
5
src/main.js
Normal file
5
src/main.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
import { createApp } from 'vue'
|
||||||
|
import './style.css'
|
||||||
|
import App from './App.vue'
|
||||||
|
|
||||||
|
createApp(App).mount('#app')
|
35
src/style.css
Normal file
35
src/style.css
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
:root {
|
||||||
|
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
||||||
|
line-height: 1.5;
|
||||||
|
font-weight: 400;
|
||||||
|
|
||||||
|
color-scheme: light dark;
|
||||||
|
color: rgba(255, 255, 255, 0.87);
|
||||||
|
background-color: #242424;
|
||||||
|
|
||||||
|
font-synthesis: none;
|
||||||
|
text-rendering: optimizeLegibility;
|
||||||
|
-webkit-font-smoothing: antialiased;
|
||||||
|
-moz-osx-font-smoothing: grayscale;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
html, body {
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
margin: 0;
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: light) {
|
||||||
|
:root {
|
||||||
|
color: #213547;
|
||||||
|
background-color: #ffffff;
|
||||||
|
}
|
||||||
|
a:hover {
|
||||||
|
color: #747bff;
|
||||||
|
}
|
||||||
|
button {
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
}
|
||||||
|
}
|
7
vite.config.js
Normal file
7
vite.config.js
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
import { defineConfig } from 'vite'
|
||||||
|
import vue from '@vitejs/plugin-vue'
|
||||||
|
|
||||||
|
// https://vitejs.dev/config/
|
||||||
|
export default defineConfig({
|
||||||
|
plugins: [vue()],
|
||||||
|
})
|
Loading…
Reference in New Issue
Block a user