| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- <template>
- <!-- 客户资料 -->
- <div class="plan_uncommitted" :loading="loading">
- <Filter @search="updateColumn">
- <mtp-table-button class="btn-list-sticky" :buttons="addButton" @click="openComponent" />
- </Filter>
- <a-table :columns="getColumns(columns)" class="srcollYTable" :scroll="{ x: '100%', y: 'calc(100vh - 163px)' }" :pagination="false" :loading="loading" :expandedRowKeys="expandedRowKeys" :customRow="Rowclick" rowKey="key" :data-source="tableList">
- <!-- 额外的展开行 -->
- <template #expandedRowRender="{ record }">
- <mtp-table-button class="btn-list-sticky" :buttons="buttons" :record="record" @click="openComponent" />
- </template>
- <template #status="{ text }">
- <a>{{ getStatusName(text) }}</a>
- </template>
- <template #userinfotype="{ text }">
- <a>{{ getUserInfoTypeName(text) }}</a>
- </template>
- <template #attachment1="{ text, record }">
- <a>{{ text }}</a
- ><a>{{ record.attachment2 }}</a>
- </template>
- <template #cardtype="{ text }">
- <a>{{ getCardTypeEnumItemName(text) }}</a>
- </template>
- </a-table>
- <!-- 右键 -->
- <contextMenu :contextMenu="contextMenu" @cancel="closeContext" :list="buttons"> </contextMenu>
- <component :is="componentId" v-if="componentId" :selectedRow="selectedRow" @cancel="closeComponent"> </component>
- </div>
- </template>
- <script lang="ts">
- import { isPingAnOem, isQianHaiJin } from '@/common/config/projectName';
- import { EnumRouterName } from '@/common/constants/enumRouterName';
- import { ComposeTableParam, contextMenu, defineAsyncComponent, defineComponent, handleComposeTable, MtpTableButton, queryTableList, useRouteName } from '@/common/export/commonTable';
- import { getTableButton } from '@/common/setup/table/button';
- import { QueryCustomInfo } from '@/services/go/ermcp/customInfo';
- import { QueryCustomInfoType } from '@/services/go/ermcp/customInfo/interface';
- import { getUserInfoTypeName, getStatusName, getCardTypeEnumItemName } from '@/common/constants/enumsName';
- import Filter from './compoments/filterTable/index.vue';
- import { pingan_custom_column } from './setup';
- import { ColumnType } from '@/common/methods/table';
- import { getTableColumns } from '@/common/setup/table';
- export default defineComponent({
- name: EnumRouterName.plan_audit,
- components: {
- contextMenu,
- MtpTableButton,
- Filter,
- detail: defineAsyncComponent(() => import('./compoments/detail/index.vue')), // 详情
- add: defineAsyncComponent(() => import('./compoments/add/index.vue')), // 新增
- check: defineAsyncComponent(() => import('./compoments/check/index.vue')), // 审核
- delete: defineAsyncComponent(() => import('./compoments/delete/index.vue')), // 删除
- modify: defineAsyncComponent(() => import('./compoments/modify/index.vue')), // 修改
- recover: defineAsyncComponent(() => import('./compoments/recover/index.vue')), // 恢复
- disable: defineAsyncComponent(() => import('./compoments/disable/index.vue')), // 停用
- cancel: defineAsyncComponent(() => import('./compoments/cancel/index.vue')), // 撤销
- },
- setup() {
- const { isRouterName } = useRouteName();
- // 新增权限按钮
- const addButton = getTableButton(['add']);
- // 表格权限按钮
- const buttons = getTableButton(['add'], true);
- // 表格列表数据
- const { loading, tableList, queryTable } = queryTableList<QueryCustomInfoType>();
- // 获取列表数据
- const queryTableAction = () => {
- if (isRouterName('custom_checkpending')) {
- // 待审核
- queryTable(QueryCustomInfo, 2);
- } else if (isRouterName('custom_normal')) {
- // 正常
- queryTable(QueryCustomInfo, 3);
- } else if (isRouterName('custom_disabled')) {
- // 停用
- queryTable(QueryCustomInfo, 4);
- }
- };
- // 表头
- const getColumns = (columns: ColumnType[]) => {
- if (isPingAnOem()) {
- // 平安
- return pingan_custom_column();
- } else if (isQianHaiJin()) {
- // 千海金
- const { columns: result, registerColumn } = getTableColumns();
- registerColumn('table_pcweb_qhj_customer_info', []);
- return result.value;
- } else {
- return columns;
- }
- };
- // 表格通用逻辑
- const param: ComposeTableParam = {
- queryFn: queryTableAction,
- menuType: EnumRouterName.plan_audit,
- tableName: 'table_pcweb_userinfo',
- tableFilterKey: ['userinfotype', 'nickname', 'customername', 'mobile'],
- isDetail: true,
- };
- return {
- ...handleComposeTable<QueryCustomInfoType>(param),
- loading,
- tableList,
- getStatusName,
- buttons,
- addButton,
- pingan_custom_column,
- isPingAnOem,
- getUserInfoTypeName,
- getCardTypeEnumItemName,
- getColumns,
- };
- },
- });
- </script>
|