修复 流程类型 显示问题

master
Harry Yang 2022-12-26 18:12:47 +08:00
parent 4363e820c2
commit c73239604d
1 changed files with 4 additions and 4 deletions

View File

@ -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,8 +104,9 @@
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
type="text" @click="showAuditDetail(scope.row, scope)">查看审核流程 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>
<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'"
type="text" @click="editProcess(scope.row, scope)">编辑 type="text" @click="editProcess(scope.row, scope)">编辑
@ -432,7 +432,7 @@
switch (value) { switch (value) {
case 'sale_contract': case 'sale_contract':
return "销售合同流程" return "销售合同流程"
case 'business_procurement': case 'procurement_contract':
return "业务采购流程" return "业务采购流程"
} }
} }