|
@@ -119,14 +119,16 @@
|
|
|
</template>
|
|
|
<template #operate="{ row }">
|
|
|
<div class="table-operations" @click.stop>
|
|
|
- <t-link
|
|
|
- theme="primary"
|
|
|
- hover="color"
|
|
|
- @click="allocation(row)"
|
|
|
- :disabled="row.sopStatus === 'START'"
|
|
|
- >
|
|
|
- 人员调配
|
|
|
- </t-link>
|
|
|
+ <template v-if="perm.LINK_Allocation">
|
|
|
+ <t-link
|
|
|
+ theme="primary"
|
|
|
+ hover="color"
|
|
|
+ @click="allocation(row)"
|
|
|
+ :disabled="row.sopStatus === 'START'"
|
|
|
+ >
|
|
|
+ 人员调配
|
|
|
+ </t-link>
|
|
|
+ </template>
|
|
|
<template v-if="perm.LINK_Fill">
|
|
|
<t-link
|
|
|
:disabled="
|