feat(goods): 新增文章编辑功能并优化列表页面

- 新增文章编辑页面,支持添加和编辑文章
- 优化文章列表页面,增加详情对话框和删除功能
- 更新相关 API 接口,支持文章添加和编辑- 调整用户列表页面布局
- 移除底部边框样式
This commit is contained in:
2025-05-11 22:05:00 +08:00
parent 480f1e02ed
commit e6ceacfae1
5 changed files with 123 additions and 48 deletions

View File

@@ -7,9 +7,11 @@
@resetData="resetData"
class="search-box searchForm"
/>
<el-button type="primary" @click="handleAdd">新增用户</el-button>
</div>
<div class="gva-table-box">
<div class="gva-btn-list">
<el-button type="primary" @click="handleAdd">新增用户</el-button>
</div>
<Content
@changePage="changePage"
:total="total"
@@ -359,13 +361,4 @@
}
</script>
<style lang="scss" scoped>
.searchForm {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
}
.el-descriptions {
margin: 20px 0;
}
</style>