会议按钮权限添加
This commit is contained in:
@@ -67,7 +67,7 @@
|
||||
<a-col :xl="6" :lg="7" :md="8" :sm="24">
|
||||
<span class="table-page-search-submitButtons">
|
||||
<a-button type="primary" icon="search" @click="searchQuery"
|
||||
v-has="'workingGroupConference:search'">查询</a-button>
|
||||
v-has="'meeting:search'">查询</a-button>
|
||||
<a-button icon="reload" @click="searchReset" class="reset-button">重置</a-button>
|
||||
</span>
|
||||
</a-col>
|
||||
@@ -80,10 +80,10 @@
|
||||
<div class="table-operator">
|
||||
<a-button type="primary" icon="plus" @click="handleAdd" v-has="'meeting:add'" v-if="canOperate">新增</a-button>
|
||||
<a-button type="primary" icon="export" @click="handleExportXls('工作组会议维护')"
|
||||
v-has="'workingGroupConference:export'">导出
|
||||
v-has="'meeting:export'">导出
|
||||
</a-button>
|
||||
<a-button type="danger" icon="delete" @click="batchDel" v-has="'workingGroupConference:batchDel'" v-if="canOperate">批量删除</a-button>
|
||||
<a-button type="primary" @click="publishRemind" v-has="'workingGroupConference:publish'" v-if="canOperate">发布</a-button>
|
||||
<a-button type="danger" icon="delete" @click="batchDel" v-has="'meeting:batchDel'" v-if="canOperate">批量删除</a-button>
|
||||
<a-button type="primary" @click="publishRemind" v-has="'meeting:publish'" v-if="canOperate">发布</a-button>
|
||||
</div>
|
||||
<!-- /操作按钮区域-end-->
|
||||
|
||||
@@ -114,10 +114,10 @@
|
||||
</template>
|
||||
|
||||
<span slot="action" class="action-span-cell" slot-scope="text, record" v-if="canOperate">
|
||||
<a @click="uploadFile(record)" v-has="'workingGroupConference:upload'">上传文件</a>
|
||||
<a @click="uploadFile(record)" v-has="'meeting:upload'">上传文件</a>
|
||||
<!-- <a @click="applyMsg">报名信息</a>-->
|
||||
<a @click="handleEdit(record)" v-has="'workingGroupConference:edit'">编辑</a>
|
||||
<a @click="handleDelete(record.id)" v-has="'workingGroupConference:delete'">删除</a>
|
||||
<a @click="handleEdit(record)" v-has="'meeting:edit'">编辑</a>
|
||||
<a @click="handleDelete(record.id)" v-has="'meeting:delete'">删除</a>
|
||||
</span>
|
||||
</a-table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user