feat: #10000 暂存

This commit is contained in:
赵世界 2022-09-01 18:56:36 +08:00
parent cd6ec5d6a6
commit 1340c4fe47
8 changed files with 19 additions and 13 deletions

View File

@ -4,7 +4,7 @@
<el-button type="primary" @click="handAdd">新增</el-button> <el-button type="primary" @click="handAdd">新增</el-button>
<!-- 列表 --> <!-- 列表 -->
<div class="table"> <div class="table" style="margin-top: 20px">
<el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%"
@selection-change="handleSelectionChange"> @selection-change="handleSelectionChange">
<el-table-column prop="name" label="商品品牌"> </el-table-column> <el-table-column prop="name" label="商品品牌"> </el-table-column>
@ -180,6 +180,6 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.block { .block {
margin-top: 30px; margin-top: 20px;
} }
</style> </style>

View File

@ -51,7 +51,7 @@
</div> </div>
</el-card> </el-card>
<el-card style="margin-top: 30px"> <el-card style="margin-top: 20px">
<div> <div>
<!-- 表格头部操作 --> <!-- 表格头部操作 -->
<div> <div>

View File

@ -4,7 +4,7 @@
<el-button type="primary" @click="handAdd">新增</el-button> <el-button type="primary" @click="handAdd">新增</el-button>
<!-- 列表 --> <!-- 列表 -->
<div class="table"> <div class="table" style="margin-top: 20px">
<el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%" <el-table ref="multipleTable" :data="tableData" tooltip-effect="dark" style="width: 100%"
@selection-change="handleSelectionChange"> @selection-change="handleSelectionChange">
<el-table-column prop="name" label="商品种类"> </el-table-column> <el-table-column prop="name" label="商品种类"> </el-table-column>
@ -181,6 +181,6 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.block { .block {
margin-top: 30px; margin-top: 20px;
} }
</style> </style>

View File

@ -49,7 +49,7 @@
</el-card> </el-card>
<!-- 表格 --> <!-- 表格 -->
<el-card style="margin-top: 30px" class="box-card"> <el-card style="margin-top: 20px" class="box-card">
<el-table :data="tableData" border style="width: 100%"> <el-table :data="tableData" border style="width: 100%">
<el-table-column prop="id" label="序号" width="75"> </el-table-column> <el-table-column prop="id" label="序号" width="75"> </el-table-column>
<el-table-column prop="module" label="模块" width="70"> </el-table-column> <el-table-column prop="module" label="模块" width="70"> </el-table-column>
@ -361,7 +361,7 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.block { .block {
margin-top: 30px; margin-top: 20px;
} }
::v-deep .el-card__body { ::v-deep .el-card__body {

View File

@ -27,7 +27,7 @@
</el-card> </el-card>
<!-- 表格 --> <!-- 表格 -->
<el-card style="margin-top: 30px"> <el-card style="margin-top: 20px">
<el-table :data="tableData" style="width: 100%" border> <el-table :data="tableData" style="width: 100%" border>
<el-table-column prop="id" label="序号" width="70"> </el-table-column> <el-table-column prop="id" label="序号" width="70"> </el-table-column>
<el-table-column prop="created_at" label="时间" width="200"> <el-table-column prop="created_at" label="时间" width="200">
@ -175,3 +175,9 @@ export default {
}, },
}; };
</script> </script>
<style lang="scss" scoped>
.block {
margin-top: 20px;
}
</style>

View File

@ -3,7 +3,7 @@
<!-- 新增按钮 --> <!-- 新增按钮 -->
<el-button type="primary" @click="handAdd">新增</el-button> <el-button type="primary" @click="handAdd">新增</el-button>
<div class="table"> <div class="table" style="margin-top: 20px">
<el-table :data="tableData" style="width: 100%"> <el-table :data="tableData" style="width: 100%">
<el-table-column prop="id" label="ID" width="180"> </el-table-column> <el-table-column prop="id" label="ID" width="180"> </el-table-column>
<el-table-column prop="name" label="店铺名称" width="180"> <el-table-column prop="name" label="店铺名称" width="180">
@ -159,6 +159,6 @@ a {
color: white; color: white;
} }
.block { .block {
margin-top: 30px; margin-top: 20px;
} }
</style> </style>

View File

@ -21,7 +21,7 @@
<el-button type="primary" @click="dialogVisible2 = true">新增</el-button> <el-button type="primary" @click="dialogVisible2 = true">新增</el-button>
<!-- 角色列表 --> <!-- 角色列表 -->
<div class="table"> <div class="table" style="margin-top: 20px">
<el-table :data="tableList" style="width: 100%"> <el-table :data="tableList" style="width: 100%">
<el-table-column prop="id" label="ID"> </el-table-column> <el-table-column prop="id" label="ID"> </el-table-column>
<el-table-column prop="name" label="角色名称"> </el-table-column> <el-table-column prop="name" label="角色名称"> </el-table-column>

View File

@ -75,7 +75,7 @@
<el-button type="primary" @click="dialogVisible = true">新增</el-button> <el-button type="primary" @click="dialogVisible = true">新增</el-button>
<!-- 用户列表 --> <!-- 用户列表 -->
<div class="table"> <div class="table" style="margin-top: 20px">
<template> <template>
<el-table :data="tableList" style="width: 100%"> <el-table :data="tableList" style="width: 100%">
<el-table-column prop="id" label="ID"></el-table-column> <el-table-column prop="id" label="ID"></el-table-column>
@ -228,6 +228,6 @@ export default {
<style lang="scss" scoped> <style lang="scss" scoped>
.block { .block {
margin-top: 30px; margin-top: 20px;
} }
</style> </style>