|
@@ -271,10 +271,11 @@
|
|
|
/** 获取场次 */
|
|
|
async merchantPerformTimeListFun(){
|
|
|
try {
|
|
|
- let res = await merchantPerformTimeList({
|
|
|
- ...this.queryParams
|
|
|
- })
|
|
|
+ let param = this.queryParams;
|
|
|
+ param.status = 1;
|
|
|
+ let res = await merchantPerformTimeList(param)
|
|
|
if(res.code == 200){
|
|
|
+ console.log('merchantPerformTimeListS',res.data.rows);
|
|
|
this.merchantPerformTimeListS = res.data.rows
|
|
|
}
|
|
|
} catch (error) {
|