|
@@ -21,7 +21,7 @@
|
|
|
<a>{{ text === 2 ? '企业' : '个人' }}</a>
|
|
<a>{{ text === 2 ? '企业' : '个人' }}</a>
|
|
|
</template>
|
|
</template>
|
|
|
<template #customername="{ record }">
|
|
<template #customername="{ record }">
|
|
|
- <a>{{ record.username }}</a>
|
|
|
|
|
|
|
+ <a>{{ record.username }}</a>
|
|
|
</template>
|
|
</template>
|
|
|
<template #status="{ text }">
|
|
<template #status="{ text }">
|
|
|
<a>{{ getStatusName(text) }}</a>
|
|
<a>{{ getStatusName(text) }}</a>
|
|
@@ -32,7 +32,7 @@
|
|
|
</a-table>
|
|
</a-table>
|
|
|
</contextMenu>
|
|
</contextMenu>
|
|
|
<Middle :selectedRow="selectedRow"
|
|
<Middle :selectedRow="selectedRow"
|
|
|
- @refresh="queryTable" />
|
|
|
|
|
|
|
+ @refresh="update" />
|
|
|
</div>
|
|
</div>
|
|
|
</template>
|
|
</template>
|
|
|
|
|
|
|
@@ -64,7 +64,7 @@ export default defineComponent({
|
|
|
const [firstBtn, secondeBtn] = _getBtnList('platinum_customer_info_unsubmit', true).value;
|
|
const [firstBtn, secondeBtn] = _getBtnList('platinum_customer_info_unsubmit', true).value;
|
|
|
// 表格列表数据
|
|
// 表格列表数据
|
|
|
const { loading, tableList, queryTable } = queryTableList();
|
|
const { loading, tableList, queryTable } = queryTableList();
|
|
|
- const { search } = handleSearch(2, queryTable);
|
|
|
|
|
|
|
+ const { search, update } = handleSearch(2, queryTable);
|
|
|
initData(() => {
|
|
initData(() => {
|
|
|
// 获取列表数据
|
|
// 获取列表数据
|
|
|
queryTable(queryCustomerInfo, { querytype: 2, userid: getUserId() });
|
|
queryTable(queryCustomerInfo, { querytype: 2, userid: getUserId() });
|
|
@@ -74,6 +74,7 @@ export default defineComponent({
|
|
|
|
|
|
|
|
return {
|
|
return {
|
|
|
columns,
|
|
columns,
|
|
|
|
|
+ update,
|
|
|
search,
|
|
search,
|
|
|
expandedRowKeys,
|
|
expandedRowKeys,
|
|
|
selectedRow,
|
|
selectedRow,
|