Commit 31531156 authored by 黄奎's avatar 黄奎
parents 1cb12991 5f47e540
...@@ -187,7 +187,6 @@ ...@@ -187,7 +187,6 @@
<li style="position: fixed;right: 0;top: 51px;"> <li style="position: fixed;right: 0;top: 51px;">
<input type="button" class="normalBtn" value="导出" @click="exportExcel"> <input type="button" class="normalBtn" value="导出" @click="exportExcel">
<input type="button" class="hollowFixedBtn" value="团队奖励明细" @click="objNew.EmployeeId=0,objNew.PeriodsId=0,isRewardDetail=true">
</li> </li>
</ul> </ul>
......
<template> <template>
<el-dialog title="团数奖励明细" width="1100px" :visible.sync="isShow" center <el-dialog title="团数奖励明细" width="1100px" :visible.sync="isShow" center
@close="$emit('close')"> @close="$emit('close')">
<div style="text-align: right;margin-bottom: 10px;">
<input type="button" class="hollowFixedBtn" value="查看全部明细"
@click="getList(1)">
</div>
<div v-loading="loading"> <div v-loading="loading">
<div v-for="(item,index) in dataList" :key="index" class="dataList-box"> <div v-for="(item,index) in dataList" :key="index" class="dataList-box">
<div class="dataList-heade"> <div class="dataList-heade">
...@@ -147,7 +151,11 @@ export default { ...@@ -147,7 +151,11 @@ export default {
this.getList(); this.getList();
}, },
//获取数据 //获取数据
getList() { getList(type) {
if(type){
this.msg.EmpId=0,
this.msg.PeriodsId=0
}
this.loading = true; this.loading = true;
this.apipost( this.apipost(
"opcommission_GetEmpAwardPageList", "opcommission_GetEmpAwardPageList",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment