Commit 19fbba754395e46c5577524680b11b873e6f9338
1 parent
c4a33deb
fix: 创建订单权限错误
Showing
1 changed file
with
1 additions
and
1 deletions
src/views/project/order/index.vue
... | ... | @@ -92,7 +92,7 @@ |
92 | 92 | <a-button |
93 | 93 | type="primary" |
94 | 94 | @click="handleAdd" |
95 | - v-if="role === ROLE.ADMIN && role === ROLE.BUSINESS && role === ROLE.TRACKER" | |
95 | + v-if="role === ROLE.ADMIN || role === ROLE.BUSINESS || role === ROLE.TRACKER" | |
96 | 96 | >创建订单</a-button |
97 | 97 | > |
98 | 98 | </template> |
... | ... |