2023-12-12 13:36:08 +08:00
|
|
|
<template>
|
2024-01-22 09:18:46 +08:00
|
|
|
<div class="app-container" id="labelBindingHistory">
|
2023-12-20 20:17:03 +08:00
|
|
|
<el-form
|
|
|
|
|
:model="queryParams"
|
|
|
|
|
ref="queryForm"
|
|
|
|
|
size="small"
|
|
|
|
|
:inline="true"
|
|
|
|
|
v-show="showSearch"
|
|
|
|
|
label-width="68px"
|
|
|
|
|
>
|
2023-12-16 14:48:20 +08:00
|
|
|
<el-form-item label="关键字" prop="labelType">
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-input
|
2023-12-16 14:48:20 +08:00
|
|
|
v-model="queryParams.labelType"
|
2023-12-12 13:36:08 +08:00
|
|
|
placeholder="请输入关键字"
|
2024-03-11 14:57:03 +08:00
|
|
|
clearable maxlength="50"
|
2023-12-12 13:36:08 +08:00
|
|
|
style="width: 240px"
|
|
|
|
|
@keyup.enter.native="handleQuery"
|
|
|
|
|
/>
|
|
|
|
|
</el-form-item>
|
2023-12-19 04:26:18 +08:00
|
|
|
<el-form-item label="设备类型" prop="typeId">
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-select
|
2023-12-19 04:26:18 +08:00
|
|
|
v-model="queryParams.typeId"
|
|
|
|
|
placeholder="请选择设备类型"
|
2024-01-19 10:22:39 +08:00
|
|
|
clearable filterable
|
2023-12-12 13:36:08 +08:00
|
|
|
style="width: 240px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
2023-12-19 04:26:18 +08:00
|
|
|
v-for="typeItem in typeList"
|
|
|
|
|
:key="typeItem.typeId"
|
|
|
|
|
:label="typeItem.typeName"
|
|
|
|
|
:value="typeItem.typeId"
|
2023-12-12 13:36:08 +08:00
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2023-12-19 04:26:18 +08:00
|
|
|
<el-form-item label="规格型号" prop="modelId">
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-select
|
2023-12-19 04:26:18 +08:00
|
|
|
v-model="queryParams.modelId"
|
|
|
|
|
placeholder="请选择规格型号"
|
2024-02-26 18:43:14 +08:00
|
|
|
clearable filterable
|
2023-12-12 13:36:08 +08:00
|
|
|
style="width: 240px"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
2023-12-19 04:26:18 +08:00
|
|
|
v-for="model in modelList"
|
|
|
|
|
:key="model.typeId"
|
|
|
|
|
:label="model.typeName"
|
|
|
|
|
:value="model.typeId"
|
2023-12-12 13:36:08 +08:00
|
|
|
/>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
2023-12-20 20:17:03 +08:00
|
|
|
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-form-item>
|
2023-12-20 20:17:03 +08:00
|
|
|
<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
|
|
|
|
|
>
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-button
|
|
|
|
|
type="warning"
|
|
|
|
|
plain
|
|
|
|
|
icon="el-icon-download"
|
|
|
|
|
size="mini"
|
|
|
|
|
@click="handleExport"
|
2023-12-20 20:17:03 +08:00
|
|
|
>导出</el-button
|
|
|
|
|
>
|
2023-12-12 13:36:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
</el-form>
|
|
|
|
|
|
|
|
|
|
<el-row :gutter="10" class="mb8">
|
2023-12-20 20:17:03 +08:00
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="primary"-->
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
<!-- icon="el-icon-plus"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- @click="handleAdd"-->
|
|
|
|
|
<!-- >新增</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="success"-->
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
<!-- icon="el-icon-edit"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- :disabled="single"-->
|
|
|
|
|
<!-- @click="handleUpdate"-->
|
|
|
|
|
<!-- >修改</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="danger"-->
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
<!-- icon="el-icon-delete"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- :disabled="multiple"-->
|
|
|
|
|
<!-- @click="handleDelete"-->
|
|
|
|
|
<!-- v-hasPermi="['system:dict:remove']"-->
|
|
|
|
|
<!-- >删除</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="warning"-->
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
<!-- icon="el-icon-download"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- @click="handleExport"-->
|
|
|
|
|
<!-- >导出</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <el-col :span="1.5">-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- type="danger"-->
|
|
|
|
|
<!-- plain-->
|
|
|
|
|
<!-- icon="el-icon-refresh"-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- @click="handleRefreshCache"-->
|
|
|
|
|
<!-- >刷新缓存</el-button>-->
|
|
|
|
|
<!-- </el-col>-->
|
|
|
|
|
<!-- <right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>-->
|
2023-12-12 13:36:08 +08:00
|
|
|
</el-row>
|
|
|
|
|
|
2023-12-20 20:17:03 +08:00
|
|
|
<el-table
|
|
|
|
|
v-loading="loading"
|
|
|
|
|
:data="historyList"
|
|
|
|
|
@selection-change="handleSelectionChange"
|
|
|
|
|
>
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-table-column type="selection" width="55" align="center" />
|
2023-12-16 14:48:20 +08:00
|
|
|
<el-table-column label="序号" align="center" type="index" />
|
2023-12-20 20:17:03 +08:00
|
|
|
<el-table-column
|
|
|
|
|
label="标签类型"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="name"
|
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="标签编号" align="center" prop="labelCode">
|
2023-12-12 13:36:08 +08:00
|
|
|
<template slot-scope="scope">
|
2023-12-20 20:17:03 +08:00
|
|
|
<span
|
|
|
|
|
style="color: blue; cursor: pointer"
|
|
|
|
|
@click="labelUploadCode(scope.row)"
|
|
|
|
|
>
|
|
|
|
|
{{ scope.row.labelCode }}</span
|
|
|
|
|
>
|
2023-12-12 13:36:08 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
2023-12-20 20:17:03 +08:00
|
|
|
<el-table-column
|
|
|
|
|
label="物品种类"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="kindName"
|
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="物品名称" align="center" prop="modelName" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="规格型号"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="typeName"
|
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="设备编码" align="center" prop="maCode" />
|
|
|
|
|
<el-table-column
|
|
|
|
|
label="绑定人员"
|
|
|
|
|
align="center"
|
|
|
|
|
prop="userName"
|
|
|
|
|
:show-overflow-tooltip="true"
|
|
|
|
|
/>
|
|
|
|
|
<el-table-column label="操作人员" align="center" prop="userName" />
|
|
|
|
|
<el-table-column label="绑定时间" align="center" prop="bindTime" />
|
2023-12-12 13:36:08 +08:00
|
|
|
<el-table-column label="操作类型" align="center" prop="status">
|
|
|
|
|
<template slot-scope="scope">
|
2023-12-22 17:13:57 +08:00
|
|
|
{{ scope.row.status == 0 ? '停用' : '正常' }}
|
|
|
|
|
<!-- <dict-tag
|
2023-12-20 20:17:03 +08:00
|
|
|
:options="dict.type.sys_normal_disable"
|
|
|
|
|
:value="scope.row.status"
|
2023-12-22 17:13:57 +08:00
|
|
|
/> -->
|
2023-12-12 13:36:08 +08:00
|
|
|
</template>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
|
2023-12-20 20:17:03 +08:00
|
|
|
<!-- <el-table-column label="标签编号" align="center" :show-overflow-tooltip="true">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <router-link :to="'/system/dict-data/index/' + scope.row.labelId" class="link-type">-->
|
|
|
|
|
<!-- <span>{{ scope.row.dictType }}</span>-->
|
|
|
|
|
<!-- </router-link>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
|
|
|
|
<!-- <el-table-column label="状态" align="center" prop="status">-->
|
|
|
|
|
<!-- <template slot-scope="scope">-->
|
|
|
|
|
<!-- <dict-tag :options="dict.type.sys_normal_disable" :value="scope.row.status"/>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
2023-12-12 13:36:08 +08:00
|
|
|
|
2023-12-20 20:17:03 +08:00
|
|
|
<!-- <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)"-->
|
|
|
|
|
<!-- >修改</el-button>-->
|
|
|
|
|
<!-- <el-button-->
|
|
|
|
|
<!-- size="mini"-->
|
|
|
|
|
<!-- type="text"-->
|
|
|
|
|
<!-- icon="el-icon-delete"-->
|
|
|
|
|
<!-- @click="handleDelete(scope.row)"-->
|
|
|
|
|
<!-- >删除</el-button>-->
|
|
|
|
|
<!-- </template>-->
|
|
|
|
|
<!-- </el-table-column>-->
|
2023-12-12 13:36:08 +08:00
|
|
|
</el-table>
|
|
|
|
|
|
|
|
|
|
<pagination
|
2023-12-20 20:17:03 +08:00
|
|
|
v-show="total > 0"
|
2023-12-12 13:36:08 +08:00
|
|
|
:total="total"
|
|
|
|
|
:page.sync="queryParams.pageNum"
|
|
|
|
|
:limit.sync="queryParams.pageSize"
|
|
|
|
|
@pagination="getList"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<!-- 添加或修改参数配置对话框 -->
|
|
|
|
|
<el-dialog :title="title" :visible.sync="open" width="500px" append-to-body>
|
|
|
|
|
<el-form ref="form" :model="form" :rules="rules" label-width="80px">
|
2023-12-16 14:48:20 +08:00
|
|
|
<el-form-item label="字典名称" prop="labelType">
|
|
|
|
|
<el-input v-model="form.labelType" placeholder="请输入字典名称" />
|
2023-12-12 13:36:08 +08:00
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="字典类型" prop="dictType">
|
|
|
|
|
<el-input v-model="form.dictType" placeholder="请输入字典类型" />
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="状态" prop="status">
|
|
|
|
|
<el-radio-group v-model="form.status">
|
|
|
|
|
<el-radio
|
|
|
|
|
v-for="dict in dict.type.sys_normal_disable"
|
|
|
|
|
:key="dict.value"
|
|
|
|
|
:label="dict.value"
|
2023-12-20 20:17:03 +08:00
|
|
|
>{{ dict.label }}</el-radio
|
|
|
|
|
>
|
2023-12-12 13:36:08 +08:00
|
|
|
</el-radio-group>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
<el-form-item label="备注" prop="remark">
|
2023-12-20 20:17:03 +08:00
|
|
|
<el-input
|
|
|
|
|
v-model="form.remark"
|
|
|
|
|
type="textarea"
|
|
|
|
|
placeholder="请输入内容"
|
|
|
|
|
></el-input>
|
2023-12-12 13:36:08 +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>
|
|
|
|
|
import { listType, getType, delType, addType, updateType, refreshCache } from "@/api/system/dict/type";
|
2023-12-20 20:17:03 +08:00
|
|
|
import { listLabelHistoryList } from "@/api/store/label";
|
2023-12-19 04:26:18 +08:00
|
|
|
import { getTypeList } from "@/api/store/warehousing";
|
2023-12-12 13:36:08 +08:00
|
|
|
export default {
|
2024-01-22 09:18:46 +08:00
|
|
|
name: "LabelBindingHistory",
|
2023-12-12 13:36:08 +08:00
|
|
|
dicts: ['sys_normal_disable'],
|
|
|
|
|
data() {
|
|
|
|
|
return {
|
|
|
|
|
// 遮罩层
|
|
|
|
|
loading: true,
|
|
|
|
|
// 选中数组
|
|
|
|
|
ids: [],
|
|
|
|
|
// 非单个禁用
|
|
|
|
|
single: true,
|
|
|
|
|
// 非多个禁用
|
|
|
|
|
multiple: true,
|
|
|
|
|
// 显示搜索条件
|
|
|
|
|
showSearch: true,
|
|
|
|
|
// 总条数
|
|
|
|
|
total: 0,
|
|
|
|
|
typeList: [],
|
2023-12-19 04:26:18 +08:00
|
|
|
modelList: [],
|
|
|
|
|
// 字典表格数据
|
|
|
|
|
historyList: [],
|
2023-12-12 13:36:08 +08:00
|
|
|
// 弹出层标题
|
|
|
|
|
title: "",
|
|
|
|
|
// 是否显示弹出层
|
|
|
|
|
open: false,
|
|
|
|
|
// 日期范围
|
|
|
|
|
dateRange: [],
|
|
|
|
|
// 查询参数
|
|
|
|
|
queryParams: {
|
|
|
|
|
pageNum: 1,
|
|
|
|
|
pageSize: 10,
|
2023-12-16 14:48:20 +08:00
|
|
|
labelType: undefined,
|
2023-12-12 13:36:08 +08:00
|
|
|
dictType: undefined,
|
|
|
|
|
status: undefined
|
|
|
|
|
},
|
|
|
|
|
// 表单参数
|
|
|
|
|
form: {},
|
|
|
|
|
// 表单校验
|
|
|
|
|
rules: {
|
2023-12-16 14:48:20 +08:00
|
|
|
labelType: [
|
2023-12-12 13:36:08 +08:00
|
|
|
{ required: true, message: "字典名称不能为空", trigger: "blur" }
|
|
|
|
|
],
|
|
|
|
|
dictType: [
|
|
|
|
|
{ required: true, message: "字典类型不能为空", trigger: "blur" }
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
created() {
|
|
|
|
|
this.getList();
|
2023-12-19 04:26:18 +08:00
|
|
|
this.getTypeList();
|
2023-12-12 13:36:08 +08:00
|
|
|
},
|
|
|
|
|
methods: {
|
2023-12-19 04:26:18 +08:00
|
|
|
/** 查询下拉 */
|
|
|
|
|
getTypeList() {
|
2023-12-20 20:17:03 +08:00
|
|
|
getTypeList({ level: '3' }).then(response => {
|
|
|
|
|
this.typeList = response.data;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
getTypeList({ level: '4' }).then(response => {
|
|
|
|
|
this.modelList = response.data;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
},
|
2023-12-12 13:36:08 +08:00
|
|
|
/** 查询字典类型列表 */
|
|
|
|
|
getList() {
|
|
|
|
|
this.loading = true;
|
2023-12-19 04:26:18 +08:00
|
|
|
listLabelHistoryList(this.addDateRange(this.queryParams, this.dateRange)).then(response => {
|
2023-12-20 20:17:03 +08:00
|
|
|
this.historyList = response.rows;
|
|
|
|
|
this.total = response.total;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
}
|
2023-12-12 13:36:08 +08:00
|
|
|
);
|
|
|
|
|
},
|
|
|
|
|
// 取消按钮
|
|
|
|
|
cancel() {
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.reset();
|
|
|
|
|
},
|
|
|
|
|
// 表单重置
|
|
|
|
|
reset() {
|
|
|
|
|
this.form = {
|
2023-12-16 14:48:20 +08:00
|
|
|
labelId: undefined,
|
|
|
|
|
labelType: undefined,
|
2023-12-12 13:36:08 +08:00
|
|
|
dictType: undefined,
|
|
|
|
|
status: "0",
|
|
|
|
|
remark: undefined
|
|
|
|
|
};
|
|
|
|
|
this.resetForm("form");
|
|
|
|
|
},
|
|
|
|
|
/** 搜索按钮操作 */
|
|
|
|
|
handleQuery() {
|
|
|
|
|
this.queryParams.pageNum = 1;
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|
/** 重置按钮操作 */
|
|
|
|
|
resetQuery() {
|
|
|
|
|
this.dateRange = [];
|
|
|
|
|
this.resetForm("queryForm");
|
|
|
|
|
this.handleQuery();
|
|
|
|
|
},
|
|
|
|
|
/** 新增按钮操作 */
|
|
|
|
|
handleAdd() {
|
|
|
|
|
this.reset();
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "添加字典类型";
|
|
|
|
|
},
|
|
|
|
|
// 多选框选中数据
|
|
|
|
|
handleSelectionChange(selection) {
|
2023-12-16 14:48:20 +08:00
|
|
|
this.ids = selection.map(item => item.labelId)
|
2023-12-20 20:17:03 +08:00
|
|
|
this.single = selection.length != 1
|
2023-12-12 13:36:08 +08:00
|
|
|
this.multiple = !selection.length
|
|
|
|
|
},
|
|
|
|
|
/** 修改按钮操作 */
|
|
|
|
|
handleUpdate(row) {
|
|
|
|
|
this.reset();
|
2023-12-16 14:48:20 +08:00
|
|
|
const labelId = row.labelId || this.ids
|
|
|
|
|
getType(labelId).then(response => {
|
2023-12-12 13:36:08 +08:00
|
|
|
this.form = response.data;
|
|
|
|
|
this.open = true;
|
|
|
|
|
this.title = "修改字典类型";
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 提交按钮 */
|
2023-12-20 20:17:03 +08:00
|
|
|
submitForm: function () {
|
2023-12-12 13:36:08 +08:00
|
|
|
this.$refs["form"].validate(valid => {
|
|
|
|
|
if (valid) {
|
2023-12-16 14:48:20 +08:00
|
|
|
if (this.form.labelId != undefined) {
|
2023-12-12 13:36:08 +08:00
|
|
|
updateType(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("修改成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
} else {
|
|
|
|
|
addType(this.form).then(response => {
|
|
|
|
|
this.$modal.msgSuccess("新增成功");
|
|
|
|
|
this.open = false;
|
|
|
|
|
this.getList();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
/** 删除按钮操作 */
|
|
|
|
|
handleDelete(row) {
|
2023-12-16 14:48:20 +08:00
|
|
|
const labelIds = row.labelId || this.ids;
|
2023-12-20 20:17:03 +08:00
|
|
|
this.$modal.confirm('是否确认删除字典编号为"' + labelIds + '"的数据项?').then(function () {
|
2023-12-16 14:48:20 +08:00
|
|
|
return delType(labelIds);
|
2023-12-12 13:36:08 +08:00
|
|
|
}).then(() => {
|
|
|
|
|
this.getList();
|
|
|
|
|
this.$modal.msgSuccess("删除成功");
|
2023-12-20 20:17:03 +08:00
|
|
|
}).catch(() => { });
|
2023-12-12 13:36:08 +08:00
|
|
|
},
|
|
|
|
|
/** 导出按钮操作 */
|
|
|
|
|
handleExport() {
|
2024-01-10 16:29:46 +08:00
|
|
|
// this.download('system/dict/type/export', {
|
|
|
|
|
// ...this.queryParams
|
|
|
|
|
// }, `type_${new Date().getTime()}.xlsx`)
|
2023-12-12 13:36:08 +08:00
|
|
|
},
|
|
|
|
|
/** 刷新缓存按钮操作 */
|
|
|
|
|
handleRefreshCache() {
|
|
|
|
|
refreshCache().then(() => {
|
|
|
|
|
this.$modal.msgSuccess("刷新成功");
|
|
|
|
|
this.$store.dispatch('dict/cleanDict');
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
</script>
|
2024-01-12 10:07:35 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
::v-deep.el-table .fixed-width .el-button--mini {
|
|
|
|
|
width: 60px !important;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
}
|
|
|
|
|
</style>
|