Merge pull request 'fix : 审批人和当前节点合并' (#669) from dd into master
Reviewed-on: http://git.feashow.cn/clay/mosr-web/pulls/669
This commit is contained in:
@@ -137,12 +137,7 @@ const tableConfig = reactive({
|
|||||||
align: 'center',
|
align: 'center',
|
||||||
// width: 200
|
// width: 200
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'approveName',
|
|
||||||
label: '审批人',
|
|
||||||
align: 'center',
|
|
||||||
// width: 100,
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'deadline',
|
prop: 'deadline',
|
||||||
label: '需求上报截止时间',
|
label: '需求上报截止时间',
|
||||||
@@ -150,11 +145,25 @@ const tableConfig = reactive({
|
|||||||
// width: 150,
|
// width: 150,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'taskNode',
|
prop: 'approveName',
|
||||||
label: '当前节点',
|
label: '当前审批节点',
|
||||||
align: 'center',
|
align: 'center',
|
||||||
// width: 300
|
// width: 100,
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if(row.state=='1'){
|
||||||
|
return <span>{row.approveName}</span>
|
||||||
|
}else {
|
||||||
|
return <span>{row.taskNode}</span>
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// prop: 'taskNode',
|
||||||
|
// label: '当前审批节点',
|
||||||
|
// align: 'center',
|
||||||
|
// // width: 300
|
||||||
|
//
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
prop: 'state',
|
prop: 'state',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|||||||
@@ -167,11 +167,6 @@ const tableConfig = reactive({
|
|||||||
label: '项目名称',
|
label: '项目名称',
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'approveName',
|
|
||||||
label: '审批人',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'projectType',
|
prop: 'projectType',
|
||||||
label: '项目类型',
|
label: '项目类型',
|
||||||
@@ -228,9 +223,18 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'taskNode',
|
prop: 'approveName',
|
||||||
label: '当前节点',
|
label: '当前审批节点',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if(row.state=='3'||row.state=='4'){
|
||||||
|
return <span>{row.taskNode}</span>
|
||||||
|
}else if(row.state=='1'){
|
||||||
|
return <span>{row.approveName}</span>
|
||||||
|
}else {
|
||||||
|
return <span>--</span>
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'state',
|
prop: 'state',
|
||||||
|
|||||||
@@ -170,11 +170,6 @@ const tableConfig = reactive({
|
|||||||
label: '项目名称',
|
label: '项目名称',
|
||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
{
|
|
||||||
prop: 'approveName',
|
|
||||||
label: '审批人',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'projectType',
|
prop: 'projectType',
|
||||||
label: '项目类型',
|
label: '项目类型',
|
||||||
@@ -244,9 +239,18 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'taskNode',
|
prop: 'approveName',
|
||||||
label: '当前节点',
|
label: '当前审批节点',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if(row.state=='3'||row.state=='4'){
|
||||||
|
return <span>{row.taskNode}</span>
|
||||||
|
}else if(row.state=='1'){
|
||||||
|
return <span>{row.approveName}</span>
|
||||||
|
}else {
|
||||||
|
return <span>--</span>
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'state',
|
prop: 'state',
|
||||||
|
|||||||
@@ -165,11 +165,6 @@ const tableConfig = reactive({
|
|||||||
align: 'center'
|
align: 'center'
|
||||||
},
|
},
|
||||||
|
|
||||||
{
|
|
||||||
prop: 'approveName',
|
|
||||||
label: '审批人',
|
|
||||||
align: 'center'
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
prop: 'projectType',
|
prop: 'projectType',
|
||||||
label: '项目类型',
|
label: '项目类型',
|
||||||
@@ -226,10 +221,24 @@ const tableConfig = reactive({
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
prop: 'taskNode',
|
prop: 'approveName',
|
||||||
label: '当前节点',
|
label: '当前审批节点',
|
||||||
align: 'center'
|
align: 'center',
|
||||||
|
currentRender: ({row, index}) => {
|
||||||
|
if(row.state=='3'||row.state=='4'){
|
||||||
|
return <span>{row.taskNode}</span>
|
||||||
|
}else if(row.state=='1'){
|
||||||
|
return <span>{row.approveName}</span>
|
||||||
|
}else {
|
||||||
|
return <span>--</span>
|
||||||
|
}
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
// {
|
||||||
|
// prop: 'taskNode',
|
||||||
|
// label: '当前节点',
|
||||||
|
// align: 'center'
|
||||||
|
// },
|
||||||
{
|
{
|
||||||
prop: 'state',
|
prop: 'state',
|
||||||
label: '状态',
|
label: '状态',
|
||||||
|
|||||||
Reference in New Issue
Block a user