mirror of
https://gitee.com/victor123/jjjerp-java.git
synced 2025-12-06 23:13:28 +08:00
样式修复
This commit is contained in:
parent
bc2d2d8305
commit
3e03b110e9
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="product-list bgset">
|
||||
<div class="product-list bgset set-main">
|
||||
<!--搜索表单-->
|
||||
<div class="common-seach-wrap">
|
||||
<el-form
|
||||
@ -28,7 +28,8 @@
|
||||
>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="common-level-rail">
|
||||
<div class="common-level-rail d-b-c">
|
||||
<div class="d-s-c flex-1">
|
||||
<el-button
|
||||
size="small"
|
||||
type="primary"
|
||||
@ -37,17 +38,15 @@
|
||||
v-auth="'/product/base/attribute/add'"
|
||||
>新增</el-button
|
||||
>
|
||||
<!-- <el-button
|
||||
size="small"
|
||||
type="warning"
|
||||
@click="showBatchDelivery"
|
||||
v-auth="'/product/base/attribute/delete'"
|
||||
>删除</el-button
|
||||
> -->
|
||||
</div>
|
||||
<!-- 分页 -->
|
||||
<el-pagination small @size-change="handleSizeChange" @current-change="handleCurrentChange" background
|
||||
:page-sizes="[20, 50, 100]" :current-page="curPage" :page-size="pageSize"
|
||||
layout="total, prev, next, jumper,sizes" :total="totalDataNumber">
|
||||
</el-pagination>
|
||||
|
||||
</div>
|
||||
<!--内容-->
|
||||
<div class="product-content">
|
||||
<div class="table-wrap">
|
||||
<el-table
|
||||
size="small"
|
||||
:data="tableData"
|
||||
@ -80,7 +79,6 @@
|
||||
<el-table-column prop="createTime" label="创建时间"></el-table-column>
|
||||
<el-table-column prop="updateTime" label="更新时间"></el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
|
||||
<Add
|
||||
v-if="open_add"
|
||||
@ -93,20 +91,6 @@
|
||||
:form="categoryModel"
|
||||
@closeDialog="closeDialogFunc($event, 'edit')"
|
||||
></Edit>
|
||||
<!--分页-->
|
||||
<div class="pagination">
|
||||
<el-pagination
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="handleCurrentChange"
|
||||
background
|
||||
:current-page="curPage"
|
||||
:page-size="pageSize"
|
||||
layout="total, prev, pager, next, jumper"
|
||||
:total="totalDataNumber"
|
||||
>
|
||||
</el-pagination>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="product-list bgset">
|
||||
<div class="product-list bgset set-main">
|
||||
<!--搜索表单-->
|
||||
<div class="common-seach-wrap">
|
||||
<el-tabs v-model="activeName" @tab-change="handleClick">
|
||||
@ -23,22 +23,6 @@
|
||||
placeholder="请输入品牌名称"
|
||||
></el-input
|
||||
></el-form-item>
|
||||
<!-- <el-form-item label="状态">
|
||||
<el-select
|
||||
size="small"
|
||||
v-model="searchForm.categoryId"
|
||||
placeholder="所有分类"
|
||||
>
|
||||
<el-option label="全部" value="0"></el-option>
|
||||
<el-option
|
||||
v-for="(item, index) in categoryList"
|
||||
:key="index"
|
||||
:label="item.name"
|
||||
:value="item.categoryId"
|
||||
></el-option>
|
||||
</el-select>
|
||||
</el-form-item> -->
|
||||
|
||||
<el-form-item>
|
||||
<el-button size="small" type="primary" icon="Search" @click="onSubmit"
|
||||
>查询</el-button
|
||||
@ -46,16 +30,23 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="common-level-rail">
|
||||
<div class="common-level-rail d-b-c">
|
||||
<div class="d-s-c flex-1">
|
||||
<el-button size="small" type="primary" icon="Plus" @click="addClick"
|
||||
>新增</el-button
|
||||
>
|
||||
</div>
|
||||
<!-- 分页 -->
|
||||
<el-pagination small @size-change="handleSizeChange" @current-change="handleCurrentChange" background
|
||||
:page-sizes="[20, 50, 100]" :current-page="curPage" :page-size="pageSize"
|
||||
layout="total, prev, next, jumper,sizes" :total="totalDataNumber">
|
||||
</el-pagination>
|
||||
|
||||
</div>
|
||||
|
||||
<!--内容-->
|
||||
<div class="product-content">
|
||||
<div class="table-wrap">
|
||||
<el-table
|
||||
class="flex-1"
|
||||
size="small"
|
||||
:data="tableData"
|
||||
border
|
||||
@ -98,20 +89,6 @@
|
||||
<el-table-column prop="createTime" label="创建时间"></el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
</div>
|
||||
<!--分页-->
|
||||
<div class="pagination">
|
||||
<el-pagination
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="handleCurrentChange"
|
||||
background
|
||||
:current-page="curPage"
|
||||
:page-size="pageSize"
|
||||
layout="total, prev, pager, next, jumper"
|
||||
:total="totalDataNumber"
|
||||
></el-pagination>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
|
||||
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="product bgset">
|
||||
<div class="product bgset set-main">
|
||||
<!--搜索表单-->
|
||||
<div class="common-seach-wrap">
|
||||
<el-form
|
||||
@ -41,7 +41,8 @@
|
||||
</el-form-item>
|
||||
</el-form>
|
||||
</div>
|
||||
<div class="common-level-rail">
|
||||
<div class="common-level-rail d-b-c">
|
||||
<div class="d-s-c flex-1">
|
||||
<el-button
|
||||
size="small"
|
||||
type="primary"
|
||||
@ -69,11 +70,17 @@
|
||||
>禁用</el-button
|
||||
>
|
||||
</div>
|
||||
<!-- 分页 -->
|
||||
<el-pagination small @size-change="handleSizeChange" @current-change="handleCurrentChange" background
|
||||
:page-sizes="[20, 50, 100]" :current-page="curPage" :page-size="pageSize"
|
||||
layout="total, prev, next, jumper,sizes" :total="totalDataNumber">
|
||||
</el-pagination>
|
||||
|
||||
</div>
|
||||
<!--内容-->
|
||||
<div class="product-content">
|
||||
<div class="table-wrap">
|
||||
<el-table
|
||||
size="small"
|
||||
class="flex-1"
|
||||
:data="tableData"
|
||||
border
|
||||
style="width: 100%"
|
||||
@ -117,7 +124,6 @@
|
||||
width="140"
|
||||
></el-table-column>
|
||||
</el-table>
|
||||
</div>
|
||||
<Add
|
||||
v-if="open_add"
|
||||
:open_add="open_add"
|
||||
@ -129,20 +135,6 @@
|
||||
:editForm="categoryModel"
|
||||
@closeDialog="closeDialogFunc($event, 'edit')"
|
||||
></Edit>
|
||||
<!--分页-->
|
||||
<div class="pagination">
|
||||
<el-pagination
|
||||
@size-change="handleSizeChange"
|
||||
@current-change="handleCurrentChange"
|
||||
background
|
||||
:current-page="curPage"
|
||||
:page-size="pageSize"
|
||||
layout="total, prev, pager, next, jumper"
|
||||
:total="totalDataNumber"
|
||||
>
|
||||
</el-pagination>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user