|
@@ -3,8 +3,8 @@
|
|
|
<PageWrapper contentBackground>
|
|
|
<template #footer>
|
|
|
<a-tabs v-model:activeKey="tableType" @change="changeTable">
|
|
|
- <Tabs.TabPane :key="1" tab="案件管理" :disabled="loading" />
|
|
|
- <Tabs.TabPane :key="2" tab="案件共享" :disabled="loading" />
|
|
|
+ <Tabs.TabPane :key="0" tab="案件管理" :disabled="loading" />
|
|
|
+ <Tabs.TabPane :key="1" tab="案件共享" :disabled="loading" />
|
|
|
</a-tabs
|
|
|
></template>
|
|
|
<div class="desc-wrap-BasicTable">
|
|
@@ -149,7 +149,7 @@
|
|
|
const permissionStore = usePermissionStore();
|
|
|
const { getCheckPerm } = permissionStore;
|
|
|
const loading = ref(false);
|
|
|
- const tableType = ref<Recordable>(1); //0看看 、1看见、2深时
|
|
|
+ const tableType = ref<Recordable>(0); //0看看 、1看见、2深时
|
|
|
const columns: BasicColumn[] = [
|
|
|
{
|
|
|
title: '场景标题',
|
|
@@ -313,7 +313,7 @@
|
|
|
title: ``,
|
|
|
// titleHelpMessage: ['已启用expandRowByClick', '已启用stopButtonPropagation'],
|
|
|
columns: columns,
|
|
|
- searchInfo: { type: tableType },
|
|
|
+ searchInfo: { isShare: tableType },
|
|
|
useSearchForm: true,
|
|
|
formConfig: searchForm,
|
|
|
showIndexColumn: false,
|
|
@@ -332,7 +332,7 @@
|
|
|
sizeField: 'pageSize',
|
|
|
listField: 'list',
|
|
|
totalField: 'total',
|
|
|
- },
|
|
|
+ },
|
|
|
canResize: true,
|
|
|
});
|
|
|
function changeTable(val: string) {
|