Commit 7fcd7431 authored by 沈翠玲's avatar 沈翠玲

修复申请

parent a5f9f552
...@@ -100,3 +100,7 @@ export const importExcel = (params) => { ...@@ -100,3 +100,7 @@ export const importExcel = (params) => {
export const RepairRecordStatusByIds = (params) => { export const RepairRecordStatusByIds = (params) => {
return request.get('/RepairRecord/flowStatusByIds', params); return request.get('/RepairRecord/flowStatusByIds', params);
}; };
// 发起修复
export const sendRepairRecord = (params) => {
return request.get('/RepairRecord/sendRepairRecord', params);
};
...@@ -324,5 +324,5 @@ td { ...@@ -324,5 +324,5 @@ td {
text-align: center; text-align: center;
} }
.vxe-table--tooltip-wrapper { .vxe-table--tooltip-wrapper {
z-index: 99999999; z-index: 99999999 !important;
} }
\ No newline at end of file
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
import { inject } from 'vue'; import { inject } from 'vue';
import { computed } from 'vue'; import { computed } from 'vue';
import callDrawer from './components/callDrawer.vue'; import callDrawer from './components/callDrawer.vue';
import { ElMessageBox, ElButton, ElTag } from 'element-plus'; import { ElMessageBox,ElMessage, ElButton, ElTag } from 'element-plus';
import { onMounted } from 'vue'; import { onMounted } from 'vue';
import { getAppEnvConfig } from '@/utils/env'; import { getAppEnvConfig } from '@/utils/env';
import { getTrackRecord } from '@/api/property'; import { getTrackRecord } from '@/api/property';
...@@ -476,7 +476,7 @@ ...@@ -476,7 +476,7 @@
ElMessage({ ElMessage({
type: 'success', type: 'success',
message: '稽核成功!', message: '稽核申请发起成功!',
plain: true, plain: true,
}); });
query(); query();
......
...@@ -86,6 +86,8 @@ ...@@ -86,6 +86,8 @@
param['loanIds'] = ids; param['loanIds'] = ids;
} else { } else {
param = { ...curParam.value }; param = { ...curParam.value };
delete param['current'];
delete param['size'];
} }
if (type === 'withdraw') { if (type === 'withdraw') {
await back(param); await back(param);
......
...@@ -5,9 +5,9 @@ ...@@ -5,9 +5,9 @@
</div> </div>
<div class="h-full w-full flex flex-col"> <div class="h-full w-full flex flex-col">
<div class="mt-2"> <div class="mt-2">
<el-button type="primary" @click="repair" <!-- <el-button type="primary" @click="repair"
v-permission="'repair_apply'" v-permission="'repair_apply'"
>修复申请</el-button> >修复申请</el-button> -->
<el-button type="primary" @click="reduce">减免申请</el-button> <el-button type="primary" @click="reduce">减免申请</el-button>
<el-button type="primary" @click="split">分期申请</el-button> <el-button type="primary" @click="split">分期申请</el-button>
</div> </div>
......
This diff is collapsed.
...@@ -65,6 +65,8 @@ ...@@ -65,6 +65,8 @@
param['loanIds'] = ids; param['loanIds'] = ids;
} else { } else {
param = { ...curParam.value }; param = { ...curParam.value };
delete param['current'];
delete param['size'];
} }
if (type === 'withdraw') { if (type === 'withdraw') {
await backDistribute(param); await backDistribute(param);
......
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
import { inject } from 'vue'; import { inject } from 'vue';
import { computed } from 'vue'; import { computed } from 'vue';
import callDrawer from './components/callDrawer.vue'; import callDrawer from './components/callDrawer.vue';
import { ElMessageBox, ElButton, ElTag } from 'element-plus'; import { ElMessageBox,ElMessage, ElButton, ElTag } from 'element-plus';
import { onMounted } from 'vue'; import { onMounted } from 'vue';
import { getAppEnvConfig } from '@/utils/env'; import { getAppEnvConfig } from '@/utils/env';
import { getTrackRecord } from '@/api/property'; import { getTrackRecord } from '@/api/property';
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
}, },
}, },
enum: () => getTenantPage({ current: 1, size: 999999999, status: 'enable' }), enum: () => getTenantPage({ current: 1, size: 999999999, status: 'enable' }),
search: { el: 'select', props: { filterable: true }, key: 'tenantId', labelWidth: 78 }, search: { el: 'select', props: { filterable: true }, key: 'tenant', labelWidth: 78 },
fieldNames: { label: 'name', value: 'id' }, fieldNames: { label: 'name', value: 'id' },
title: '调解中心', title: '调解中心',
width: 100, width: 100,
...@@ -476,7 +476,7 @@ ...@@ -476,7 +476,7 @@
ElMessage({ ElMessage({
type: 'success', type: 'success',
message: '稽核成功!', message: '稽核申请发起成功!',
plain: true, plain: true,
}); });
query(); query();
......
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