| | |
| | | icon="el-icon-plus" |
| | | size="mini" |
| | | @click="handleAdd" |
| | | v-hasPermi="['system:template:add']" |
| | | >新增</el-button> |
| | | </el-col> |
| | | <!-- <el-col :span="1.5"> |
| | |
| | | icon="el-icon-download" |
| | | size="mini" |
| | | @click="handleExport" |
| | | v-hasPermi="['system:template:export']" |
| | | >导出</el-button> |
| | | </el-col> |
| | | <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar> |
| | |
| | | <div class="text item">考核对象:{{ item.deptId }}</div> |
| | | <div class="text item">使用状态:{{ item.status == 0 ? '启用' : '停用' }}</div> |
| | | <div class="bottom clearfix"> |
| | | <el-button type="text" class="button" @click="">启用</el-button> |
| | | <el-button type="text" class="button" @click="">复制</el-button> |
| | | <el-button type="text" class="button" @click="handleUpdate(item)">修改</el-button> |
| | | <el-button type="text" class="button" @click="handleDelete(item)">删除</el-button> |
| | | <el-button type="text" class="button" v-hasPermi="['system:template:XX']" @click="">启用</el-button> |
| | | <el-button type="text" class="button" v-hasPermi="['system:template:XX']" @click="">复制</el-button> |
| | | <el-button type="text" class="button" v-hasPermi="['system:template:edit']" @click="handleUpdate(item)">修改</el-button> |
| | | <el-button type="text" class="button" v-hasPermi="['system:template:remove']" @click="handleDelete(item)">删除</el-button> |
| | | </div> |
| | | </el-card> |
| | | |