2024-11-18 09:06:12 +08:00
|
|
|
<template>
|
|
|
|
|
<div class="app-container">
|
|
|
|
|
<el-form :model="queryParams" ref="queryForm" size="small" :inline="true" v-show="showSearch" label-width="68px">
|
|
|
|
|
<el-form-item label="标签名称" prop="labelName">
|
|
|
|
|
<el-input
|
|
|
|
|
v-model="queryParams.labelName"
|
|
|
|
|
placeholder="请输入标签名称"
|
|
|
|
|
clearable
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item>
|
|
|
|
|
<el-button type="primary" icon="el-icon-search" size="mini" @click="handleQuery">搜索</el-button>
|
|
|
|
|
<el-button icon="el-icon-refresh" size="mini" @click="resetQuery">重置</el-button>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="primary"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleAdd"
|
2024-11-20 17:30:43 +08:00
|
|
|
v-hasPermi="['dataCenter:dataSetLabels:add']"
|
2024-11-18 09:06:12 +08:00
|
|
|
>新增</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="1.5">
|
|
|
|
|
<el-button
|
|
|
|
|
type="info"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-sort"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="toggleExpandAll"
|
|
|
|
|
>展开/折叠</el-button>
|
|
|
|
|
</el-col>
|
|
|
|
|
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
|
|
|
|
|
</el-row>
|
|
|
|
|
|
|
|
|
|
<el-table
|
|
|
|
|
v-if="refreshTable"
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="labelsList"
|
|
|
|
|
row-key="labelId"
|
|
|
|
|
:default-expand-all="isExpandAll"
|
|
|
|
|
:tree-props="{children: 'children', hasChildren: 'hasChildren'}"
|
|
|
|
|
>
|
2024-11-20 15:31:32 +08:00
|
|
|
<el-table-column label="标签名称" prop="labelName" :show-overflow-tooltip="true" width="160"/>
|
2024-11-18 09:06:12 +08:00
|
|
|
<el-table-column label="状态" align="center" prop="labelName" />
|
|
|
|
|
<el-table-column label="创建人" align="center" prop="createBy" />
|
|
|
|
|
<el-table-column label="描述" align="center" prop="labelName" />
|
|
|
|
|
|
|
|
|
|
<el-table-column label="创建时间" align="center" prop="labelName">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<span>{{parseTime(scope.row.createTime)}}</span>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
|
|
|
|
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-edit"
|
|
|
|
|
@click="handleUpdate(scope.row)"
|
2024-11-20 17:30:43 +08:00
|
|
|
v-hasPermi="['dataCenter:dataSetLabels:edit']"
|
2024-11-18 09:06:12 +08:00
|
|
|
>修改</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-plus"
|
|
|
|
|
@click="handleAdd(scope.row)"
|
2024-11-20 17:30:43 +08:00
|
|
|
v-hasPermi="['dataCenter:dataSetLabels:add']"
|
2024-11-18 09:06:12 +08:00
|
|
|
>新增</el-button>
|
|
|
|
|
<el-button
|
|
|
|
|
size="mini"
|
|
|
|
|
type="text"
|
|
|
|
|
icon="el-icon-delete"
|
|
|
|
|
@click="handleDelete(scope.row)"
|
2024-11-20 17:30:43 +08:00
|
|
|
v-hasPermi="['dataCenter:dataSetLabels:remove']"
|
2024-11-18 09:06:12 +08:00
|
|
|
>删除</el-button>
|
|
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改样本标签管理对话框 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
2024-11-20 15:37:06 +08:00
|
|
|
<el-form-item label="父节点" prop="parentId">
|
|
|
|
|
<treeselect v-model="form.parentId" :options="labelsListOptions" :normalizer="normalizer" placeholder="请选择父节点" />
|
2024-11-18 09:06:12 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="标签名称" prop="labelName">
|
2024-11-20 15:37:06 +08:00
|
|
|
<el-input v-model="form.labelName" maxlength="20" placeholder="请输入标签名称" />
|
2024-11-18 09:06:12 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div slot="footer" class="dialog-footer">
|
|
|
|
|
<el-button type="primary" @click="submitForm">确 定</el-button>
|
|
|
|
|
<el-button @click="cancel">取 消</el-button>
|
|
|
|
|
</div>
|
|
|
|
|
</el-dialog>
|
|
|
|
|
</div>
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script>
|
2024-11-20 16:19:57 +08:00
|
|
|
import {listDataSetLabels, getDataSetLabels, delDataSetLabels, addDataSetLabels, updateDataSetLabels,getLabelsTree } from "@/api/dataCenter/labels";
|
2024-11-18 09:06:12 +08:00
|
|
|
import Treeselect from "@riophae/vue-treeselect";
|
|
|
|
|
import "@riophae/vue-treeselect/dist/vue-treeselect.css";
|
|
|
|
|
import { parseTime } from '../../../utils/bonus'
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "DataSetLabels",
|
|
|
|
|
components: {
|
|
|
|
|
Treeselect
|
|
|
|
|
},
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 样本标签管理表格数据
|
|
|
|
|
labelsList: [],
|
|
|
|
|
// 样本标签管理树选项
|
|
|
|
|
labelsListOptions: [],
|
|
|
|
|
// 弹出层标题
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 是否展开,默认全部展开
|
|
|
|
|
isExpandAll: true,
|
|
|
|
|
// 重新渲染表格状态
|
|
|
|
|
refreshTable: true,
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
ancestors: null,
|
|
|
|
|
parentId: null,
|
|
|
|
|
labelName: null,
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
|
|
|
|
parentId: [
|
2024-11-20 15:37:06 +08:00
|
|
|
{ required: true, message: "父节点不能为空", trigger: "blur" }
|
2024-11-18 09:06:12 +08:00
|
|
|
],
|
2024-11-20 16:19:57 +08:00
|
|
|
labelName:[
|
|
|
|
|
{ required: true, message: "标签名称不能为空", trigger: "blur" }
|
|
|
|
|
]
|
2024-11-18 09:06:12 +08:00
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
methods: {
|
|
|
|
|
parseTime,
|
|
|
|
|
/** 查询样本标签管理列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
|
|
|
|
listDataSetLabels(this.queryParams).then(response => {
|
|
|
|
|
console.log(response)
|
2024-11-20 15:37:06 +08:00
|
|
|
this.labelsList = this.handleTree(response.data, "labelId");
|
2024-11-18 09:06:12 +08:00
|
|
|
this.loading = false;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 转换样本标签管理数据结构 */
|
|
|
|
|
normalizer(node) {
|
|
|
|
|
if (node.children && !node.children.length) {
|
|
|
|
|
delete node.children;
|
|
|
|
|
}
|
|
|
|
|
return {
|
|
|
|
|
id: node.labelId,
|
|
|
|
|
label: node.labelName,
|
|
|
|
|
children: node.children
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
/** 查询样本标签管理下拉树结构 */
|
2024-11-20 16:19:57 +08:00
|
|
|
getTreeselect(labelId) {
|
|
|
|
|
getLabelsTree(labelId).then(response => {
|
2024-11-18 09:06:12 +08:00
|
|
|
this.labelsListOptions = [];
|
2024-11-20 15:37:06 +08:00
|
|
|
const menu = { labelId: 0, labelName: '主类目', children: [] };
|
|
|
|
|
menu.children = this.handleTree(response.data, "labelId");
|
|
|
|
|
this.labelsListOptions.push(menu);
|
2024-11-18 09:06:12 +08:00
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
|
|
|
|
labelId: null,
|
|
|
|
|
ancestors: null,
|
|
|
|
|
parentId: null,
|
|
|
|
|
labelName: null,
|
|
|
|
|
delFlag: null,
|
|
|
|
|
createBy: null,
|
|
|
|
|
updateBy: null,
|
|
|
|
|
updateTime: null,
|
|
|
|
|
createTime: null
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd(row) {
|
|
|
|
|
this.reset();
|
2024-11-20 16:19:57 +08:00
|
|
|
this.getTreeselect(0);
|
2024-11-18 09:06:12 +08:00
|
|
|
if (row != null && row.labelId) {
|
|
|
|
|
this.form.parentId = row.labelId;
|
|
|
|
|
} else {
|
|
|
|
|
this.form.parentId = 0;
|
|
|
|
|
}
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "添加样本标签管理";
|
|
|
|
|
},
|
|
|
|
|
/** 展开/折叠操作 */
|
|
|
|
|
toggleExpandAll() {
|
|
|
|
|
this.refreshTable = false;
|
|
|
|
|
this.isExpandAll = !this.isExpandAll;
|
|
|
|
|
this.$nextTick(() => {
|
|
|
|
|
this.refreshTable = true;
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
2024-11-20 17:10:53 +08:00
|
|
|
this.getTreeselect(row.labelId);
|
2024-11-18 09:06:12 +08:00
|
|
|
getDataSetLabels(row.labelId).then(response => {
|
2024-11-20 16:19:57 +08:00
|
|
|
console.log(response.data)
|
2024-11-18 09:06:12 +08:00
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改样本标签管理";
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
|
|
|
|
submitForm() {
|
|
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
|
|
|
|
if (this.form.labelId != null) {
|
|
|
|
|
updateDataSetLabels(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addDataSetLabels(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
|
|
|
|
this.$modal.confirm('是否确认删除样本标签管理编号为"' + row.labelId + '"的数据项?').then(function() {
|
|
|
|
|
return delDataSetLabels(row.labelId);
|
|
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
|
|
|
|
}).catch(() => {});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|