1.7版本发布,详情查看版本说明

This commit is contained in:
zhengjie
2019-04-11 16:16:52 +08:00
parent 59bf825d88
commit 0731e1e9ca
12 changed files with 48 additions and 35 deletions

View File

@@ -1,6 +1,6 @@
<template>
<div class="app-container">
<eHeader :query="query"/>
<eHeader :query="query" :dicts="dicts"/>
<!--表格渲染-->
<el-table v-loading="loading" :data="data" size="small" style="width: 100%;">
<el-table-column prop="name" label="名称"/>
@@ -28,7 +28,7 @@
</el-table-column>
<el-table-column label="操作" width="150px" align="center">
<template slot-scope="scope">
<edit v-if="checkPermission(['ADMIN','USERJOB_ALL','USERJOB_EDIT'])" :data="scope.row" :sup_this="sup_this"/>
<edit v-if="checkPermission(['ADMIN','USERJOB_ALL','USERJOB_EDIT'])" :dicts="dicts" :data="scope.row" :sup_this="sup_this"/>
<el-popover
v-if="checkPermission(['ADMIN','USERJOB_ALL','USERJOB_DELETE'])"
:ref="scope.row.id"