index.vue
9.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
<template>
<div class="operate padding">
<div class="formSearch">
<el-form :inline="true" :model="formInline" class="demo-form-inline">
<el-form-item label="计划名称">
<el-input v-model="formInline.operateName" />
</el-form-item>
<el-form-item label="运营人群">
<el-input v-model="formInline.crowdName" />
</el-form-item>
<el-form-item label="计划方式">
<el-select v-model="formInline.planMode" placeholder="请选择">
<el-option
v-for="item in planSelect"
:key="item.value"
:label="item.label"
:value="item.value"
/>
</el-select>
</el-form-item>
<el-form-item class="tagCustomer" label="计划时间">
<div class="dateBox">
<el-form-item>
<el-date-picker
v-model="formInline.dates"
type="datetimerange"
range-separator="至"
start-placeholder="开始日期"
end-placeholder="结束日期"
value-format="yyyy-MM-dd HH:mm:ss"
/>
</el-form-item>
</div>
</el-form-item>
<el-form-item>
<el-button type="primary" plain @click="search">查询</el-button>
<el-button plain @click="clearData">重置</el-button>
<el-button plain @click="addOperate">新增</el-button>
<el-button plain @click="delData(id = null)">删除</el-button>
</el-form-item>
</el-form>
</div>
<div class="tableBox">
<el-table
ref="multipleTable"
:data="planListData"
border
:header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
tooltip-effect="dark"
style="width: 100%"
@selection-change="handleSelectionChange"
>
<el-table-column
type="selection"
width="55"
/>
<el-table-column prop="operateName" label="计划名称" width="220" align="center" />
<el-table-column prop="crowdName" label="运营人群" align="center" show-overflow-tooltip />
<el-table-column label="计划方式" align="center" show-overflow-tooltip>
<template slot-scope="scope">
<span v-if="scope.row.planMode === 1">自动长期计划</span>
<span v-if="scope.row.planMode === 2">手动定时计划</span>
</template>
</el-table-column>
<el-table-column width="400" label="时间" align="center" how-overflow-tooltip>
<template slot-scope="scope">
<span v-if="scope.row.planMode === 1">{{ scope.row.planStart }} 至 {{ scope.row.planEnd }}</span>
<span v-else>{{ scope.row.manualTime }}</span>
</template>
</el-table-column>
<el-table-column label="状态" align="center" show-overflow-tooltip>
<template slot-scope="scope">
<span v-if="scope.row.state === 0">未开始</span>
<span v-if="scope.row.state === 1">进行中</span>
<span v-if="scope.row.state === 2">已结束</span>
</template>
</el-table-column>
<el-table-column label="操作" show-overflow-tooltip align="center">
<template slot-scope="scope">
<div class="btnList">
<el-button v-if="scope.row.state === 0" type="text" @click="edit(scope.row.shopOperateId)">编辑</el-button>
<el-button type="text" @click="showData(scope.row.shopOperateId)">数据</el-button>
<el-button v-if="scope.row.state === 0 || scope.row.state === 2" type="text" @click="delData(scope.row.shopOperateId)">删除</el-button>
</div>
</template>
</el-table-column>
</el-table>
<div class="fenye">
<el-pagination
:current-page="shopPage"
:page-sizes="[10, 20, 50, 100]"
:page-size="10"
layout="total, sizes, prev, pager, next, jumper"
:total="planListTotal"
@size-change="handleSizeChange"
@current-change="handleCurrentChange"
/>
</div>
</div>
<!-- 新建分组弹框 -->
<el-dialog
:close-on-click-modal="false"
title="数据效果"
:visible.sync="isDataVisible"
width="55%"
top="50px"
class="group-dialog"
>
<!-- 表格 -->
<div class="dataEffect">
<!-- <h3>实时统计</h3>-->
<div class="tableBox">
<el-table
ref="multipleTable"
:data="dataInfo"
border
height="500"
:header-cell-style="{ background: '#EEF3FF', color: '#333333' }"
tooltip-effect="dark"
style="width: 100%"
>
<el-table-column align="center" prop="time" label="日期" show-overflow-tooltip />
<el-table-column align="center" prop="person" label="发券人数" show-overflow-tooltip />
<el-table-column align="center" prop="users" label="下单人数" show-overflow-tooltip />
<el-table-column align="center" prop="orders" label="下单笔数" show-overflow-tooltip />
<el-table-column align="center" prop="total" label="下单金额" show-overflow-tooltip />
<el-table-column align="center" prop="pays" label="支付人数" show-overflow-tooltip />
<el-table-column align="center" prop="payOrders" label="支付订单数" show-overflow-tooltip />
</el-table>
</div>
</div>
</el-dialog>
<add-operate ref="addOperate"></add-operate>
</div>
</template>
<script>
import { getOperateList, deleteOperate, getDatasInfo } from '@/api/customer'
import AddOperate from '@/views/customer/addOperate';
export default {
name: 'Operate',
components: { AddOperate },
data() {
return {
formInline: {
planMode: null, // 计划方式
dates: [], // 计划时间数组
page: 1, // 当前页
operateName: '', // 计划名称
pageSize: 10, // 每页记录数
crowdName: '', // 人群名称
endTime: '',
startTime: ''
},
dataInfo: [], // 效果数据
planListData: [],
planListTotal: 0,
multipleSelection: [],
shopTotal: 1,
shopPage: 1,
planSelect: [{
value: 1,
label: '自动长期计划'
}, {
value: 2,
label: '手动定时计划'
}],
planValue: '',
isDataVisible: false // 展示数据
}
},
mounted() {
this.getAll(this.formInline)
},
methods: {
// 手动查询商品
search() {
this.getAll(this.formInline)
},
// 初始化查询所有数据
async getAll(formInline) {
const res = await getOperateList(formInline)
this.planListTotal = res.data.total
this.planListData = res.data.list
},
addOperate() {
this.$refs.addOperate.show()
},
clearData() {
this.formInline = {
maxPrice: null, // 价格最大值
maxStock: null, // 库存数量最大值
minPrice: null, // 价格最小值
minStock: null, // 库存数量最小值
page: 1, // 当前页
pageSize: 10, // 每页记录数
search: '' // 搜索字段
}
this.getAll(this.formInline)
},
handleSizeChange(val) {
this.formInline.pageSize = val
this.getAll(this.formInline)
},
handleCurrentChange(val) {
this.formInline.page = val
this.getAll(this.formInline)
},
handleSelectionChange(val) {
this.multipleSelection = val
console.log(this.multipleSelection)
},
// 编辑
edit(id) {
this.$refs.addOperate.show(id)
},
showData(id) {
getDatasInfo({ shopOperateId: id }).then(res => {
if (res.code === '') {
this.dataInfo = res.data
this.isDataVisible = true
} else {
this.$message({
message: res.message,
type: 'error'
})
}
})
},
delData(id) {
var ids = []
if (id) {
ids.push(id)
} else {
this.multipleSelection.forEach(item => {
ids.push(item.shopOperateId)
})
if (ids.length === 0) {
this.$message({
message: '请选择要删除的运营计划',
type: 'warning'
})
return false
}
}
console.log(ids, 'ids')
deleteOperate({ ids }).then(res => {
if (res.code === '') {
this.$message({
message: '删除成功',
type: 'success'
})
this.formInline.page = 1
this.getAll(this.formInline)
} else {
this.$message({
message: res.message,
type: 'error'
})
}
})
}
}
}
</script>
<style lang="scss" scoped>
.padding {
padding: 30px;
}
.operate {
}
</style>
<style scoped>
.fenye {
margin-top: 30px;
}
.formSearch /deep/ .el-form {
display: flex;
flex-wrap: wrap;
}
.btnBox /deep/ .el-radio {
margin-right: 8px;
}
.btnBox /deep/ .el-radio__label {
display: none;
}
.fenye /deep/ .dialog-footer {
margin: 30px auto 0 auto;
display: flex;
justify-content: center;
}
</style>