Commit e4c7f28b by zhaochengxiang

bug fix

parent 97f57091
......@@ -13,7 +13,8 @@ import { AssetDraftReference } from "../../../util/constant"
import StartProcess from "./start-process"
import ImportAsset from "./import"
const specialCol = ['数据关键用户', '业务数据owner', 'it责任人', '创建人', '更新人']
// const specialCol = ['数据关键用户', '业务数据owner', 'it责任人', '创建人', '更新人']
const specialCol = ['创建人', '更新人']
const FC = (props) => {
const [loadingTemplates, setLoadingTemplates] = React.useState(false)
......@@ -103,7 +104,7 @@ const FC = (props) => {
title: '修改类型',
dataIndex: 'draftOperation',
ellipsis: true,
width: 80,
width: 120,
render: (text, record) => {
if (text === 'release') return '新增'
if (text === 'change') return '修改'
......@@ -116,7 +117,7 @@ const FC = (props) => {
title: '状态',
dataIndex: 'draftState',
ellipsis: true,
width: 80,
width: 120,
render: (text, record) => {
if (text === 'draft') return '待提交'
if (text === 'auditing') return '审批中'
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment