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