This commit is contained in:
yanran200730
2023-02-21 14:21:29 +08:00
parent 180e43924a
commit 59061827f1
2 changed files with 8 additions and 2 deletions

View File

@@ -6,7 +6,13 @@
<el-button size="small" type="primary" icon="iconfont iconAdd" @click="toAdd('')">添加</el-button>
</template>
<template #right>
<ai-download v-if="permissions('app_appcontentinfo_export')" :instance="instance" url="/app/appcontentinfo/export" :params="params" fileName="数据列表" :disabled="tableData.length == 0">
<ai-download
v-if="permissions('app_appcontentinfo_export')"
:instance="instance"
url="/app/appcontentinfo/export"
:params="params"
fileName="数据列表"
:disabled="tableData.length == 0">
<el-button icon="iconfont iconExported" :disabled="tableData.length == 0">导出</el-button>
</ai-download>
<el-input

View File

@@ -75,7 +75,7 @@
<template slot-scope="{ row }">
<div class="table-options">
<el-button type="text" @click="remindExamine(row.id)" v-if="['0'].includes(row.status)">催办</el-button>
<el-button type="text" @click="close(row.id)" v-if="['4'].includes(row.status) && row.sendChannel === '1'">关闭</el-button>
<el-button type="text" @click="close(row.id)" v-if="['4'].includes(row.status)">关闭</el-button>
<el-button type="text" @click="cancel(row.id)" v-if="['0'].includes(row.status)">撤回</el-button>
<el-button type="text" @click="toDetail(row.id)">详情</el-button>
<el-button type="text" @click="toAdd(row.sendChannel, row.id)" v-if="['1', '3'].includes(row.status)">编辑</el-button>