|
@@ -5,6 +5,8 @@
|
|
|
<div class="filter-container">
|
|
|
<el-input clearable class="filter-item" style="width: 200px;" placeholder="请输入姓名"
|
|
|
v-model="listQuery.userName"></el-input>
|
|
|
+ <el-input clearable class="filter-item" style="width: 200px;" placeholder="积分说明"
|
|
|
+ v-model="listQuery.comment"></el-input>
|
|
|
<el-select v-model="listQuery.deptId" clearable placeholder="请选择部门" style="top: -4px;width: 200px;">
|
|
|
<el-option :key="item.type" v-for="item in depTypeList" :label="item.deptName" :value="item.deptId">
|
|
|
</el-option>
|
|
@@ -89,6 +91,7 @@ export default {
|
|
|
limit: 10,
|
|
|
deptId: '',
|
|
|
userName: '',
|
|
|
+ comment:'',
|
|
|
createTime: '',
|
|
|
integralType:'',
|
|
|
},
|
|
@@ -101,7 +104,7 @@ export default {
|
|
|
},
|
|
|
methods: {
|
|
|
handleDownload() {
|
|
|
- window.location.href = process.env.BASE_API + '/mall-integral/export/details/page?integralType=' + this.listQuery.integralType + '&deptId=' + this.listQuery.deptId + '&userName=' + this.listQuery.userName + '&createTime=' + this.listQuery.createTime;
|
|
|
+ window.location.href = process.env.BASE_API + '/mall-integral/export/details/page?integralType=' + this.listQuery.integralType + '&deptId=' + this.listQuery.deptId + '&userName=' + this.listQuery.userName + '&createTime=' + this.listQuery.createTime + '&comment=' + this.listQuery.comment;
|
|
|
},
|
|
|
getDepTypeList() {
|
|
|
depTypeList().then(response => {
|