修复 流程类型 显示问题
parent
4363e820c2
commit
c73239604d
|
@ -56,7 +56,6 @@
|
||||||
<el-option label="${processType.description}"
|
<el-option label="${processType.description}"
|
||||||
value="${processType.name()}"></el-option>
|
value="${processType.name()}"></el-option>
|
||||||
</#list>
|
</#list>
|
||||||
</el-option>
|
|
||||||
</el-select>
|
</el-select>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
|
|
||||||
|
@ -105,7 +104,8 @@
|
||||||
v-if="scope.row.status==='audit_passed' || scope.row.status==='audit_not_passed' || scope.row.status==='to_be_audit'"
|
v-if="scope.row.status==='audit_passed' || scope.row.status==='audit_not_passed' || scope.row.status==='to_be_audit'"
|
||||||
type="text" @click="showDetail(scope.row, scope)">查看详情
|
type="text" @click="showDetail(scope.row, scope)">查看详情
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="scope.row.status==='audit_passed' || scope.row.status==='audit_not_passed' || scope.row.status==='to_be_audit'"
|
<el-button
|
||||||
|
v-if="scope.row.status==='audit_passed' || scope.row.status==='audit_not_passed' || scope.row.status==='to_be_audit'"
|
||||||
type="text" @click="showAuditDetail(scope.row, scope)">查看审核流程
|
type="text" @click="showAuditDetail(scope.row, scope)">查看审核流程
|
||||||
</el-button>
|
</el-button>
|
||||||
<el-button v-if="scope.row.status==='draft' || scope.row.status==='audit_not_passed'"
|
<el-button v-if="scope.row.status==='draft' || scope.row.status==='audit_not_passed'"
|
||||||
|
@ -432,7 +432,7 @@
|
||||||
switch (value) {
|
switch (value) {
|
||||||
case 'sale_contract':
|
case 'sale_contract':
|
||||||
return "销售合同流程"
|
return "销售合同流程"
|
||||||
case 'business_procurement':
|
case 'procurement_contract':
|
||||||
return "业务采购流程"
|
return "业务采购流程"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue