|
@ -136,6 +136,7 @@ export default { |
|
|
style="margin-right: 16px; margin-bottom: 8px; float: right" |
|
|
style="margin-right: 16px; margin-bottom: 8px; float: right" |
|
|
type="success" |
|
|
type="success" |
|
|
@click="handleAddMethod()" |
|
|
@click="handleAddMethod()" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:add']" |
|
|
>添加</el-button |
|
|
>添加</el-button |
|
|
> |
|
|
> |
|
|
<el-table class="table" height="640" :data="tableData" border> |
|
|
<el-table class="table" height="640" :data="tableData" border> |
|
@ -168,11 +169,13 @@ export default { |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleEditMethod(scope.row)" |
|
|
@click="handleEditMethod(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:edit']" |
|
|
>编辑</el-button |
|
|
>编辑</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:view']" |
|
|
@click="handlePreviewMethod(scope.row)" |
|
|
@click="handlePreviewMethod(scope.row)" |
|
|
>预览</el-button |
|
|
>预览</el-button |
|
|
> |
|
|
> |
|
@ -180,18 +183,21 @@ export default { |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleExportMethod(scope.row)" |
|
|
@click="handleExportMethod(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:down']" |
|
|
>导出</el-button |
|
|
>导出</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleCopyMethod(scope.row)" |
|
|
@click="handleCopyMethod(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:edit']" |
|
|
>复制</el-button |
|
|
>复制</el-button |
|
|
> |
|
|
> |
|
|
<el-button |
|
|
<el-button |
|
|
type="text" |
|
|
type="text" |
|
|
size="small" |
|
|
size="small" |
|
|
@click="handleToItemsList(scope.row)" |
|
|
@click="handleToItemsList(scope.row)" |
|
|
|
|
|
v-hasPermi="['df:run:sup:meth:config']" |
|
|
>配置数据项</el-button |
|
|
>配置数据项</el-button |
|
|
> |
|
|
> |
|
|
</template> |
|
|
</template> |
|
|