Compare commits

...

2 Commits

@ -29,10 +29,16 @@ export default {
instanceId: 0,
columns: [
{
type: "index",
width: 80,
align: "center",
title: "序号",
render (h, params) {
let num = parseInt(params.index) + 1;
if (_this.pageSize > 1) {
num += (_this.pageNum - 1) * _this.pageSize;
}
return h("span", num);
}
},
{
title: "所属零售公司",

Loading…
Cancel
Save