You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
88 lines
2.4 KiB
88 lines
2.4 KiB
<template>
|
|
<PageWrapper dense>
|
|
<BasicTable @register="registerTable">
|
|
<template #toolbar>
|
|
<a-button type="primary" @click="showFaultModal">故障上报</a-button>
|
|
</template>
|
|
<template #bodyCell="{ column, record }">
|
|
<template v-if="column && record && column.key === 'action'">
|
|
<a-button type="link" @click="showSendModal(record.id)">派遣</a-button>
|
|
<a-button type="link" @click="showDrawer(record.id)">详情</a-button>
|
|
</template>
|
|
</template>
|
|
</BasicTable>
|
|
<faultModal ref="faultModalRef" @success="reload()"/>
|
|
<detailDrawer ref="detailDrawerRef" />
|
|
<sendModal ref="sendModalRef" @success="reload()"/>
|
|
</PageWrapper>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { PageWrapper } from '@/components/Page';
|
|
import { BasicTable, useTable } from '@/components/Table';
|
|
import { list,getProjectInfo} from './api';
|
|
import { formSchemas, columns } from './data';
|
|
import faultModal from './faultModal.vue';
|
|
import detailDrawer from './detailDrawer.vue';
|
|
import sendModal from './sendModal.vue';
|
|
import { ref } from 'vue';
|
|
|
|
const [registerTable,{reload}] = useTable({
|
|
rowSelection: {
|
|
type: 'checkbox',
|
|
},
|
|
title: '工单派遣',
|
|
api: list,
|
|
showIndexColumn: true,
|
|
rowKey: 'id',
|
|
useSearchForm: true,
|
|
formConfig: {
|
|
schemas: formSchemas,
|
|
name: 'orderSend',
|
|
baseColProps: {
|
|
xs: 24,
|
|
sm: 24,
|
|
md: 24,
|
|
lg: 6,
|
|
},
|
|
},
|
|
columns: columns,
|
|
actionColumn: {
|
|
width: 200,
|
|
title: '操作',
|
|
key: 'action',
|
|
fixed: 'right',
|
|
},
|
|
});
|
|
//弹窗内容
|
|
const faultModalRef = ref();
|
|
const showFaultModal = () => {
|
|
faultModalRef.value.showModal();
|
|
};
|
|
const sendModalRef = ref()
|
|
const showSendModal = (id:any) => {
|
|
sendModalRef.value.showModal(id);
|
|
};
|
|
//详情抽屉
|
|
const detailDrawerRef = ref();
|
|
const showDrawer = (id: any) => {
|
|
detailDrawerRef.value.showDrawer(id);
|
|
};
|
|
const projectOptions = ref([]);
|
|
const getProjectOptions = async () => {
|
|
const res = await getProjectInfo();
|
|
res.forEach((i: any) => {
|
|
i.value = i.projectName;
|
|
i.label = i.projectName;
|
|
});
|
|
projectOptions.value = res;
|
|
formSchemas[0].componentProps.options = projectOptions.value;
|
|
};
|
|
const getOptions = () => {
|
|
getProjectOptions();
|
|
};
|
|
getOptions();
|
|
// 前往审批记录页面
|
|
</script>
|
|
|
|
<style scoped></style>
|
|
|