禁止小程序在定制方案中打包,下载更新,和群发通知

This commit is contained in:
aixianling
2023-03-10 14:10:42 +08:00
parent b5bfc24916
commit 4030225304

View File

@@ -26,10 +26,12 @@
<template slot-scope="{row}">
<el-button type="text" @click="handleAdd(row.id)">编辑</el-button>
<el-button type="text" @click="handleDelete(row.id)">删除</el-button>
<el-button type="text" @click="handleUpdate(row)" v-if="row.count==0">打包更新</el-button>
<el-button type="text" @click="handleCancelUpdate(row)" v-else>停止</el-button>
<el-button type="text" @click="handleDownload(row)" v-if="row.download&&!row.error">下载</el-button>
<el-button type="text" @click="handleNotice(row.id)">通知</el-button>
<template v-if="row.type!='mp'">
<el-button type="text" @click="handleUpdate(row)" v-if="row.count==0">打包更新</el-button>
<el-button type="text" @click="handleCancelUpdate(row)" v-else>停止</el-button>
<el-button type="text" @click="handleDownload(row)" v-if="row.download&&!row.error">下载</el-button>
<el-button type="text" @click="handleNotice(row.id)">通知</el-button>
</template>
</template>
</el-table-column>
</ai-table>