@ -16,7 +16,12 @@ import './global.less'
import { Dialog } from '@/components'
Vue.config.productionTip = false
Vue.prototype.pagination = {
total: 0, // 数据总数
page: 1, // 当前页码
pageSize: 15, // 每页显示条数
showQuickJumper: true, // 显示跳转输入框
},
// mount axios Vue.$http and this.$http
Vue.use(VueAxios)
Vue.use(Dialog)
@ -314,12 +314,6 @@ export default {
data() {
return {
pagination: {
// 当前表单元素
searchForm: this.$form.createForm(this),
// 商品分类列表
@ -9,9 +9,10 @@
rowKey="category_id"
:columns="columns"
:dataSource="categoryList"
:defaultExpandAllRows="true"
:defaultExpandAllRows="false"
:expandIconColumnIndex="1"
:pagination="false"
:pagination="pagination"
:pageSize="15"
:loading="isLoading"
>
<!-- 状态 -->
@ -36,6 +36,7 @@
:data="loadData"
<!-- 开始时间 -->
@ -10,7 +10,8 @@
:data-source="list"
<span class="actions" slot="action" slot-scope="text, item">
<a @click="handleEdit(item)">编辑</a>
<span slot="actions" slot-scope="text, item">
<a-dropdown title="操作" v-for="(action, index) in item.actions" :key="index">
@ -10,7 +10,7 @@
rowKey="store_id"
showPagination="auto"
@ -7,7 +7,7 @@