/** * @Description: 专项工程搜索流程审核状态 * @Date: 2024年4月7日 */ export const flowStatus = { data() { return { flowStatusOptions: [ { label: '待发起', value: [0], }, { label: '审核中', value: [1], }, { label: '已完成', value: [2], }, ] } }, created() { }, methods: { getStatusDictName(value) { let label = '-' this.flowStatusOptions.forEach(item => { if (item.value.includes(value)) { label = item.label } }) return label } }, }