|
|
@@ -1,18 +1,19 @@
|
|
|
<template>
|
|
|
<div class="scene-page">
|
|
|
- <div class="scene-toolbar">
|
|
|
+ <!-- <div class="scene-toolbar">
|
|
|
<el-button type="primary" :icon="CirclePlus" @click="handleCreate"> 新增场景 </el-button>
|
|
|
<div class="scene-search">
|
|
|
<el-input v-model="filterText" placeholder="请输入场景分类" clearable />
|
|
|
<el-button type="primary" @click="handleSearch"> 搜索 </el-button>
|
|
|
<el-button @click="handleReset"> 重置 </el-button>
|
|
|
</div>
|
|
|
- </div>
|
|
|
+ </div> -->
|
|
|
<div class="scene-header">
|
|
|
<span style="flex: 1">场景分类</span>
|
|
|
<span style="width: 200px; text-align: center">展示图片</span>
|
|
|
<span style="width: 200px; text-align: center">状态</span>
|
|
|
- <span style="width: 300px; text-align: center">操作</span>
|
|
|
+ <!-- <span style="width: 300px; text-align: center">操作</span> -->
|
|
|
+ <span style="width: 300px; text-align: center" />
|
|
|
</div>
|
|
|
<div class="scene-tree">
|
|
|
<el-tree
|
|
|
@@ -41,14 +42,14 @@
|
|
|
</el-tag>
|
|
|
</span>
|
|
|
<span class="scene-actions">
|
|
|
- <el-button type="primary" link size="small" :icon="CirclePlus" @click.stop="handleAddChild(data)">
|
|
|
+ <!-- <el-button type="primary" link size="small" :icon="CirclePlus" @click.stop="handleAddChild(data)">
|
|
|
新增子场景
|
|
|
</el-button>
|
|
|
<el-button type="primary" link size="small" :icon="EditPen" @click.stop="handleToggleStatus(data)">
|
|
|
{{ data.status === 1 ? "停用" : "启用" }}
|
|
|
</el-button>
|
|
|
<el-button type="primary" link size="small" :icon="EditPen" @click.stop="handleEdit(data)"> 编辑 </el-button>
|
|
|
- <el-button type="danger" link size="small" :icon="Delete" @click.stop="handleDelete(data)"> 删除 </el-button>
|
|
|
+ <el-button type="danger" link size="small" :icon="Delete" @click.stop="handleDelete(data)"> 删除 </el-button> -->
|
|
|
</span>
|
|
|
</span>
|
|
|
</template>
|