|
@@ -314,12 +314,17 @@
|
|
|
@click="onProvinceReturn"
|
|
|
v-auth="'business:order:returnBatch'"
|
|
|
:disabled="!scope.isSelected"
|
|
|
- v-if="fastSearch === 'province'"
|
|
|
+ v-show="fastSearch === 'province'"
|
|
|
+ :loading="state.loading"
|
|
|
>省退回申请
|
|
|
</el-button>
|
|
|
- <el-button type="primary" @click="onCreateRepeatEvent">创建重复性事件 </el-button>
|
|
|
- <el-button type="primary" @click="onObserve" v-auth="'business:order:observe'" :disabled="!scope.isSelected">设置观察件 </el-button>
|
|
|
- <el-button type="primary" @click="onEnd" v-auth="'business:order:end'" :disabled="!scope.isSelected">设置终结件 </el-button>
|
|
|
+ <el-button type="primary" @click="onCreateRepeatEvent" :loading="state.loading">创建重复性事件 </el-button>
|
|
|
+ <el-button type="primary" @click="onObserve" v-auth="'business:order:observe'" :disabled="!scope.isSelected" :loading="state.loading"
|
|
|
+ >设置观察件
|
|
|
+ </el-button>
|
|
|
+ <el-button type="primary" @click="onEnd" v-auth="'business:order:end'" :disabled="!scope.isSelected" :loading="state.loading"
|
|
|
+ >设置终结件
|
|
|
+ </el-button>
|
|
|
</template>
|
|
|
<template #expiredStatus="{ row }">
|
|
|
<span :class="'overdue-status-' + row.expiredStatus" :title="row.expiredStatusText"></span>
|