319 lines
10 KiB
Vue
319 lines
10 KiB
Vue
<template>
|
|
<div class="p-2">
|
|
<!--查询区域-->
|
|
<div class="jeecg-basic-table-form-container">
|
|
<a-form ref="formRef" @keyup.enter.native="reload" :model="queryParam" :label-col="labelCol" :wrapper-col="wrapperCol">
|
|
<a-row :gutter="24">
|
|
<a-col :lg="6">
|
|
<a-form-item name="proposalName">
|
|
<template #label><span title="提案名称">提案名称</span></template>
|
|
<JInput v-model:value="queryParam.proposalName"/>
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :lg="6">
|
|
<a-form-item name="proposalCategory">
|
|
<template #label><span title="提案类别">提案类别</span></template>
|
|
<JDictSelectTag v-model:value="queryParam.proposalCategory" dictCode="proposal_category" placeholder="请选择提案类别" allow-clear />
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col v-if="toggleSearchStatus" :lg="6">
|
|
<a-form-item name="bpmStatus">
|
|
<template #label><span title="业务展示状态">业务展示状态</span></template>
|
|
<JDictSelectTag v-model:value="queryParam.bpmStatus" dictCode="super_status" placeholder="请选择业务展示状态" allow-clear />
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col v-if="toggleSearchStatus" :lg="6">
|
|
<a-form-item name="proposalDeptId">
|
|
<template #label><span title="提案部门">提案部门</span></template>
|
|
<sz-select-dept v-model:value="queryParam.proposalDeptId" :multiple="false" checkStrictly allow-clear />
|
|
</a-form-item>
|
|
</a-col>
|
|
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
|
<span style="float: left; overflow: hidden" class="table-page-search-submitButtons">
|
|
<a-col :lg="6">
|
|
<a-button type="primary" preIcon="ant-design:search-outlined" @click="reload">查询</a-button>
|
|
<a-button preIcon="ant-design:reload-outlined" @click="searchReset" style="margin-left: 8px">重置</a-button>
|
|
<a @click="toggleSearchStatus = !toggleSearchStatus" style="margin-left: 8px">
|
|
{{ toggleSearchStatus ? '收起' : '展开' }}
|
|
<Icon :icon="toggleSearchStatus ? 'ant-design:up-outlined' : 'ant-design:down-outlined'" />
|
|
</a>
|
|
</a-col>
|
|
</span>
|
|
</a-col>
|
|
</a-row>
|
|
</a-form>
|
|
</div>
|
|
<!--引用表格-->
|
|
<BasicTable @register="registerTable" :rowSelection="rowSelection">
|
|
<!--插槽:table标题-->
|
|
<template #tableTitle>
|
|
<a-button type="primary" v-auth="'improvementproposal:improvement_proposal:add'" @click="handleAdd" preIcon="ant-design:plus-outlined"> 新增</a-button>
|
|
<a-button type="primary" v-auth="'improvementproposal:improvement_proposal:exportXls'" preIcon="ant-design:export-outlined" @click="onExportXls"> 导出</a-button>
|
|
<j-upload-button type="primary" v-auth="'improvementproposal:improvement_proposal:importExcel'" preIcon="ant-design:import-outlined" @click="onImportXls">导入</j-upload-button>
|
|
<a-dropdown v-if="selectedRowKeys.length > 0">
|
|
<template #overlay>
|
|
<a-menu>
|
|
<a-menu-item key="1" @click="batchHandleDelete">
|
|
<Icon icon="ant-design:delete-outlined"></Icon>
|
|
删除
|
|
</a-menu-item>
|
|
</a-menu>
|
|
</template>
|
|
<a-button v-auth="'improvementproposal:improvement_proposal:deleteBatch'">批量操作
|
|
<Icon icon="mdi:chevron-down"></Icon>
|
|
</a-button>
|
|
</a-dropdown>
|
|
<!-- 高级查询 -->
|
|
<super-query :config="superQueryConfig" @search="handleSuperQuery" />
|
|
</template>
|
|
<!--操作栏-->
|
|
<template #action="{ record }">
|
|
<TableAction :actions="getTableAction(record)" :dropDownActions="getDropDownAction(record)"/>
|
|
</template>
|
|
<!--字段回显插槽-->
|
|
<template v-slot:bodyCell="{ column, record, index, text }">
|
|
</template>
|
|
</BasicTable>
|
|
<!-- 表单区域 -->
|
|
<ImprovementProposalModal @register="registerModal" @success="handleSuccess"></ImprovementProposalModal>
|
|
<!-- 审批记录 -->
|
|
<BpmPictureModal @register="registerBpmModal" />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" name="improvementproposal-improvementProposal" setup>
|
|
import {ref, reactive} from 'vue';
|
|
import {BasicTable, useTable, TableAction} from '/@/components/Table';
|
|
import { useListPage } from '/@/hooks/system/useListPage'
|
|
import {useModal} from '/@/components/Modal';
|
|
import ImprovementProposalModal from './components/ImprovementProposalModal.vue'
|
|
import {columns, superQuerySchema} from './ImprovementProposal.data';
|
|
import {list, deleteOne, batchDelete, getImportUrl, getExportUrl, startProposalProcess} from './ImprovementProposal.api';
|
|
import {downloadFile} from '/@/utils/common/renderUtils';
|
|
import JInput from "/@/components/Form/src/jeecg/components/JInput.vue";
|
|
import JDictSelectTag from '/@/components/Form/src/jeecg/components/JDictSelectTag.vue';
|
|
import SzSelectDept from '/@/components/Form/src/jeecg/components/SzSelectDept.vue';
|
|
|
|
const [registerBpmModal, { openModal: bpmPicModal }] = useModal();
|
|
const formRef = ref();
|
|
const queryParam = reactive<any>({});
|
|
const checkedKeys = ref<Array<string | number>>([]);
|
|
//注册model
|
|
const [registerModal, {openModal}] = useModal();
|
|
//注册table数据
|
|
const { prefixCls,tableContext,onExportXls,onImportXls } = useListPage({
|
|
tableProps:{
|
|
title: 'improvement_proposal',
|
|
api: list,
|
|
columns,
|
|
canResize:false,
|
|
useSearchForm: false,
|
|
actionColumn: {
|
|
width: 120,
|
|
fixed:'right'
|
|
},
|
|
beforeFetch: async (params) => {
|
|
return Object.assign(params, queryParam);
|
|
},
|
|
},
|
|
exportConfig: {
|
|
name:"improvement_proposal",
|
|
url: getExportUrl,
|
|
params: queryParam,
|
|
},
|
|
importConfig: {
|
|
url: getImportUrl,
|
|
success: handleSuccess
|
|
},
|
|
})
|
|
|
|
const [registerTable, {reload},{ rowSelection, selectedRowKeys }] = tableContext
|
|
|
|
// 高级查询配置
|
|
const superQueryConfig = reactive(superQuerySchema);
|
|
|
|
/**
|
|
* 高级查询事件
|
|
*/
|
|
function handleSuperQuery(params) {
|
|
Object.keys(params).map((k) => {
|
|
queryParam[k] = params[k];
|
|
});
|
|
reload();
|
|
}
|
|
|
|
/**
|
|
* 新增事件
|
|
*/
|
|
function handleAdd() {
|
|
openModal(true, {
|
|
isUpdate: false,
|
|
showFooter: true,
|
|
});
|
|
}
|
|
/**
|
|
* 编辑事件
|
|
*/
|
|
function handleEdit(record: Recordable) {
|
|
openModal(true, {
|
|
record,
|
|
isUpdate: true,
|
|
showFooter: true,
|
|
});
|
|
}
|
|
/**
|
|
* 详情
|
|
*/
|
|
function handleDetail(record: Recordable) {
|
|
openModal(true, {
|
|
record,
|
|
isUpdate: true,
|
|
showFooter: false,
|
|
});
|
|
}
|
|
/**
|
|
* 删除事件
|
|
*/
|
|
async function handleDelete(record) {
|
|
await deleteOne({id: record.id}, handleSuccess);
|
|
}
|
|
/**
|
|
* 批量删除事件
|
|
*/
|
|
async function batchHandleDelete() {
|
|
await batchDelete({ids: selectedRowKeys.value},handleSuccess);
|
|
}
|
|
/**
|
|
* 成功回调
|
|
*/
|
|
function handleSuccess() {
|
|
(selectedRowKeys.value = []) && reload();
|
|
}
|
|
/**
|
|
* 操作栏
|
|
*/
|
|
function getTableAction(record){
|
|
const actions = [
|
|
{
|
|
label: '编辑',
|
|
onClick: handleEdit.bind(null, record),
|
|
auth: 'improvementproposal:improvement_proposal:edit',
|
|
ifShow: isDraft(record),
|
|
}
|
|
];
|
|
return actions;
|
|
}
|
|
/**
|
|
* 下拉操作栏
|
|
*/
|
|
function getDropDownAction(record){
|
|
const dropDownAction: any[] = [
|
|
{
|
|
label: '详情',
|
|
onClick: handleDetail.bind(null, record),
|
|
}
|
|
];
|
|
if (isDraft(record)) {
|
|
dropDownAction.push({
|
|
label: '删除',
|
|
popConfirm: {
|
|
title: '是否确认删除',
|
|
confirm: handleDelete.bind(null, record)
|
|
},
|
|
auth: 'improvementproposal:improvement_proposal:delete'
|
|
});
|
|
}
|
|
dropDownAction.push(
|
|
{
|
|
label: '审批进度',
|
|
onClick: handlePreviewPic.bind(null, record),
|
|
ifShow: !!record.bpmStatus && record.bpmStatus !== '1',
|
|
}
|
|
);
|
|
if(isDraft(record)){
|
|
dropDownAction.push({
|
|
label: '发起流程',
|
|
popConfirm: {
|
|
title: '确认提交流程吗?',
|
|
confirm: handleProcess.bind(null, record),
|
|
placement: 'topLeft',
|
|
}
|
|
})
|
|
}
|
|
return dropDownAction;
|
|
}
|
|
|
|
/**
|
|
* 提交流程
|
|
*/
|
|
async function handleProcess(record) {
|
|
await startProposalProcess(record.id);
|
|
handleSuccess();
|
|
}
|
|
|
|
/** 只有未绑定流程实例的草稿可以继续维护或发起。 */
|
|
function isDraft(record) {
|
|
return String(record?.bpmStatus || '') === '1' && !record?.processInstanceId;
|
|
}
|
|
|
|
/**
|
|
* 审批进度
|
|
*/
|
|
async function handlePreviewPic(record) {
|
|
bpmPicModal(true, {
|
|
flowCode: 'dev_improvement_proposal_001',
|
|
dataId: record.id,
|
|
});
|
|
}
|
|
|
|
|
|
|
|
/* ----------------------以下为原生查询需要添加的-------------------------- */
|
|
const toggleSearchStatus = ref<boolean>(false);
|
|
const labelCol = reactive({
|
|
xs:24,
|
|
sm:4,
|
|
xl:6,
|
|
xxl:4
|
|
});
|
|
const wrapperCol = reactive({
|
|
xs: 24,
|
|
sm: 20,
|
|
});
|
|
/**
|
|
* 重置
|
|
*/
|
|
function searchReset() {
|
|
formRef.value.resetFields();
|
|
selectedRowKeys.value = [];
|
|
//刷新数据
|
|
reload();
|
|
}
|
|
|
|
</script>
|
|
<style lang="less" scoped>
|
|
.jeecg-basic-table-form-container {
|
|
padding: 0;
|
|
.table-page-search-submitButtons {
|
|
display: block;
|
|
margin-bottom: 24px;
|
|
white-space: nowrap;
|
|
}
|
|
.query-group-cust{
|
|
min-width: 100px !important;
|
|
}
|
|
.query-group-split-cust{
|
|
width: 30px;
|
|
display: inline-block;
|
|
text-align: center
|
|
}
|
|
.ant-form-item:not(.ant-form-item-with-help){
|
|
margin-bottom: 16px;
|
|
height: 32px;
|
|
}
|
|
:deep(.ant-picker),:deep(.ant-input-number){
|
|
width: 100%;
|
|
}
|
|
}
|
|
</style>
|