|
|
|
|
@ -11,7 +11,7 @@
|
|
|
|
|
<Button type="primary" @click="load" style="margin-left: 10px">查询</Button>
|
|
|
|
|
<Button type="primary" @click="viewPart" style="margin-left: 10px">{{btnText}}</Button>
|
|
|
|
|
<Button type="primary" style="margin-left: 10px" @click="handleGo">导出</Button>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
</slot>
|
|
|
|
|
</LxHeader>
|
|
|
|
|
@ -25,6 +25,10 @@
|
|
|
|
|
<el-table-column prop="plan_total" label="预约人数" sortable>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="use_total" label="入场人数" sortable>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="cancel_total" label="取消人数" sortable>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="expire_total" label="过期人数" sortable>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
<el-table-column prop="per" label="核销比" sortable>
|
|
|
|
|
</el-table-column>
|
|
|
|
|
@ -145,6 +149,8 @@
|
|
|
|
|
datelist:m.value,
|
|
|
|
|
plan_total:res[m.id].plan_total,
|
|
|
|
|
use_total:res[m.id].use_total,
|
|
|
|
|
cancel_total:res[m.id].cancel_total,
|
|
|
|
|
expire_total:res[m.id].expire_total,
|
|
|
|
|
per:res[m.id].per
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|