Commit abd750cd authored by 沈翠玲's avatar 沈翠玲

部分接口对接

parent 1c863f1d
import request from '@/utils/http/index';
export const saveUser = (data) => {
return request.post('/login/save', data);
};
export const getCreditPage = (params) => {
return request.get('/Credit/page', params);
};
export const getCredit = (id) => {
return request.get('/Credit/getById?id=' + id);
};
export const getTrackRecordPage = (params) => {
return request.get('/TrackRecord/page', params);
};
export const saveTrackRecord = (data) => {
return request.post('/TrackRecord/save', data);
};
<template> <template>
<div class="card content-box"> <div class="table-box">
<span class="text"> 修复审批 🍓🍇🍈🍉</span> <ProTable :config="config" :data="tabledata" :showPagination="false" :showToolBar="true">
<template #left_buttons>
<el-button type="primary">下载申请 </el-button>
<el-button type="primary">审批 </el-button>
<el-button type="primary">下载 </el-button>
<el-button type="primary">批量修复上传 </el-button>
</template>
</ProTable>
</div> </div>
</template> </template>
<script setup name="systemLog"></script> <script setup name="systemLog" lang="jsx">
import { computed } from 'vue';
import { reactive, ref } from 'vue';
const tabledata = ref([]);
const config = computed(() => {
return {
columns: [
{ type: 'checkbox', width: 50 },
{ type: 'seq', width: 50 },
{
field: 'code',
title: '联系人姓名',
search: { el: 'input', props: { clearable: true } },
},
{
field: 'code',
title: '与债权人关系',
search: { el: 'input', props: { clearable: true } },
},
{
field: 'code',
title: '号码类型',
search: { el: 'input', props: { clearable: true } },
},
],
};
});
tabledata.value = [
{ name: 'admin', code: 'admin', role: 'superadmin', num: 1 },
{ name: 'account1', code: 'account1', role: 'user', num: 1 },
{ name: 'account2', code: 'account2', role: 'user', num: 1 },
{ name: 'account3', code: 'account3', role: 'user', num: 1 },
];
</script>
...@@ -14,12 +14,12 @@ ...@@ -14,12 +14,12 @@
<el-row :gutter="20"> <el-row :gutter="20">
<el-col :span="6"> <el-col :span="6">
<el-form-item class="w-full" label="姓名:" prop="name" label-width="72px"> <el-form-item class="w-full" label="姓名:" prop="name" label-width="72px">
{{ currentAccount.people }} {{ currentDetail?.borrower?.name }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="9"> <el-col :span="9">
<el-form-item class="w-full" label="身份证号:" prop="code" label-width="85px"> <el-form-item class="w-full" label="身份证号:" prop="code" label-width="85px">
{{ currentAccount.people }} {{ currentDetail?.borrower?.idCard }}
</el-form-item> </el-form-item>
</el-col> </el-col>
<el-col :span="10"> <el-col :span="10">
...@@ -44,21 +44,11 @@ ...@@ -44,21 +44,11 @@
</el-col> </el-col>
<el-col :span="12"> <el-col :span="12">
<el-form-item class="w-full" label="修复前联系号码:" prop="role" label-width="140px"> <el-form-item class="w-full" label="修复前联系号码:" prop="role" label-width="140px">
{{ currentAccount.people }} {{ currentDetail.people }}
</el-form-item> </el-form-item>
</el-col> </el-col>
</el-row> </el-row>
</el-form> </el-form>
<div class="flex-1">
<ProTable :config="config" :data="tabledata" :showPagination="false" :showToolBar="true">
<template #left_buttons>
<el-button type="primary">下载申请 </el-button>
<el-button type="primary">审批 </el-button>
<el-button type="primary">下载 </el-button>
<el-button type="primary">批量修复上传 </el-button>
</template>
</ProTable>
</div>
</div> </div>
<template #footer> <template #footer>
<el-button type="default" @click="showModal = false">取消</el-button> <el-button type="default" @click="showModal = false">取消</el-button>
...@@ -75,30 +65,21 @@ ...@@ -75,30 +65,21 @@
const tabledata = ref([]); const tabledata = ref([]);
const showModal = ref(false); const showModal = ref(false);
const currentAccount = ref({ people: 0, case: 0, money: 0 }); const currentDetail = ref({ people: 0, case: 0, money: 0 });
const form = reactive({ const form = reactive({
name: '', name: '',
relation: '', relation: '',
}); });
const radio = ref(0);
const step = ref(0);
const onHide = () => { const onHide = () => {
currentAccount.value = { people: 0, case: 0, money: 0 }; currentDetail.value = { people: 0, case: 0, money: 0 };
}; };
const openModal = (account) => { const openModal = (account) => {
showModal.value = true; showModal.value = true;
currentAccount.value = { people: 333, case: 44, money: 1111 }; currentDetail.value = { people: 333, case: 44, money: 1111 };
step.value = 0;
radio.value = 0;
}; };
const submitForm = () => { const submitForm = () => {};
if (step.value || radio.value === 0) {
} else {
step.value = 1;
}
};
const options = [ const options = [
{ {
value: 'Option1', value: 'Option1',
......
<template>
<vxe-modal
v-model="showModal"
:title="currentInfo.title"
@hide="onHide"
height="482"
width="1003"
show-footer
esc-closable
>
<div class="w-full px-3 h-full overflow-auto flex-col flex mytable">
<template v-if="currentInfo.title === '结清减免还款' || currentInfo.title === '直接还款'">
<table style="margin-bottom: 10px" v-if="currentInfo.title === '结清减免还款'">
<tr>
<td class="label">减免类型</td>
<td>结清减免</td>
<td class="label">减免申请ID</td>
<td>30</td>
<td class="label">减免申请时间</td>
<td>30</td>
</tr>
<tr>
<td class="label">减免金额(总计)</td>
<td>johndoe@example.com</td>
<td class="label">减免案件数</td>
<td>johndoe@example.com</td>
<td class="label">减免生效时间</td>
<td>johndoe@example.com</td>
</tr>
<tr>
<td class="label">应还金额</td>
<td colspan="5">John Doe</td>
</tr>
<!-- Add more rows as needed -->
</table>
<table style="margin-bottom: 10px" v-else>
<tr>
<td class="label">案件ID</td>
<td>1111</td>
<td class="label">借款平台</td>
<td>30</td>
<td class="label">资管公司</td>
<td>30</td>
</tr>
<tr>
<td class="label">委案金额</td>
<td>johndoe@example.com</td>
<td class="label">累计减免金额</td>
<td>johndoe@example.com</td>
<td class="label">分期生效时间</td>
<td>johndoe@example.com</td>
</tr>
<tr>
<td class="label">剩余待还金额</td>
<td>John Doe</td>
<td class="label">累计还款金额</td>
<td colspan="3">John Doe</td>
</tr>
<!-- Add more rows as needed -->
</table>
<div>
<el-form ref="formRef" inline :model="form" :rules="rules" label-width="110px">
<el-row>
<el-col :span="8">
<el-form-item class="w-full" label="实际还款金额:" prop="name">
<div>
<el-input v-model="form.name" placeholder="请输入" style="width: 100%" />
<div class="text-red-500">*金额必须等于应还金额</div>
</div>
</el-form-item>
</el-col>
<el-col :span="8">
<el-form-item class="w-full" label="实际还款时间:" prop="name">
<el-date-picker
v-model="form.datetime"
class="w-full"
format="YYYY-MM-DD HH:mm:ss"
type="datetime"
/>
</el-form-item>
</el-col>
<el-col :span="8" v-if="currentInfo.title === '结清减免还款'">
<el-form-item class="w-full" label="付款凭证:" prop="name">
<el-upload
v-model:file-list="form.files"
:action="url"
list-type="picture-card"
class="mypicture"
:on-success="handleFileSuccess"
:auto-upload="true"
:on-remove="handleRemove"
>
<div class="text-center">
<el-icon><Plus /></el-icon>
<div>付款相关附件</div>
</div>
</el-upload>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
</template>
<template v-if="currentInfo.title === '分期还款'">
<table style="margin-bottom: 10px">
<tr>
<td class="label">分期申请ID</td>
<td>1111</td>
<td class="label">还款总额</td>
<td>30</td>
<td class="label">分期申请时间</td>
<td>30</td>
</tr>
<tr>
<td class="label">还款期数</td>
<td>johndoe@example.com</td>
<td class="label">首期还款日</td>
<td>johndoe@example.com</td>
<td class="label">分期生效时间</td>
<td>johndoe@example.com</td>
</tr>
<tr>
<td class="label">期次</td>
<td>111</td>
<td class="label">期次还款到期日</td>
<td colspan="3">John Doe</td>
</tr>
<tr>
<td class="label">期次应还金额</td>
<td>111</td>
<td class="label">期次还款状态</td>
<td colspan="3">John Doe</td>
</tr>
</table>
<div class="flex">
<div class="w-2/5 pr-11">
<el-form ref="formRef" inline :model="form" :rules="rules" label-width="110px">
<el-row>
<el-col :span="24">
<el-form-item class="w-full" label="实际还款时间:" prop="name">
<el-date-picker
v-model="form.datetime"
class="w-full"
format="YYYY-MM-DD HH:mm:ss"
type="datetime"
/>
</el-form-item>
</el-col>
<el-col :span="24">
<el-form-item class="w-full" label="实际还款金额:" prop="name">
<div class="w-full">
<el-input v-model="form.name" placeholder="请输入" class="w-full" />
<div class="text-red-500">*金额必须等于应还金额</div>
</div>
</el-form-item>
</el-col>
</el-row>
</el-form>
</div>
<div class="w-3/5">
<ProTable
:config="config"
:data="tabledata"
:showPagination="false"
:showToolBar="false"
/>
</div>
</div>
</template>
</div>
<template #footer>
<el-button type="default" @click="showModal = false">取消</el-button>
<el-button type="primary" @click="submitForm">确定</el-button>
</template>
</vxe-modal>
</template>
<script setup lang="jsx" name="allocationModal">
import { computed } from 'vue';
import dayjs from 'dayjs';
import { reactive, ref } from 'vue';
import { getAppEnvConfig } from '@/utils/env';
const envs = getAppEnvConfig();
const data = ref([]);
const mytransfer = ref();
const tabledata = ref([]);
const url = envs.VITE_GLOB_API_URL_PREFIX + '/sys/upload';
const showModal = ref(false);
const currentInfo = ref({ title: '结清减免还款', case: 0, money: 0 });
const form = reactive({
name: '',
files: [],
datetime: dayjs().format('YYYY-MM-DD HH:mm:ss'),
});
const radio = ref(0);
const step = ref(0);
const onHide = () => {
currentInfo.value = { title: '结清减免还款', case: 0, money: 0 };
};
const openModal = (account) => {
showModal.value = true;
currentInfo.value = { title: '分期还款', case: 44, money: 1111 };
step.value = 0;
radio.value = 0;
};
const submitForm = () => {
if (step.value || radio.value === 0) {
} else {
step.value = 1;
}
};
const handleRemove = (uploadFile, uploadFiles) => {
console.log(uploadFile, uploadFiles);
};
const handlePictureCardPreview = (uploadFile) => {
dialogImageUrl.value = uploadFile.url;
dialogVisible.value = true;
};
const options = [
{
value: 'Option1',
label: 'Option1',
},
{
value: 'Option2',
label: 'Option2',
},
{
value: 'Option3',
label: 'Option3',
},
{
value: 'Option4',
label: 'Option4',
},
{
value: 'Option5',
label: 'Option5',
},
];
const handleFileSuccess = (response, file, fileList) => {
console.log('888877', response, file, fileList);
};
const config = computed(() => {
return {
toolbarConfig: { enabled: false },
columns: [
{
field: 'code',
title: '案件ID',
},
{
field: 'code',
title: '借款机构',
},
{
field: 'code',
title: '剩余待还金额',
},
],
};
});
tabledata.value = [
{ name: 'admin', code: 'admin', role: 'superadmin', num: 1 },
{ name: 'account1', code: 'account1', role: 'user', num: 1 },
{ name: 'account2', code: 'account2', role: 'user', num: 1 },
{ name: 'account3', code: 'account3', role: 'user', num: 1 },
];
defineExpose({
openModal,
});
</script>
<style lang="scss" scoped>
.box-title {
font-weight: 600;
font-size: 18px;
color: #000000;
line-height: 45px;
border-bottom: 1px solid rgba(0, 0, 0, 0.06);
margin-bottom: 10px;
}
.mytable {
.el-form-item {
margin-right: 0;
}
table {
width: 100%;
border-collapse: collapse;
}
td {
border: 1px solid rgba(5, 5, 5, 0.06);
background: #fff;
padding: 8px;
width: 240px;
&.label {
width: 160px;
background: #f5f7f9;
}
}
}
.mypicture {
:deep(.el-upload--picture-card) {
width: 100px;
height: 100px;
}
}
</style>
This diff is collapsed.
<template> <template>
<div class="card content-box"> <div class="card content-box">
<div class="table-inner"> <div class="table-inner">
<ProTable :config="config" :data="data" ref="caseLRef"> <ProTable :config="config" ref="caseLRef" :api="getCreditPage">
<template #table_top> <!-- <ProTable :config="config" ref="caseLRef" :data="data"> -->
<!-- <template #table_top>
<div class="topgrp"> <div class="topgrp">
<div class="topbox"> <div class="topbox">
<div class="topinner"> <div class="topinner">
...@@ -11,105 +12,145 @@ ...@@ -11,105 +12,145 @@
</div> </div>
</div> </div>
</div> </div>
</template> </template> -->
</ProTable> </ProTable>
</div> </div>
<caseModal ref="caseModalRef" /> <caseModal ref="caseModalRef" />
</div> </div>
</template> </template>
<script setup name="case-manage"> <script setup name="case-manage" lang="jsx">
import caseModal from './components/caseModal.vue'; import caseModal from './components/caseModal.vue';
import { useRouter } from 'vue-router'; import { useRouter } from 'vue-router';
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import { getCreditPage } from '@/api/property';
const caseModalRef = ref(); const caseModalRef = ref();
const caseLRef = ref(); const caseLRef = ref();
import { onMounted } from 'vue';
const router = useRouter(); const router = useRouter();
const options = ref([]); const options = ref([]);
const onCellClick = ({ row, rowIndex }) => { const onCellClick = ({ row, rowIndex }) => {
let obj = JSON.stringify(row);
router.push({ router.push({
path: '/property/case-detail', path: '/property/case-detail',
query: { item: obj }, //这里不能直接写成 query: JSON.stringify(item) query: { id: row.id }, //这里不能直接写成 query: JSON.stringify(item)
}); });
}; };
const config = reactive({ const config = reactive({
columns: [ columns: [
{ field: 'name', title: '案件ID', search: { el: 'input' } }, { field: 'id', title: '案件ID', search: { el: 'input' }, width: 80 },
{ {
field: 'code', field: 'code',
title: '借款机构', title: '借款机构',
width: 100,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'code', field: 'code',
title: '资管公司', title: '资管公司',
width: 100,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '借款人姓名', title: '借款人姓名',
search: { el: 'input', props: { clearable: true } }, width: 120,
search: {
el: 'input',
props: { clearable: true },
slots: {
default: ({ row }) => {
return <>{row?.borrower?.name}</>;
},
},
},
}, },
{ {
field: 'role', field: 'role',
title: '身份证', title: '身份证',
search: { el: 'input', props: { clearable: true } }, width: 140,
search: {
el: 'input',
props: { clearable: true },
slots: {
default: ({ row }) => {
return <>{row?.borrower?.idCard}</>;
},
},
},
}, },
{ {
field: 'role', field: 'role',
title: '手机号', title: '手机号',
search: { el: 'input', props: { clearable: true } }, width: 140,
}, search: {
{ el: 'input',
field: 'role', props: { clearable: true },
slots: {
default: ({ row }) => {
return <>{row?.borrower?.phone}</>;
},
},
},
},
{
field: 'loanAmount',
title: '委案金额', title: '委案金额',
width: 80,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '累计还款金额', title: '累计还款金额',
width: 110,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '累计减免金额', title: '累计减免金额',
width: 110,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '剩余待还金额', title: '剩余待还金额',
width: 110,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: 'CPE', title: 'CPE',
width: 80,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '分配CPE日期', title: '分配CPE日期',
width: 110,
search: { el: 'date-picker', props: { type: 'date', valueFormat: 'YYYY-MM-DD' } }, search: { el: 'date-picker', props: { type: 'date', valueFormat: 'YYYY-MM-DD' } },
}, },
{ {
field: 'role', field: 'principalBalance',
title: '本金余额', title: '本金余额',
width: 80,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'debitInterest',
title: '欠息额', title: '欠息额',
width: 80,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'commission',
title: '手续费', title: '手续费',
width: 80,
search: { el: 'input', props: { clearable: true } }, search: { el: 'input', props: { clearable: true } },
}, },
{ {
field: 'role', field: 'role',
title: '跟进结果', title: '跟进结果',
width: 80,
enum: options, enum: options,
search: { el: 'select', props: { filterable: true }, span: 1 }, search: { el: 'select', props: { filterable: true }, span: 1 },
fieldNames: { label: 'genderLabel', value: 'genderValue' }, fieldNames: { label: 'genderLabel', value: 'genderValue' },
...@@ -117,13 +158,15 @@ ...@@ -117,13 +158,15 @@
{ {
field: 'role', field: 'role',
title: '跟进状态', title: '跟进状态',
width: 80,
enum: options, enum: options,
search: { el: 'select', props: { filterable: true }, span: 1 }, search: { el: 'select', props: { filterable: true }, span: 1 },
fieldNames: { label: 'genderLabel', value: 'genderValue' }, fieldNames: { label: 'genderLabel', value: 'genderValue' },
}, },
{ {
field: 'role', field: 'creditStatus',
title: '案件状态', title: '案件状态',
width: 80,
enum: options, enum: options,
search: { el: 'select', props: { filterable: true }, span: 1 }, search: { el: 'select', props: { filterable: true }, span: 1 },
fieldNames: { label: 'genderLabel', value: 'genderValue' }, fieldNames: { label: 'genderLabel', value: 'genderValue' },
...@@ -141,12 +184,11 @@ ...@@ -141,12 +184,11 @@
console.log('111', caseLRef.value.element.getCheckboxRecords()); console.log('111', caseLRef.value.element.getCheckboxRecords());
caseModalRef.value.openModal(JSON.parse(JSON.stringify(row))); caseModalRef.value.openModal(JSON.parse(JSON.stringify(row)));
}; };
const data = [ const query = () => caseLRef.value?.search();
{ name: 'admin', code: 'admin', role: 'superadmin' },
{ name: 'account1', code: 'account1', role: 'user' }, onMounted(() => {
{ name: 'account2', code: 'account2', role: 'user' }, query();
{ name: 'account3', code: 'account3', role: 'user' }, });
];
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
.table-inner { .table-inner {
......
<template> <template>
<div class="table-box"> <div class="table-box">
<div class="card flex mb-2"> <div class="card flex mb-2">
<div class="flex-1"> <div class="flex-1 pr-3">
<div class="mb-1">1、上传文件</div> <div class="mb-1">1、上传文件</div>
<div> <div>
<el-upload <el-upload
...@@ -12,7 +12,8 @@ ...@@ -12,7 +12,8 @@
accept=".xls, .xlsx" accept=".xls, .xlsx"
:limit="1" :limit="1"
:on-success="handleFileSuccess" :on-success="handleFileSuccess"
:auto-upload="false" :on-remove="handleRemove"
:auto-upload="true"
:on-progress="uploadVideoProcess" :on-progress="uploadVideoProcess"
> >
<el-button type="primary" plain :icon="Upload">上传文件</el-button> <el-button type="primary" plain :icon="Upload">上传文件</el-button>
...@@ -27,7 +28,7 @@ ...@@ -27,7 +28,7 @@
<div class="mb-1">2、检查数据</div> <div class="mb-1">2、检查数据</div>
<div> <div>
<div class="flex items-center"> <div class="flex items-center">
<el-button type="danger">检查</el-button> <el-button type="danger" :disabled="!form.path" @click="checkData">检查</el-button>
<span class="ml-2"> 通过 </span> <span class="ml-2"> 通过 </span>
</div> </div>
<!-- 进度条 --> <!-- 进度条 -->
...@@ -53,16 +54,16 @@ ...@@ -53,16 +54,16 @@
</el-select> </el-select>
</el-form-item> </el-form-item>
</el-form> </el-form>
<el-button type="primary">上传</el-button> <el-button type="primary" @click="submitData">上传</el-button>
</div> </div>
</div> </div>
</div> </div>
<div> <div>
<ProTable :config="config" :data="data"> <ProTable :config="config" :data="data">
<!-- 表格 header 按钮 --> <!-- 表格 header 按钮 -->
<template #left_buttons> <!-- <template #left_buttons>
<el-button type="primary">新增菜单 </el-button> <el-button type="primary">新增菜单 </el-button>
</template> </template> -->
</ProTable> </ProTable>
</div> </div>
<caseDetailModal ref="caseDetailModalRef" /> <caseDetailModal ref="caseDetailModalRef" />
...@@ -70,11 +71,14 @@ ...@@ -70,11 +71,14 @@
</template> </template>
<script setup lang="jsx" name="import"> <script setup lang="jsx" name="import">
import { getAppEnvConfig } from '@/utils/env';
import caseDetailModal from './components/caseDetailModal.vue'; import caseDetailModal from './components/caseDetailModal.vue';
import { reactive, ref } from 'vue'; import { reactive, ref } from 'vue';
import { computed } from 'vue';
import { ElButton } from 'element-plus'; import { ElButton } from 'element-plus';
import { Upload, Delete } from '@element-plus/icons-vue'; import { Upload, Delete } from '@element-plus/icons-vue';
const envs = getAppEnvConfig();
const progressFlag = ref(false); const progressFlag = ref(false);
const proTable = ref(undefined); const proTable = ref(undefined);
const options = ref([]); const options = ref([]);
...@@ -171,25 +175,31 @@ ...@@ -171,25 +175,31 @@
], ],
}); });
const form = reactive({ const form = reactive({
name: '', path: '',
code: '', code: '',
role: '', role: '',
}); });
const upload = reactive({ const upload = reactive({
// 是否禁用上传 // 是否禁用上传
isUploading: false, isUploading: false,
// 设置上传的请求头部
// headers: { Authorization: "Bearer " + getToken() },
headers: {},
// 上传的地址 // 上传的地址
url: '/mes/dv/machinery/importData', url: envs.VITE_GLOB_API_URL_PREFIX + '/sys/upload',
}); });
console.log('upload', upload);
const uploadVideoProcess = (event, file, fileList) => { const uploadVideoProcess = (event, file, fileList) => {
upload.isUploading = true; upload.isUploading = true;
}; };
const checkData = () => {};
const submitData = () => {
uploadRef.value.clearFiles();
form.path = '';
};
const handleFileSuccess = (response, file, fileList) => { const handleFileSuccess = (response, file, fileList) => {
form.path = response.message;
upload.isUploading = false; upload.isUploading = false;
uploadRef.value.clearFiles(); };
const handleRemove = () => {
form.path = '';
}; };
const linkZK = (row) => { const linkZK = (row) => {
caseDetailModalRef.value.openModal(JSON.parse(JSON.stringify(row))); caseDetailModalRef.value.openModal(JSON.parse(JSON.stringify(row)));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment