|
@@ -29,9 +29,9 @@
|
|
|
<el-table-column label="商品数量" width="100" align="center">
|
|
<el-table-column label="商品数量" width="100" align="center">
|
|
|
<template slot-scope="scope">{{ scope.row.productCount }}</template>
|
|
<template slot-scope="scope">{{ scope.row.productCount }}</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
- <el-table-column label="数量单位" width="100" align="center">
|
|
|
|
|
|
|
+ <!-- <el-table-column label="数量单位" width="100" align="center">
|
|
|
<template slot-scope="scope">{{ scope.row.productUnit }}</template>
|
|
<template slot-scope="scope">{{ scope.row.productUnit }}</template>
|
|
|
- </el-table-column>
|
|
|
|
|
|
|
+ </el-table-column> -->
|
|
|
<el-table-column label="导航栏" width="100" align="center">
|
|
<el-table-column label="导航栏" width="100" align="center">
|
|
|
<template slot-scope="scope">
|
|
<template slot-scope="scope">
|
|
|
<el-switch
|
|
<el-switch
|
|
@@ -65,11 +65,11 @@
|
|
|
@click="handleShowNextLevel(scope.$index, scope.row)"
|
|
@click="handleShowNextLevel(scope.$index, scope.row)"
|
|
|
>查看下级
|
|
>查看下级
|
|
|
</el-button>
|
|
</el-button>
|
|
|
- <el-button
|
|
|
|
|
|
|
+ <!-- <el-button
|
|
|
size="mini"
|
|
size="mini"
|
|
|
@click="handleTransferProduct(scope.$index, scope.row)"
|
|
@click="handleTransferProduct(scope.$index, scope.row)"
|
|
|
>转移商品
|
|
>转移商品
|
|
|
- </el-button>
|
|
|
|
|
|
|
+ </el-button> -->
|
|
|
</template>
|
|
</template>
|
|
|
</el-table-column>
|
|
</el-table-column>
|
|
|
<el-table-column label="操作" width="200" align="center">
|
|
<el-table-column label="操作" width="200" align="center">
|
|
@@ -96,7 +96,7 @@
|
|
|
@current-change="handleCurrentChange"
|
|
@current-change="handleCurrentChange"
|
|
|
layout="total, sizes,prev, pager, next,jumper"
|
|
layout="total, sizes,prev, pager, next,jumper"
|
|
|
:page-size="listQuery.pageSize"
|
|
:page-size="listQuery.pageSize"
|
|
|
- :page-sizes="[5, 10, 15]"
|
|
|
|
|
|
|
+ :page-sizes="[ 10, 15,20]"
|
|
|
:current-page.sync="listQuery.pageNum"
|
|
:current-page.sync="listQuery.pageNum"
|
|
|
:total="total"
|
|
:total="total"
|
|
|
>
|
|
>
|
|
@@ -122,7 +122,7 @@ export default {
|
|
|
listLoading: true,
|
|
listLoading: true,
|
|
|
listQuery: {
|
|
listQuery: {
|
|
|
pageNum: 1,
|
|
pageNum: 1,
|
|
|
- pageSize: 5,
|
|
|
|
|
|
|
+ pageSize: 10,
|
|
|
},
|
|
},
|
|
|
parentId: 0,
|
|
parentId: 0,
|
|
|
};
|
|
};
|