Commit 939b7f57 authored by Mac's avatar Mac

1

parent 98c19049
......@@ -25,15 +25,17 @@
<tr v-for="(item,index) in state.data" :key="index">
<td><span>{{item.FlowName}}</span></td>
<td>
<!-- <span v-if='item.DeptEmpList && item.DeptEmpList.length>0' v-for="(x,y) in item.DeptEmpList" :key='y'>
<q-chip color="blue-1" text-color="blue" icon="folder" size="sm" v-if="x.Type==1">
{{x.Name}}
</q-chip>
<q-chip color="green-1" text-color="green" icon="person" size="sm" v-if="x.Type==2">
{{x.Name}}
</q-chip>
</span>
<span v-else>未适配其他规则的阶段</span> -->
<div v-if='item.DeptEmpList && item.DeptEmpList.length>0' >
<span v-for="(x,y) in item.DeptEmpList" :key='y'>
<q-chip color="blue-1" text-color="blue" icon="folder" size="sm" v-if="x.Type==1">
{{x.Name}}
</q-chip>
<q-chip color="green-1" text-color="green" icon="person" size="sm" v-if="x.Type==2">
{{x.Name}}
</q-chip>
</span>
</div>
<span v-else>未适配其他规则的阶段</span>
</td>
<td>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment