This commit is contained in:
Vinjor 2024-08-04 16:55:31 +08:00
commit ac2ae6afa4
7 changed files with 320 additions and 3 deletions

View File

@ -0,0 +1,53 @@
import request from '@/utils/request'
// 创建标签库
export function createLabel(data) {
return request({
url: '/base/label/create',
method: 'post',
data: data
})
}
// 更新标签库
export function updateLabel(data) {
return request({
url: '/base/label/update',
method: 'put',
data: data
})
}
// 删除标签库
export function deleteLabel(id) {
return request({
url: '/base/label/delete?id=' + id,
method: 'delete'
})
}
// 获得标签库
export function getLabel(id) {
return request({
url: '/base/label/get?id=' + id,
method: 'get'
})
}
// 获得标签库分页
export function getLabelPage(params) {
return request({
url: '/base/label/page',
method: 'get',
params
})
}
// 导出标签库 Excel
export function exportLabelExcel(params) {
return request({
url: '/base/label/export-excel',
method: 'get',
params,
responseType: 'blob'
})
}

View File

@ -102,6 +102,8 @@ export const DICT_TYPE = {
DICT_CAR_NATURE : 'car_nature', DICT_CAR_NATURE : 'car_nature',
//车辆类别 //车辆类别
DICT_CAR_CATEGORY : 'car_category', DICT_CAR_CATEGORY : 'car_category',
//标签样式
DICT_BASE_LABEL_TYPE : 'base_label_type',
} }
/** /**

View File

@ -245,7 +245,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
async handleDelete(row) { async handleDelete(row) {
const id = row.id; const id = row.id;
await this.$modal.confirm('是否确认删除客户管理编号为"' + id + '"的数据项?') await this.$modal.confirm('是否确认删除客户"' + row.cusName)
try { try {
await CustomerMainApi.deleteCustomerMain(id); await CustomerMainApi.deleteCustomerMain(id);
await this.getList(); await this.getList();

View File

@ -228,7 +228,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
async handleDelete(row) { async handleDelete(row) {
const id = row.id; const id = row.id;
await this.$modal.confirm('是否确认删除客户名称为"' + row.cusName + '"的数据项?') await this.$modal.confirm('是否确认删除客户"' + row.cusName )
try { try {
await CustomerMainApi.deleteCustomerMain(id); await CustomerMainApi.deleteCustomerMain(id);
await this.getList(); await this.getList();

View File

@ -209,7 +209,7 @@ export default {
/** 删除按钮操作 */ /** 删除按钮操作 */
async handleDelete(row) { async handleDelete(row) {
const id = row.id; const id = row.id;
await this.$modal.confirm('是否确认删除客户管理编号为"' + id + '"的数据项?') await this.$modal.confirm('是否确认删除客户"' + row.cusName)
try { try {
await CustomerMainApi.deleteCustomerMain(id); await CustomerMainApi.deleteCustomerMain(id);
await this.getList(); await this.getList();

View File

@ -0,0 +1,114 @@
<template>
<div class="app-container">
<!-- 对话框(添加 / 修改) -->
<el-dialog :title="dialogTitle" :visible.sync="dialogVisible" width="45%" v-dialogDrag append-to-body>
<el-form ref="formRef" :model="formData" :rules="formRules" v-loading="formLoading" label-width="100px">
<el-form-item label="标签名称" prop="labelName">
<el-input v-model="formData.labelName" placeholder="请输入标签名称"/>
</el-form-item>
<el-form-item label="标签样式" prop="labelType">
<el-select v-model="formData.labelType" placeholder="请选择标签样式">
<el-option v-for="dict in this.getDictDatas(DICT_TYPE.DICT_BASE_LABEL_TYPE)"
:key="dict.value" :label="dict.label" :value="dict.value"/>
</el-select>
实例<el-tag :type="formData.labelType">{{ formData.labelName }}</el-tag>
</el-form-item>
<el-form-item label="标签描述" prop="labelDesc">
<el-input v-model="formData.labelDesc" placeholder="请输入标签描述"/>
</el-form-item>
</el-form>
<div slot="footer" class="dialog-footer">
<el-button type="primary" @click="submitForm" :disabled="formLoading"> </el-button>
<el-button @click="dialogVisible = false"> </el-button>
</div>
</el-dialog>
</div>
</template>
<script>
import * as LabelApi from '@/api/base/label';
export default {
name: "LabelForm",
components: {},
data() {
return {
//
dialogTitle: "",
//
dialogVisible: false,
// 12
formLoading: false,
//
formData: {
id: undefined,
labelName: undefined,
labelDesc: undefined,
labelType: undefined
},
//
formRules: {
labelName: [
{required: true, message: '请输入标签名称', trigger: 'blur'},
],
labelType: [
{required: true, message: '请选择标签样式', trigger: 'blur'},
],
},
};
},
methods: {
/** 打开弹窗 */
async open(id) {
this.dialogVisible = true;
this.reset();
//
if (id) {
this.formLoading = true;
try {
const res = await LabelApi.getLabel(id);
this.formData = res.data;
this.title = "修改标签库";
} finally {
this.formLoading = false;
}
}
this.title = "新增标签库";
},
/** 提交按钮 */
async submitForm() {
//
await this.$refs["formRef"].validate();
this.formLoading = true;
try {
const data = this.formData;
//
if (data.id) {
await LabelApi.updateLabel(data);
this.$modal.msgSuccess("修改成功");
this.dialogVisible = false;
this.$emit('success');
return;
}
//
await LabelApi.createLabel(data);
this.$modal.msgSuccess("新增成功");
this.dialogVisible = false;
this.$emit('success');
} finally {
this.formLoading = false;
}
},
/** 表单重置 */
reset() {
this.formData = {
id: undefined,
labelName: undefined,
labelDesc: undefined,
systemCode: undefined,
};
this.resetForm("formRef");
}
}
};
</script>

View File

@ -0,0 +1,148 @@
<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" @click="handleQuery">搜索</el-button>
<el-button icon="el-icon-refresh" @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="openForm(undefined)"
v-hasPermi="['base:label:create']">新增
</el-button>
</el-col>
<right-toolbar :showSearch.sync="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="list" :stripe="true" :show-overflow-tooltip="true">
<el-table-column label="标签名称" align="center" prop="labelName"/>
<el-table-column label="标签样式" align="center" prop="labelType">
<template v-slot="scope">
<dict-tag :type="DICT_TYPE.DICT_BASE_LABEL_TYPE" :value="scope.row.labelType" />
</template>
</el-table-column>
<el-table-column label="标签描述" align="center" prop="labelDesc"/>
<el-table-column label="创建时间" align="center" prop="createTime" width="180">
<template v-slot="scope">
<span>{{ parseTime(scope.row.createTime) }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template v-slot="scope">
<el-button size="mini" type="text" icon="el-icon-edit" @click="openForm(scope.row.id)"
v-hasPermi="['base:label:update']">修改
</el-button>
<el-button size="mini" type="text" icon="el-icon-delete" @click="handleDelete(scope.row)"
v-hasPermi="['base:label:delete']">删除
</el-button>
</template>
</el-table-column>
</el-table>
<!-- 分页组件 -->
<pagination v-show="total > 0" :total="total" :page.sync="queryParams.pageNo" :limit.sync="queryParams.pageSize"
@pagination="getList"/>
<!-- 对话框(添加 / 修改) -->
<LabelForm ref="formRef" @success="getList"/>
</div>
</template>
<script>
import * as LabelApi from '@/api/base/label';
import LabelForm from './LabelForm.vue';
export default {
name: "Label",
components: {
LabelForm,
},
data() {
return {
//
loading: true,
//
exportLoading: false,
//
showSearch: true,
//
total: 0,
//
list: [],
//
isExpandAll: true,
//
refreshTable: true,
//
currentRow: {},
//
queryParams: {
pageNo: 1,
pageSize: 10,
labelName: null,
labelDesc: null,
systemCode: null,
createTime: [],
},
};
},
created() {
this.getList();
},
methods: {
/** 查询列表 */
async getList() {
try {
this.loading = true;
const res = await LabelApi.getLabelPage(this.queryParams);
this.list = res.data.records;
this.total = res.data.total;
} finally {
this.loading = false;
}
},
/** 搜索按钮操作 */
handleQuery() {
this.queryParams.pageNo = 1;
this.getList();
},
/** 重置按钮操作 */
resetQuery() {
this.resetForm("queryForm");
this.handleQuery();
},
/** 添加/修改操作 */
openForm(id) {
this.$refs["formRef"].open(id);
},
/** 删除按钮操作 */
async handleDelete(row) {
const id = row.id;
await this.$modal.confirm('是否确认删除标签库编号为"' + id + '"的数据项?')
try {
await LabelApi.deleteLabel(id);
await this.getList();
this.$modal.msgSuccess("删除成功");
} catch {
}
},
/** 导出按钮操作 */
async handleExport() {
await this.$modal.confirm('是否确认导出所有标签库数据项?');
try {
this.exportLoading = true;
const data = await LabelApi.exportLabelExcel(this.queryParams);
this.$download.excel(data, '标签库.xls');
} catch {
} finally {
this.exportLoading = false;
}
},
}
};
</script>