Commit 510880ff by crushh

update: 智能营销联调

parent af3ad2ca
......@@ -5,6 +5,10 @@
<el-select class="dm-select" clearable v-model="listParams.success" placeholder="所有条件" @change="search">
<el-option v-for="(v, i) in successOptions" :key="i" :label="v.label" :value="v.value"></el-option>
</el-select>
<el-select class="dm-select" placeholder="所有条件" v-model="listParams.status" @change="changeStatus">
<el-option label="正在进行中" :value="1"></el-option>
<el-option label="已删除" :value="0"></el-option>
</el-select>
<!-- <el-button type="text" @click="goHistory"> 历史记录</el-button> -->
<el-button icon="iconfont icon-icon_yunxiazai" class="fr" type="primary" @click="exportCurrentSendDetails"> 导出列表</el-button>
</div>
......@@ -84,7 +88,8 @@ export default {
pageSize: 20,
success: '',
beginTime: '',
endTime: ''
endTime: '',
status: 1
},
userMemberInfo: '', // 下面列表搜索
total: 0,
......@@ -186,9 +191,10 @@ export default {
this.listParams.ecmMarketingTypeRelationIds = list;
this.ecmCurrentSendDetails();
},
// goHistory() {
// },
changeStatus() {
this.listParams.currentPage = 1;
this.ecmCurrentSendInfos();
},
search() {
this.listParams.currentPage = 1;
this.ecmCurrentSendInfos();
......@@ -215,7 +221,8 @@ export default {
beginTime: this.listParams.beginTime,
endTime: this.listParams.endTime,
memberInfo: this.listParams.memberInfo,
success: this.listParams.success
success: this.listParams.success,
status: this.listParams.status
});
this.infoList = res.result || [];
this.$nextTick(_ => {
......
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