yxk-20260520-党委会:新增议题序号字段

序号自动生成,明确生成逻辑(先选日期再选议题),20260520-1
This commit is contained in:
ye1023
2026-05-20 10:14:41 +08:00
parent 48f3d5fb37
commit 19d8d19bb5
7 changed files with 187 additions and 58 deletions
@@ -64,7 +64,7 @@
//办理
const [registerHandleModal, { openModal: openHandleModal }] = useModal();
async function handleProcess(record) {
debugger
//debugger
let { formData, formUrl } = await getTaskNodeInfo(record);
formData['PROCESS_TAB_TYPE'] = 'run';
openHandleModal(true, {
@@ -64,7 +64,7 @@ export function useTaskList(type) {
*/
async function getTaskNodeInfo(record) {
//查询条件
debugger;
// debugger;
let params = { taskId: record.id };
const result = await taskNodeInfo(type, params);
console.log('获取流程节点信息', result);
@@ -8,7 +8,7 @@ export const columns: BasicColumn[] = [
title: '#',
dataIndex: '',
key: 'rowIndex',
width: 60,
width: 30,
align: 'center',
customRender: function ({ index }) {
return parseInt(index) + 1;
@@ -17,7 +17,7 @@ export const columns: BasicColumn[] = [
{
title: '节点名称',
align: 'center',
width: 120,
width: 140,
dataIndex: 'processNodeName',
},
{
@@ -30,14 +30,14 @@ export const columns: BasicColumn[] = [
title: 'PC表单地址',
align: 'center',
dataIndex: 'modelAndView',
width: 240,
width: 400,
ellipsis: true,
},
{
title: '移动表单地址',
align: 'center',
dataIndex: 'modelAndViewMobile',
width: 240,
width: 30,
ellipsis: true,
},
{