|
|
@@ -13,6 +13,11 @@
|
|
|
<main class="safety-platform-container__main">
|
|
|
<div class="search-table-container">
|
|
|
<header>
|
|
|
+ <div style="position: relative">
|
|
|
+ <el-button type="primary" class="search-table-container--button" @click="selectDeptType" v-if="activityRegistrationDetail.status !== 3">
|
|
|
+ 添加
|
|
|
+ </el-button>
|
|
|
+ </div>
|
|
|
<div class="act-search">
|
|
|
<section class="select-box">
|
|
|
<div class="select-box--item">
|
|
|
@@ -41,9 +46,6 @@
|
|
|
<section class="search-btn">
|
|
|
<el-button type="primary" @click="handleSearch">查询</el-button>
|
|
|
<el-button @click="handleReset">重置</el-button>
|
|
|
- <el-button type="primary" style="margin:0 10px;" @click="selectDeptType">
|
|
|
- 添加
|
|
|
- </el-button>
|
|
|
<!-- <el-button plain @click="handleExport">
|
|
|
导出
|
|
|
</el-button> -->
|
|
|
@@ -55,7 +57,7 @@
|
|
|
<BasicTable ref="basicTableRef" :tableData="tableData" :tableConfig="tableConfig"
|
|
|
@update:pageSize="handleSizeChange" @update:pageNumber="handleCurrentChange">
|
|
|
<template #action="scope">
|
|
|
- <div class="action-container--div" style="justify-content: left">
|
|
|
+ <div class="action-container--div" style="justify-content: left" v-if="activityRegistrationDetail.status !== 3">
|
|
|
<ActionButton text="编辑" @click="handleEdit(scope.row)" />
|
|
|
<ActionButton text="删除" @click="handleDelete(scope.row)" />
|
|
|
</div>
|