diff --git a/CoreCms.Net.Web.Admin/wwwroot/views/shop/store/index.html b/CoreCms.Net.Web.Admin/wwwroot/views/shop/store/index.html index eba59206..e14cd7b9 100644 --- a/CoreCms.Net.Web.Admin/wwwroot/views/shop/store/index.html +++ b/CoreCms.Net.Web.Admin/wwwroot/views/shop/store/index.html @@ -121,6 +121,7 @@ method: 'Post', page: true, height: 'full-175', + limit: 20, toolbar: ['
', ' ', ' ', @@ -129,7 +130,18 @@ defaultToolbar: [], cols: [[ { type: 'numbers' }, - { field: 'storeName', title: '门店名称' } + { field: 'id', title: '序列', width: 60 }, + { field: 'storeName', title: '门店名称' }, + { + field: 'isDefault', title: '是否默认', width: 80, sort: true, templet: function (d) { + if (d.isDefault) { + return ''; + } else { + return '' + } + + } + }, ]], done: function (res, curr, count) { $('#storeTable+.layui-table-view .layui-table-body tbody>tr:first').trigger('click');