Commit 352e73d1 by Sweet Zhang

新单跟进对接

parent b3a13b17
...@@ -162,7 +162,8 @@ const searchConfig = ref([ ...@@ -162,7 +162,8 @@ const searchConfig = ref([
type: 'input', type: 'input',
prop: 'policyNo', prop: 'policyNo',
label: '保单号' label: '保单号'
}, { },
{
type: 'select', type: 'select',
prop: 'statusList', prop: 'statusList',
label: '出账状态', label: '出账状态',
...@@ -209,13 +210,13 @@ const searchConfig = ref([ ...@@ -209,13 +210,13 @@ const searchConfig = ref([
startPlaceholder: '开始时间', startPlaceholder: '开始时间',
endPlaceholder: '结束时间' endPlaceholder: '结束时间'
}, },
// { {
// type: 'select', type: 'select',
// prop: 'status', prop: 'commissionStatusList',
// label: '入账状态', label: '入账状态',
// multiple: true, multiple: true,
// dictType: 'csf_expected_commission_status' dictType: 'csf_expected_commission_status'
// }, },
]) ])
// 表格操作菜单 // 表格操作菜单
const dropdownItems = [ const dropdownItems = [
...@@ -370,7 +371,7 @@ const handleQuery = async () => { ...@@ -370,7 +371,7 @@ const handleQuery = async () => {
const params = searchFormRef.value.getFormData() const params = searchFormRef.value.getFormData()
loadTableData(params) loadTableData(params)
} }
const visibleDefaultButtons = ref(['add', 'import', 'export', 'reset', 'query']) const visibleDefaultButtons = ref(['add', 'export', 'reset', 'query'])
// 按钮配置 // 按钮配置
const operationBtnList = ref([ const operationBtnList = ref([
{ {
...@@ -378,12 +379,13 @@ const operationBtnList = ref([ ...@@ -378,12 +379,13 @@ const operationBtnList = ref([
direction: 'left', direction: 'left',
label: '新增出账', label: '新增出账',
click: handleAdd click: handleAdd
}, { },
key: 'import', // {
direction: 'left', // key: 'import',
label: '导入出账', // direction: 'left',
click: handleImport // label: '导入出账',
}, // click: handleImport
// },
{ {
key: 'export', key: 'export',
direction: 'right', direction: 'right',
......
...@@ -304,6 +304,8 @@ const searchConfig = ref([ ...@@ -304,6 +304,8 @@ const searchConfig = ref([
} }
}, },
]) ])
const payRecordDialogTableVisible = ref(false) const payRecordDialogTableVisible = ref(false)
// 新增出账记录 // 新增出账记录
const addPayRecordFormModel = ref({ const addPayRecordFormModel = ref({
......
...@@ -69,9 +69,9 @@ ...@@ -69,9 +69,9 @@
{{ (row.pendingRatio || 0) + '%' }} {{ (row.pendingRatio || 0) + '%' }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="pendingPaidAmount" label="待入账金额(估)" width="160" sortable> <el-table-column prop="pendingAmount" label="待入账金额(估)" width="160" sortable>
<template #default="{ row }"> <template #default="{ row }">
{{ numberWithCommas(row.pendingPaidAmount) }} {{ numberWithCommas(row.pendingAmount) }}
</template> </template>
</el-table-column> </el-table-column>
<el-table-column prop="currency" label="入账币种" width="100" /> <el-table-column prop="currency" label="入账币种" 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