移交接收管理

This commit is contained in:
cwchen 2025-09-28 15:29:58 +08:00
parent 6505c2ee92
commit 647d3f2e0e
2 changed files with 13 additions and 3 deletions

View File

@ -0,0 +1,10 @@
import request from '@/utils/request'
// 移交问题管理列表
export function getTransferProblemListApi(params) {
return request({
url: '/smartArchives/transferProblem/getTransferProblemList',
method: 'GET',
params: params,
})
}

View File

@ -27,7 +27,7 @@ export const formLabel = [
export const columnsList = [ export const columnsList = [
{ t_props: 'proName', t_label: '项目名称' }, { t_props: 'proName', t_label: '项目名称' },
{ t_props: 'singleProName', t_label: '单项工程名称' }, { t_props: 'singleProName', t_label: '单项工程名称' },
{ t_props: 'createUserName', t_label: '移交时间' }, { t_props: 'transferTime', t_label: '移交时间' },
{ t_props: 'createTime', t_label: '接收单位' }, { t_props: 'deptName', t_label: '接收单位' },
{ t_slot: 'auditStatus', t_label: '移交问题' }, { t_props: 'transferIssue', t_label: '移交问题' },
] ]