123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413 |
- <template>
- <PageWrapper contentBackground>
- <template #footer>
- <a-tabs v-model:activeKey="tableType" @change="changeTable">
- <a-tab-pane :key="null" :tab="t('routes.spares.tableType.-1')" />
- <a-tab-pane :key="0" :tab="t('routes.spares.tableType.0')" />
- <a-tab-pane :key="1" :tab="t('routes.spares.tableType.1')" />
- <a-tab-pane :key="2" :tab="t('routes.spares.tableType.2')" />
- <a-tab-pane :key="3" :tab="t('routes.spares.tableType.3')" />
- <a-tab-pane :key="4" :tab="t('routes.spares.tableType.4')" />
- <a-tab-pane :key="5" :tab="t('routes.spares.tableType.5')" />
- <a-tab-pane :key="6" :tab="t('routes.spares.tableType.6')" />
- <a-tab-pane :key="7" :tab="t('routes.spares.tableType.7')" />
- <a-tab-pane :key="8" :tab="t('routes.spares.tableType.8')" />
- <a-tab-pane :key="9" :tab="t('routes.spares.tableType.9')" />
- <a-tab-pane :key="10" :tab="t('routes.spares.tableType.10')" />
- </a-tabs></template
- >
- <div class="desc-wrap-BasicTable">
- <BasicTable @register="registerTable">
- <template #action="{ record }">
- <TableAction
- stopButtonPropagation
- :actions="[
- {
- label: '详情',
- color: 'error',
- onClick: handleDetail.bind(null, record),
- },
- ]"
- />
- </template>
- </BasicTable>
- <recoveryModal @update="reload" @register="registerRecovery" />
- <!-- ifShow: getCheckPerm('device-out') && !Boolean(record.outType), -->
- </div>
- </PageWrapper>
- </template>
- <script lang="ts">
- import { defineComponent, onMounted, ref } from 'vue';
- import { PageWrapper } from '/@/components/Page';
- import {
- BasicTable,
- useTable,
- TableAction,
- BasicColumn,
- TableImg,
- FormProps,
- } from '/@/components/Table';
- import { Tabs } from 'ant-design-vue';
- import { operateSceneList } from '/@/api/operate';
- import { useI18n } from '/@/hooks/web/useI18n';
- import { usePermissionStore } from '/@/store/modules/permission';
- import recoveryModal from './recoveryModal.vue';
- import { useModal } from '/@/components/Modal';
- import { useRouter } from 'vue-router'
- import { queryList, faultAllList, getByRoleType } from '/@/api/spares';
- export default defineComponent({
- components: {
- BasicTable,
- TableAction,
- TableImg,
- recoveryModal,
- PageWrapper,
- [Tabs.name]: Tabs,
- [Tabs.TabPane.name]: Tabs.TabPane,
- },
- setup() {
- const { t } = useI18n();
- const permissionStore = usePermissionStore();
- const router = useRouter()
- const { getCheckPerm } = permissionStore;
- const tableType = ref<Recordable>(0); //0看看 、1看见、2深时
- onMounted(() => {
- // console.log(router.currentRoute.value.params.id);
- });
- const columns: BasicColumn[] = [
- {
- title: '报修日期',
- dataIndex: 'createTime',
- width: 180,
- },
- {
- title: '客户名称',
- dataIndex: 'operationType',
- width: 80,
- customRender: ({ record }) => {
- return t(`routes.equity.operation.${record.operationType || 0}`);
- },
- },
- {
- title: '产品类型',
- dataIndex: 'cameraType',
- width: 80,
- customRender: ({ record }) => {
- return t(`routes.equity.operation.${record.cameraType || 0}`);
- },
- },
- {
- title: '产品SN码',
- dataIndex: 'cameraSnCode',
- width: 100,
- },
- {
- title: '报修方式',
- dataIndex: 'receiverType',
- width: 100,
- customRender: ({ record }) => {
- return record.receiverType == 0 ? '系统录单' : '公众号报修';
- },
- },
- {
- title: '保修类型',
- dataIndex: 'warrantyType',
- width: 100,
- customRender: ({ record }) => {
- return record.warrantyType == 0 ? '保修期内' : record.warrantyType == 1 ? '保修期外' : '非保修项目';
- },
- },{
- title: '售后工程师',
- dataIndex: 'saleName',
- width: 100,
- },{
- title: '接单日期',
- dataIndex: 'createTime',
- width: 100,
- },
- {
- title: '故障分析',
- dataIndex: 'checkResult',
- width: 100,
- },
- {
- title: '维修工程师',
- dataIndex: 'repairManName',
- width: 100,
- },{
- title: '维修完成日期',
- dataIndex: 'testPassTime',
- width: 100,
- },
- {
- title: '状态',
- dataIndex: 'status',
- width: 100,
- customRender: ({ record }) => {
- return t(`routes.spares.tableType.${record.status || 0}`);
- },
- },
- {
- title: '维修单号',
- dataIndex: 'repairId',
- width: 100,
- },
- {
- title: t('common.operating'),
- dataIndex: 'action',
- slots: { customRender: 'action' },
- ifShow: true,
- fixed: 'right',
- flag: 'ACTION',
- width: 120,
- },
- ];
- const searchForm: Partial<FormProps> = {
- labelWidth: 120,
- autoAdvancedLine: 1,
- actionColOptions: {
- span: 24,
- },
- schemas: [
- {
- field: 'type',
- component: 'Select',
- label: t('routes.device.deviceType'),
- colProps: {
- span: 7,
- },
- componentProps: {
- options: [
- {
- label: '公众号保修',
- value: 0,
- key: '0',
- },{
- label: '后台录单',
- value: 1,
- key: '1',
- },
- ],
- },
- },{
- field: 'type',
- component: 'Select',
- label: t('routes.device.deviceType'),
- colProps: {
- span: 7,
- },
- componentProps: {
- options: [
- {
- label: t('routes.device.type.1'),
- value: 0,
- key: '0',
- },
- {
- label: t('routes.device.type.2'),
- value: 1,
- key: '1',
- },
- {
- label: t('routes.device.type.3'),
- value: 2,
- key: '2',
- },
- ],
- },
- },{
- field: 'cameraSnCode',
- component: 'Input',
- label: 'SN码',
- colProps: {
- span: 7,
- },
- },{
- field: 'customerName',
- component: 'Input',
- label: '客户名称',
- colProps: {
- span: 7,
- },
- },{
- field: 'warrantyType',
- component: 'Select',
- label: '保修类型',
- colProps: {
- span: 7,
- },
- componentProps: {
- options: [
- {
- label: '保修期内',
- value: 0,
- key: '0',
- },{
- label: '保修期外',
- value: 1,
- key: '1',
- },{
- label: '非保修项目',
- value: 2,
- key: '2',
- },
- ],
- },
- },{
- field: 'faultId',
- component: 'ApiSelect',
- label: '故障类型',
- componentProps: {
- maxLength: 50,
- api: faultAllList,
- numberToString: true,
- labelField: 'faultMsg',
- valueField: 'faultId',
- immediate: true,
- },
- colProps: {
- span: 7,
- },
- },{
- field: 'saleId',
- label: '售后工程师',
- component: 'ApiSelect',
- componentProps: {
- api: getByRoleType,
- numberToString: true,
- labelField: 'nickName',
- valueField: 'id',
- immediate: true,
- params: {
- roleType: 2,
- },
- },
- colProps: {
- span: 7,
- },
- },{
- field: 'repairManId',
- label: '维修工程师',
- component: 'ApiSelect',
- componentProps: {
- api: getByRoleType,
- numberToString: true,
- labelField: 'nickName',
- valueField: 'id',
- immediate: true,
- params: {
- roleType: 3,
- },
- },
- colProps: {
- span: 7,
- },
- },{
- field: 'payStatus',
- component: 'Select',
- label: '支付状态',
- colProps: {
- span: 7,
- },
- componentProps: {
- options: [
- {
- label: '待支付',
- value: 0,
- key: '0',
- },{
- label: '已支付',
- value: 1,
- key: '1',
- },
- ],
- },
- },{
- field: 'commentStatus',
- component: 'Select',
- label: '支付状态',
- colProps: {
- span: 7,
- },
- componentProps: {
- options: [
- {
- label: '未评论',
- value: 0,
- key: '0',
- },{
- label: '已评论',
- value: 1,
- key: '1',
- },
- ],
- },
- },
- {
- field: 'timeList',
- label: '报修日期',
- component: 'RangePicker',
- componentProps: {
- maxLength: 100,
- format: 'YYYY-MM-DD',
- valueFormat: 'YYYY-MM-DD',
- showTime: true,
- },
- colProps: {
- span: 7,
- },
- },
- ],
- };
- const [registerRecovery, { openModal }] = useModal();
- const [registerTable, { reload }] = useTable({
- api: queryList,
- columns: columns,
- useSearchForm: true,
- searchInfo: { status: tableType },
- formConfig: searchForm,
- showTableSetting: true,
- showIndexColumn: false,
- fetchSetting: {
- pageField: 'pageNum',
- sizeField: 'pageSize',
- listField: 'list',
- totalField: 'total',
- },
- canResize: false,
- });
- async function handleDetail(record: Recordable) {
- console.log('record', record);
- router.push({path:`detail/${record.repairId||'20230215174919387'}`})
- }
- async function handleRecover(record: Recordable) {
- openModal(true, {
- ...record,
- });
- }
- function changeTable(val: string) {
- tableType.value = val;
- reload();
- }
- return {
- registerTable,
- reload,
- t,
- tableType,
- changeTable,
- getCheckPerm,
- handleDetail,
- handleRecover,
- registerRecovery,
- };
- },
- });
- </script>
- <style lang="less" scoped>
- .desc-wrap-BasicTable {
- background-color: #f0f2f5;
- .vben-basic-table-form-container {
- padding: 0;
- }
- }
- </style>
|