xy 2 years ago
parent 172703373c
commit 49bd49331c

@ -103,8 +103,9 @@ export default {
}, },
{ {
prop: "address", prop: "address",
label: "地址", label: "部门",
align: "left" align: "left",
minWidth: 200
}, },
{ {
prop: "score", prop: "score",
@ -118,20 +119,33 @@ export default {
formatter:(d1, d2, v) => { formatter:(d1, d2, v) => {
return v ? "是" : "否" return v ? "是" : "否"
} }
},
{
prop: "company_name",
label: "奖品名称",
width: 220
} }
], ],
select: { select: {
page: 1, page: 1,
page_size: 20, page_size: 10,
keyword: "", keyword: "",
activity_list_id: 10 table_name: "users",
activity_list_id: 10,
filter: [
{
key: "mobile",
op: "neq",
value: "null"
}
]
} }
} }
}, },
methods: { methods: {
getToken, getToken,
async getList () { async getList () {
const res = await index(this.select) const res = await baseFormIndex(this.select)
this.list = res.data; this.list = res.data;
this.total = res.total; this.total = res.total;
}, },
@ -144,7 +158,7 @@ export default {
this.getList() this.getList()
}, },
pageChange (e) { pageChange (e) {
this.select.page = 1; this.select.page = e;
this.getList() this.getList()
}, },
async exportXLSX () { async exportXLSX () {

Loading…
Cancel
Save