|
@@ -79,14 +79,14 @@ Page({
|
|
|
arr = await app.$get(`/dict`, { code: "match_status" });
|
|
|
if (arr.errcode == '0' && arr.total > 0) {
|
|
|
let list = arr.data[0].list;
|
|
|
- list.push({ id: "1", label: '全部', value: '' });
|
|
|
+ list.push({ label: '全部', value: '' });
|
|
|
that.setData({ statusList: list });
|
|
|
}
|
|
|
// 赛事类别
|
|
|
arr = await app.$get(`/dict`, { code: "match_type" });
|
|
|
if (arr.errcode == '0' && arr.total > 0) {
|
|
|
let list = arr.data[0].list;
|
|
|
- list.push({ id: "1", label: '全部', value: '' });
|
|
|
+ list.push({ label: '全部', value: '' });
|
|
|
that.setData({ typeList: list });
|
|
|
}
|
|
|
},
|