Commit 26ceefb6 authored by 沈翠玲's avatar 沈翠玲

问题清单

parent 562aea40
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
<el-button <el-button
type="primary" type="primary"
@click="audit" @click="audit"
v-permission="'send_audio'"
:disabled="!selectdList || selectdList.length === 0" :disabled="!selectdList || selectdList.length === 0"
>发起稽核</el-button >发起稽核</el-button
> >
......
...@@ -178,6 +178,14 @@ ...@@ -178,6 +178,14 @@
width: 100, width: 100,
search: { el: 'select', props: { clearable: true }, key: 'manageOrgId', labelWidth: 78 }, search: { el: 'select', props: { clearable: true }, key: 'manageOrgId', labelWidth: 78 },
}, },
{
field: 'distributeNum',
title: '分派数量',
visible: false,
showOverflow: 'tooltip',
width: 100,
search: { el: 'input', props: { clearable: true }, key: 'distributeNum', labelWidth: 78 },
},
{ {
field: 'batchCode', field: 'batchCode',
title: '导入批次', title: '导入批次',
......
...@@ -109,6 +109,7 @@ ...@@ -109,6 +109,7 @@
}; };
const paramCallback = (param) => { const paramCallback = (param) => {
const obj = JSON.parse(JSON.stringify(param)); const obj = JSON.parse(JSON.stringify(param));
obj['tenant'] = 0
if (obj.arealist && obj.arealist.length > 0) { if (obj.arealist && obj.arealist.length > 0) {
obj['domicileProvince'] = obj.arealist[0]; obj['domicileProvince'] = obj.arealist[0];
obj['domicileCity'] = obj.arealist.length > 1 ? obj.arealist[1] : null; obj['domicileCity'] = obj.arealist.length > 1 ? obj.arealist[1] : null;
......
...@@ -253,6 +253,10 @@ ...@@ -253,6 +253,10 @@
enum: FollowStatus, enum: FollowStatus,
search: { search: {
el: 'select', el: 'select',
defaultValue: [
'Claiming_not_to_be_myself',
'dead_number'
],
props: { filterable: true, multiple: true, 'collapse-tags': true }, props: { filterable: true, multiple: true, 'collapse-tags': true },
labelWidth: 78 labelWidth: 78
}, },
......
...@@ -88,6 +88,7 @@ ...@@ -88,6 +88,7 @@
}; };
const paramCallback = (param) => { const paramCallback = (param) => {
const obj = JSON.parse(JSON.stringify(param)); const obj = JSON.parse(JSON.stringify(param));
obj['tenant'] = 0
if (obj.arealist && obj.arealist.length > 0) { if (obj.arealist && obj.arealist.length > 0) {
obj['domicileProvince'] = obj.arealist[0]; obj['domicileProvince'] = obj.arealist[0];
obj['domicileCity'] = obj.arealist.length > 1 ? obj.arealist[1] : null; obj['domicileCity'] = obj.arealist.length > 1 ? obj.arealist[1] : null;
......
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
<el-button <el-button
type="primary" type="primary"
@click="audit" @click="audit"
v-permission="'send_audio'"
:disabled="!selectdList || selectdList.length === 0" :disabled="!selectdList || selectdList.length === 0"
>发起稽核</el-button >发起稽核</el-button
> >
...@@ -216,7 +217,7 @@ ...@@ -216,7 +217,7 @@
}, },
}, },
enum: () => getTenantPage({ current: 1, size: 999999999, status: 'enable' }), enum: () => getTenantPage({ current: 1, size: 999999999, status: 'enable' }),
search: { el: 'select', props: { filterable: true }, key: 'tenant', labelWidth: 78 }, search: { el: 'select', props: { filterable: true }, key: 'tenantId', labelWidth: 78 },
fieldNames: { label: 'name', value: 'id' }, fieldNames: { label: 'name', value: 'id' },
title: '调解中心', title: '调解中心',
width: 100, width: 100,
......
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