|
|
@@ -14,50 +14,53 @@
|
|
|
>
|
|
|
<template #titleRight>
|
|
|
<batchUp
|
|
|
+ v-if="tool.checkAuth($route.name, 'batchUp')"
|
|
|
class="inline-16"
|
|
|
:rowData="rowData"
|
|
|
:disabled="rowData.length === 0"
|
|
|
@batchUpSuccess="onSuccess"
|
|
|
></batchUp>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'batchUp')" -->
|
|
|
<batchDown
|
|
|
+ v-if="tool.checkAuth($route.name, 'batchDown')"
|
|
|
class="inline-16"
|
|
|
:rowData="rowData"
|
|
|
:disabled="rowData.length === 0"
|
|
|
@batchUpSuccess="onSuccess"
|
|
|
></batchDown>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'batchDown')" -->
|
|
|
<toExamine
|
|
|
+ v-if="tool.checkAuth($route.name, 'toExamine')"
|
|
|
class="inline-16"
|
|
|
:rowData="rowData"
|
|
|
:disabled="rowData.length === 0"
|
|
|
@examineSuccess="onSuccess"
|
|
|
></toExamine>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'toExamine')" -->
|
|
|
<counterExamine
|
|
|
+ v-if="tool.checkAuth($route.name, 'reverseReview')"
|
|
|
class="inline-16"
|
|
|
:rowData="rowData"
|
|
|
:disabled="rowData.length === 0"
|
|
|
@examineSuccess="onSuccess"
|
|
|
></counterExamine>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'reverseReview')" -->
|
|
|
<batchAddToSite
|
|
|
+ v-if="tool.checkAuth($route.name, 'batchAddToSite')"
|
|
|
class="inline-16"
|
|
|
:rowData="rowData"
|
|
|
:disabled="rowData.length === 0"
|
|
|
@addSuccess="onSuccess"
|
|
|
></batchAddToSite>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'batchAddToSite')" -->
|
|
|
<selectAllAddToSite
|
|
|
- v-if="$refs.list"
|
|
|
+ v-if="
|
|
|
+ $refs.list &&
|
|
|
+ tool.checkAuth($route.name, 'selectAllAddToSite')
|
|
|
+ "
|
|
|
class="inline-16"
|
|
|
:basicLayout="$refs.list"
|
|
|
:where="$refs.list.param.content.where"
|
|
|
:queryApiId="2026051508534106"
|
|
|
@addSuccess="onSuccess"
|
|
|
></selectAllAddToSite>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'selectAllAddToSite')" -->
|
|
|
<importImage
|
|
|
+ v-if="tool.checkAuth($route.name, 'exportImage')"
|
|
|
class="inline-16"
|
|
|
ref="importImage"
|
|
|
:bindData="{
|
|
|
@@ -69,7 +72,6 @@
|
|
|
@clearUrl="errorUrl = null"
|
|
|
@onSuccess="bindImportImage"
|
|
|
></importImage>
|
|
|
- <!-- v-if="tool.checkAuth($route.name, 'exportImage')" -->
|
|
|
</template>
|
|
|
<template #custom>
|
|
|
<div class="mt-10">
|