feat: 添加abp的后台管理

This commit is contained in:
橙子
2023-12-11 22:14:13 +08:00
parent 27a2849619
commit aa49398c29
20 changed files with 433 additions and 23 deletions

View File

@@ -62,6 +62,11 @@ namespace Yi.Framework.Ddd.Application
{ {
} }
public override Task<PagedResultDto<TGetListOutputDto>> GetListAsync(TGetListInput input)
{
throw new NotImplementedException($"【{typeof(TEntity)}】实体的CrudAppService查询为具体业务通用查询几乎无实际场景请重写实现");
}
/// <summary> /// <summary>
/// 偷梁换柱 /// 偷梁换柱
/// </summary> /// </summary>
@@ -72,7 +77,7 @@ namespace Yi.Framework.Ddd.Application
{ {
await Repository.DeleteManyAsync(id); await Repository.DeleteManyAsync(id);
} }
[RemoteService(isEnabled:false)] [RemoteService(isEnabled: false)]
public override Task DeleteAsync(TKey id) public override Task DeleteAsync(TKey id)
{ {
return base.DeleteAsync(id); return base.DeleteAsync(id);

View File

@@ -1,8 +1,9 @@
using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Dtos;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
{ {
public class ArticleGetListInputVo : PagedAndSortedResultRequestDto public class ArticleGetListInputVo : PagedAllResultRequestDto
{ {
public string? Content { get; set; } public string? Content { get; set; }
public string? Name { get; set; } public string? Name { get; set; }

View File

@@ -10,5 +10,7 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
public Guid DiscussId { get; set; } public Guid DiscussId { get; set; }
public List<ArticleGetListOutputDto>? Children { get; set; } public List<ArticleGetListOutputDto>? Children { get; set; }
public DateTime CreationTime { get; set; }
} }
} }

View File

@@ -8,5 +8,7 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Article
public string Name { get; set; } public string Name { get; set; }
public Guid DiscussId { get; set; } public Guid DiscussId { get; set; }
public Guid ParentId { get; set; } public Guid ParentId { get; set; }
public DateTime CreationTime { get; set; }
} }
} }

View File

@@ -8,5 +8,7 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
public string Name { get; set; } public string Name { get; set; }
public string? Logo { get; set; } public string? Logo { get; set; }
public string? Introduction { get; set; } public string? Introduction { get; set; }
public string Code { get; set; }
} }
} }

View File

@@ -1,11 +1,11 @@
using Volo.Abp.Application.Dtos; using Volo.Abp.Application.Dtos;
using Yi.Framework.Ddd.Application.Contracts;
namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
{ {
public class PlateGetListInputVo : PagedAndSortedResultRequestDto public class PlateGetListInputVo : PagedAllResultRequestDto
{ {
public string? Name { get; set; } public string? Name { get; set; }
public string? Logo { get; set; } public string? Code { get; set; }
public string? Introduction { get; set; }
} }
} }

View File

@@ -8,5 +8,9 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
public string Name { get; set; } public string Name { get; set; }
public string? Logo { get; set; } public string? Logo { get; set; }
public string? Introduction { get; set; } public string? Introduction { get; set; }
public string Code { get; set; }
public DateTime CreationTime { get; set; }
} }
} }

View File

@@ -7,5 +7,8 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
public string Name { get; set; } public string Name { get; set; }
public string? Logo { get; set; } public string? Logo { get; set; }
public string? Introduction { get; set; } public string? Introduction { get; set; }
public string Code { get; set; }
public DateTime CreationTime { get; set; }
} }
} }

View File

@@ -5,5 +5,7 @@ namespace Yi.Framework.Bbs.Application.Contracts.Dtos.Plate
public string? Name { get; set; } public string? Name { get; set; }
public string? Logo { get; set; } public string? Logo { get; set; }
public string? Introduction { get; set; } public string? Introduction { get; set; }
public string? Code { get; set; }
} }
} }

View File

@@ -3,8 +3,12 @@ using Mapster;
using Microsoft.AspNetCore.Http; using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.DependencyInjection;
using SqlSugar;
using Volo.Abp; using Volo.Abp;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Domain.Repositories;
using Yi.Framework.Bbs.Application.Contracts.Dtos.Article; using Yi.Framework.Bbs.Application.Contracts.Dtos.Article;
using Yi.Framework.Bbs.Application.Contracts.Dtos.Plate;
using Yi.Framework.Bbs.Application.Contracts.IServices; using Yi.Framework.Bbs.Application.Contracts.IServices;
using Yi.Framework.Bbs.Domain.Entities; using Yi.Framework.Bbs.Domain.Entities;
using Yi.Framework.Bbs.Domain.Repositories; using Yi.Framework.Bbs.Domain.Repositories;
@@ -37,6 +41,19 @@ namespace Yi.Framework.Bbs.Application.Services
private IArticleRepository _articleRepository { get; set; } private IArticleRepository _articleRepository { get; set; }
private ISqlSugarRepository<DiscussEntity> _discussRepository { get; set; } private ISqlSugarRepository<DiscussEntity> _discussRepository { get; set; }
private IDiscussService _discussService { get; set; } private IDiscussService _discussService { get; set; }
public override async Task<PagedResultDto<ArticleGetListOutputDto>> GetListAsync(ArticleGetListInputVo input)
{
RefAsync<int> total = 0;
var entities = await _articleRepository._DbQueryable.WhereIF(!string.IsNullOrEmpty(input.Name), x => x.Name.Contains(input.Name!))
//.WhereIF(!string.IsNullOrEmpty(input.Code), x => x.Name.Contains(input.Code!))
.WhereIF(input.StartTime is not null && input.EndTime is not null, x => x.CreationTime >= input.StartTime && x.CreationTime <= input.EndTime)
.ToPageListAsync(input.SkipCount, input.MaxResultCount, total);
return new PagedResultDto<ArticleGetListOutputDto>(total, await MapToGetListOutputDtosAsync(entities));
}
/// <summary> /// <summary>
/// 获取文章全部平铺信息 /// 获取文章全部平铺信息
/// </summary> /// </summary>

View File

@@ -1,8 +1,12 @@
using SqlSugar;
using Volo.Abp.Application.Dtos;
using Volo.Abp.Domain.Repositories; using Volo.Abp.Domain.Repositories;
using Yi.Framework.Bbs.Application.Contracts.Dtos.Plate; using Yi.Framework.Bbs.Application.Contracts.Dtos.Plate;
using Yi.Framework.Bbs.Application.Contracts.IServices; using Yi.Framework.Bbs.Application.Contracts.IServices;
using Yi.Framework.Bbs.Domain.Entities; using Yi.Framework.Bbs.Domain.Entities;
using Yi.Framework.Ddd.Application; using Yi.Framework.Ddd.Application;
using Yi.Framework.Rbac.Application.Contracts.Dtos.Config;
using Yi.Framework.SqlSugarCore.Abstractions;
namespace Yi.Framework.Bbs.Application.Services namespace Yi.Framework.Bbs.Application.Services
{ {
@@ -12,8 +16,21 @@ namespace Yi.Framework.Bbs.Application.Services
public class PlateService : YiCrudAppService<PlateEntity, PlateGetOutputDto, PlateGetListOutputDto, Guid, PlateGetListInputVo, PlateCreateInputVo, PlateUpdateInputVo>, public class PlateService : YiCrudAppService<PlateEntity, PlateGetOutputDto, PlateGetListOutputDto, Guid, PlateGetListInputVo, PlateCreateInputVo, PlateUpdateInputVo>,
IPlateService IPlateService
{ {
public PlateService(IRepository<PlateEntity, Guid> repository) : base(repository) private ISqlSugarRepository<PlateEntity, Guid> _repository;
public PlateService(ISqlSugarRepository<PlateEntity, Guid> repository) : base(repository)
{ {
_repository= repository;
}
public override async Task<PagedResultDto<PlateGetListOutputDto>> GetListAsync(PlateGetListInputVo input)
{
RefAsync<int> total = 0;
var entities = await _repository._DbQueryable.WhereIF(!string.IsNullOrEmpty(input.Name), x => x.Name.Contains(input.Name!))
.WhereIF(!string.IsNullOrEmpty(input.Code), x => x.Name.Contains(input.Code!))
.WhereIF(input.StartTime is not null && input.EndTime is not null, x => x.CreationTime >= input.StartTime && x.CreationTime <= input.EndTime)
.ToPageListAsync(input.SkipCount, input.MaxResultCount, total);
return new PagedResultDto<PlateGetListOutputDto>(total, await MapToGetListOutputDtosAsync(entities));
} }
} }
} }

View File

@@ -1,11 +1,12 @@
using SqlSugar; using SqlSugar;
using Volo.Abp; using Volo.Abp;
using Volo.Abp.Auditing;
using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Entities;
namespace Yi.Framework.Bbs.Domain.Entities namespace Yi.Framework.Bbs.Domain.Entities
{ {
[SugarTable("Article")] [SugarTable("Article")]
public class ArticleEntity : Entity<Guid>, ISoftDelete public class ArticleEntity : Entity<Guid>, ISoftDelete,IAuditedObject
{ {
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)] [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public override Guid Id { get; protected set; } public override Guid Id { get; protected set; }
@@ -23,6 +24,15 @@ namespace Yi.Framework.Bbs.Domain.Entities
[SugarColumn(IsIgnore = true)] [SugarColumn(IsIgnore = true)]
public List<ArticleEntity>? Children { get; set; } public List<ArticleEntity>? Children { get; set; }
public DateTime CreationTime { get; set; }
public Guid? CreatorId { get; set; }
public Guid? LastModifierId { get; set; }
public DateTime? LastModificationTime { get; set; }
} }
public static class ArticleEntityExtensions public static class ArticleEntityExtensions

View File

@@ -1,18 +1,31 @@
using SqlSugar; using SqlSugar;
using Volo.Abp.Domain.Entities; using Volo.Abp.Domain.Entities;
using Volo.Abp; using Volo.Abp;
using Volo.Abp.Auditing;
namespace Yi.Framework.Bbs.Domain.Entities namespace Yi.Framework.Bbs.Domain.Entities
{ {
[SugarTable("Plate")] [SugarTable("Plate")]
public class PlateEntity : Entity<Guid>, ISoftDelete public class PlateEntity : Entity<Guid>, ISoftDelete,IAuditedObject
{ {
[SugarColumn(ColumnName = "Id", IsPrimaryKey = true)] [SugarColumn(ColumnName = "Id", IsPrimaryKey = true)]
public override Guid Id { get; protected set; } public override Guid Id { get; protected set; }
public string Code { get; set; }
public string Name { get; set; } public string Name { get; set; }
public string? Logo { get; set; } public string? Logo { get; set; }
public string? Introduction { get; set; } public string? Introduction { get; set; }
public bool IsDeleted { get; set; } public bool IsDeleted { get; set; }
public DateTime CreationTime { get; set; }
public Guid? CreatorId { get; set; }
public Guid? LastModifierId { get; set; }
public DateTime? LastModificationTime { get; set; }
} }
} }

View File

@@ -55,7 +55,7 @@ namespace Yi.Abp.Web
//动态Api //动态Api
Configure<AbpAspNetCoreMvcOptions>(options => Configure<AbpAspNetCoreMvcOptions>(options =>
{ {
options.ConventionalControllers.Create(typeof(YiAbpApplicationModule).Assembly,options=>options.RemoteServiceName="default"); options.ConventionalControllers.Create(typeof(YiAbpApplicationModule).Assembly, options => options.RemoteServiceName = "default");
options.ConventionalControllers.Create(typeof(YiFrameworkRbacApplicationModule).Assembly, options => options.RemoteServiceName = "rbac"); options.ConventionalControllers.Create(typeof(YiFrameworkRbacApplicationModule).Assembly, options => options.RemoteServiceName = "rbac");
options.ConventionalControllers.Create(typeof(YiFrameworkBbsApplicationModule).Assembly, options => options.RemoteServiceName = "bbs"); options.ConventionalControllers.Create(typeof(YiFrameworkBbsApplicationModule).Assembly, options => options.RemoteServiceName = "bbs");
}); });
@@ -63,7 +63,6 @@ namespace Yi.Abp.Web
//设置api格式 //设置api格式
service.AddControllers().AddNewtonsoftJson(options => service.AddControllers().AddNewtonsoftJson(options =>
{ {
// options.SerializerSettings.Converters.Add(new DateTimeJsonConverter("yyyy-MM-dd HH:mm:ss"));
options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss"; options.SerializerSettings.DateFormatString = "yyyy-MM-dd HH:mm:ss";
}); });
Configure<AbpJsonOptions>(options => Configure<AbpJsonOptions>(options =>
@@ -76,7 +75,10 @@ namespace Yi.Abp.Web
}); });
//Swagger //Swagger
context.Services.AddYiSwaggerGen<YiAbpWebModule>(); context.Services.AddYiSwaggerGen<YiAbpWebModule>(options =>
{
options.SwaggerDoc("default", new OpenApiInfo { Title = "Yi.Framework.Abp", Version = "v1",Description="集大成者" });
});
//跨域 //跨域
context.Services.AddCors(options => context.Services.AddCors(options =>
@@ -145,10 +147,10 @@ namespace Yi.Abp.Web
app.UseRouting(); app.UseRouting();
//跨域 //跨域
app.UseCors(DefaultCorsPolicyName); app.UseCors(DefaultCorsPolicyName);
//鉴权 //鉴权
app.UseAuthentication(); app.UseAuthentication();

View File

@@ -3,7 +3,7 @@
// 分页查询 // 分页查询
export function listData(query) { export function listData(query) {
return request({ return request({
url: '/article/pageList', url: '/article',
method: 'get', method: 'get',
params: query params: query
}) })
@@ -12,7 +12,7 @@ export function listData(query) {
// id查询 // id查询
export function getData(code) { export function getData(code) {
return request({ return request({
url: '/article/getById/' + code, url: '/article/' + code,
method: 'get' method: 'get'
}) })
} }
@@ -20,7 +20,7 @@ export function getData(code) {
// 新增 // 新增
export function addData(data) { export function addData(data) {
return request({ return request({
url: '/article/add', url: '/article',
method: 'post', method: 'post',
data: data data: data
}) })
@@ -29,17 +29,17 @@ export function addData(data) {
// 修改 // 修改
export function updateData(data) { export function updateData(data) {
return request({ return request({
url: '/article/update', url: `/article/${data.id}`,
method: 'put', method: 'put',
data: data data: data
}) })
} }
// 删除 // 删除
export function delData(code) { export function delData(ids) {
return request({ return request({
url: '/article/delList', url: '/article',
method: 'delete', method: 'delete',
data:"string"==typeof(code)?[code]:code params:{id:ids}
}) })
} }

View File

@@ -0,0 +1,47 @@
import request from '@/utils/request'
/* 以下为api的模板通用的crud将以下变量替换即可
plate : 实体模型
*/
// 分页查询
export function listData(query) {
return request({
url: '/plate',
method: 'get',
params: query
})
}
// id查询
export function getData(id) {
return request({
url: `/plate/${id}`,
method: 'get'
})
}
// 新增
export function addData(data) {
return request({
url: '/plate',
method: 'post',
data: data
})
}
// 修改
export function updateData(id,data) {
return request({
url: `/plate/${id}`,
method: 'put',
data: data
})
}
// 删除
export function delData(ids) {
return request({
url: `/plate`,
method: 'delete',
params:{id:ids}
})
}

View File

@@ -40,7 +40,8 @@ export function updateData(id,data) {
// 删除 // 删除
export function delData(ids) { export function delData(ids) {
return request({ return request({
url: `/@model@/${ids}`, url: `/@model@`,
method: 'delete', method: 'delete',
params:{id:ids}
}) })
} }

View File

@@ -0,0 +1,282 @@
<template>
<div class="app-container">
<el-form :model="queryParams" ref="queryRef" :inline="true" v-show="showSearch" label-width="100px">
<el-form-item label="板块名称" prop="name">
<el-input v-model="queryParams.name" placeholder="请输入板块名称" clearable style="width: 240px"
@keyup.enter="handleQuery" prop="name" />
</el-form-item>
<el-form-item label="板块编号" prop="code">
<el-input v-model="queryParams.code" placeholder="请输入板块编号" clearable style="width: 240px"
@keyup.enter="handleQuery" prop="code" />
</el-form-item>
<el-form-item label="状态" prop="isDeleted">
<el-select
v-model="queryParams.isDeleted"
placeholder="状态"
clearable
style="width: 240px"
>
<el-option
v-for="dict in sys_normal_disable"
:key="dict.value"
:label="dict.label"
:value="dict.value"
/>
</el-select>
</el-form-item>
<el-form-item label="创建时间" style="width: 308px">
<el-date-picker
v-model="dateRange"
value-format="YYYY-MM-DD"
type="daterange"
range-separator="-"
start-placeholder="开始日期"
end-placeholder="结束日期"
></el-date-picker>
</el-form-item>
<el-form-item>
<el-button type="primary" icon="Search" @click="handleQuery">搜索</el-button>
<el-button 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="Plus" @click="handleAdd" v-hasPermi="['bbs:plate:add']">新增</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="success" plain icon="Edit" :disabled="single" @click="handleUpdate"
v-hasPermi="['bbs:plate:edit']">修改</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="danger" plain icon="Delete" :disabled="multiple" @click="handleDelete"
v-hasPermi="['bbs:plate:remove']">删除</el-button>
</el-col>
<el-col :span="1.5">
<el-button type="warning" plain icon="Download" @click="handleExport"
v-hasPermi="['bbs:plate:export']">导出</el-button>
</el-col>
<right-toolbar v-model:showSearch="showSearch" @queryTable="getList"></right-toolbar>
</el-row>
<el-table v-loading="loading" :data="dataList" @selection-change="handleSelectionChange">
<el-table-column type="selection" width="55" align="center" />
<!-----------------------这里开始就是数据表单的全部列------------------------>
<el-table-column label="板块编号" align="center" prop="code" />
<el-table-column label="板块名称" align="center" prop="name" :show-overflow-tooltip="true" />
<!-- <el-table-column label="备注" align="center" prop="remarks" :show-overflow-tooltip="true" /> -->
<!-- <el-table-column label="状态" align="center" prop="isDeleted">
<template #default="scope">
<dict-tag
:options="sys_normal_disable"
:value="scope.row.isDeleted"
/>
</template>
</el-table-column> -->
<el-table-column
label="简介"
align="center"
prop="introduction"
:show-overflow-tooltip="true"
/>
<el-table-column
label="创建时间"
align="center"
prop="creationTime"
width="180"
>
<template #default="scope">
<span>{{ parseTime(scope.row.creationTime) }}</span>
</template>
</el-table-column>
<el-table-column label="操作" align="center" class-name="small-padding fixed-width">
<template #default="scope">
<el-button type="text" icon="Edit" @click="handleUpdate(scope.row)"
v-hasPermi="['bbs:plate:edit']">修改</el-button>
<el-button type="text" icon="Delete" @click="handleDelete(scope.row)"
v-hasPermi="['bbs:plate:remove']">删除</el-button>
</template>
</el-table-column>
</el-table>
<pagination v-show="total > 0" :total="Number(total)" v-model:page="queryParams.skipCount"
v-model:limit="queryParams.maxResultCount" @pagination="getList" />
<!-- ---------------------这里是新增和更新的对话框--------------------- -->
<el-dialog :title="title" v-model="open" width="600px" append-to-body>
<el-form ref="dataRef" :model="form" :rules="rules" label-width="100px">
<el-form-item label="板块编码" prop="code">
<el-input v-model="form.code" placeholder="请输入板块编码" />
</el-form-item>
<el-form-item label="板块名称" prop="name">
<el-input v-model="form.name" placeholder="请输入板块名称" />
</el-form-item>
<el-form-item label="板块Logo" prop="logo">
<el-input v-model="form.logo" placeholder="请输入板块图片连接" />
</el-form-item>
<!-- <el-form-item label="状态" prop="isDeleted">
<el-radio-group v-model="form.isDeleted">
<el-radio
v-for="dict in sys_normal_disable"
:key="dict.value"
:label="JSON.parse(dict.value)"
>{{ dict.label }}</el-radio
>
</el-radio-group>
</el-form-item> -->
<el-form-item label="简介" prop="introduction">
<el-input v-model="form.introduction" type="textarea" placeholder="请输入内容"></el-input>
</el-form-item>
</el-form>
<template #footer>
<div class="dialog-footer">
<el-button type="primary" @click="submitForm"> </el-button>
<el-button @click="cancel"> </el-button>
</div>
</template>
</el-dialog>
</div>
</template>
<script setup>
import {
listData,
getData,
delData,
addData,
updateData,
} from "@/api/bbs/plateApi";
import { ref } from "@vue/reactivity";
const { proxy } = getCurrentInstance();
const { sys_normal_disable } = proxy.useDict("sys_normal_disable");
const dataList = ref([]);
const open = ref(false);
const loading = ref(true);
const showSearch = ref(true);
const ids = ref([]);
const single = ref(true);
const multiple = ref(true);
const total = ref(0);
const title = ref("");
const dateRange = ref([]);
const data = reactive({
form: {},
queryParams: {
skipCount: 1,
maxResultCount: 10,
name: undefined,
code: undefined,
},
rules: {
code: [{ required: true, message: "板块编号不能为空", trigger: "blur" }],
name: [{ required: true, message: "板块名称不能为空", trigger: "blur" }],
},
});
const { queryParams, form, rules } = toRefs(data);
/** 查询列表 */
function getList() {
loading.value = true;
listData(proxy.addDateRange(queryParams.value, dateRange.value)).then(
(response) => {
dataList.value = response.data.items;
total.value = response.data.totalCount;
loading.value = false;
}
);
}
/** 取消按钮 */
function cancel() {
open.value = false;
reset();
}
/** 表单重置 */
function reset() {
proxy.resetForm("dataRef");
}
/** 搜索按钮操作 */
function handleQuery() {
queryParams.value.skipCount = 1;
getList();
}
/** 重置按钮操作 */
function resetQuery() {
dateRange.value = [];
proxy.resetForm("queryRef");
handleQuery();
}
/** 新增按钮操作 */
function handleAdd() {
reset();
open.value = true;
title.value = "添加板块";
}
/** 多选框选中数据 */
function handleSelectionChange(selection) {
ids.value = selection.map((item) => item.id);
single.value = selection.length != 1;
multiple.value = !selection.length;
}
/** 修改按钮操作 */
function handleUpdate(row) {
reset();
const id = row.id || ids.value;
getData(id).then((response) => {
form.value = response.data;
open.value = true;
title.value = "修改板块";
});
}
/** 提交按钮 */
function submitForm() {
proxy.$refs["dataRef"].validate((valid) => {
if (valid) {
if (form.value.id != undefined) {
updateData(form.value.id, form.value).then((response) => {
proxy.$modal.msgSuccess("修改成功");
open.value = false;
getList();
});
} else {
addData(form.value).then((response) => {
proxy.$modal.msgSuccess("新增成功");
open.value = false;
getList();
});
}
}
});
}
/** 删除按钮操作 */
function handleDelete(row) {
const delIds = row.id || ids.value;
proxy.$modal
.confirm('是否确认删除编号为"' + delIds + '"的数据项?')
.then(function () {
return delData(delIds);
})
.then(() => {
getList();
proxy.$modal.msgSuccess("删除成功");
})
.catch(() => { });
}
/** 导出按钮操作 */
function handleExport() { }
getList();
</script>

View File

@@ -92,11 +92,11 @@
<el-table-column <el-table-column
label="创建时间" label="创建时间"
align="center" align="center"
prop="createTime" prop="creationTime"
width="180" width="180"
> >
<template #default="scope"> <template #default="scope">
<span>{{ parseTime(scope.row.createTime) }}</span> <span>{{ parseTime(scope.row.creationTime) }}</span>
</template> </template>
</el-table-column> --> </el-table-column> -->
<el-table-column label="操作" align="center" class-name="small-padding fixed-width"> <el-table-column label="操作" align="center" class-name="small-padding fixed-width">