Merge branch 'master' into dev

This commit is contained in:
wsm
2026-06-01 16:46:14 +08:00
11 changed files with 146 additions and 70 deletions
@@ -15,7 +15,7 @@
import { list as queryApprovalOpinionList } from '/@/views/taskApprovalOpinion/TaskApprovalOpinion.api';
const approvalHistoryColumns: BasicColumn[] = [
{ title: '节点名称', dataIndex: 'taskName', width: 160, align: 'center' },
{ title: '节点名称', dataIndex: 'taskName', width: 160, align: 'left' },
{ title: '开始时间', dataIndex: 'startTime', width: 170, align: 'center' },
{ title: '办理时间', dataIndex: 'opTime', width: 170, align: 'center' },
{
@@ -50,7 +50,7 @@ export const columns: BasicColumn[] = [
{
title: '事项截止时间',
align: 'center',
width: 120,
width: 180,
dataIndex: 'deadline',
customRender: ({ text, record }) => {
const value = !text ? '' : text.length > 10 ? text.substr(0, 10) : text;