aftersale.js
17.3 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
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefined, Backend, Table, Form) {
var Controller = {
index: function () {
function debounce(handle, delay) {
let time = null;
return function () {
let self = this,
arg = arguments;
clearTimeout(time);
time = setTimeout(function () {
handle.apply(self, arg);
}, delay)
}
}
var aftersaleIndex = new Vue({
el: "#aftersaleIndex",
data() {
return {
screenType: false,
statusType: 'all',
searchKey: '',
createtime: [],
pageData: [],
//分页
currentPage: 1,
totalPage: 0,
offset: 0,
limit: 10,
}
},
mounted() {
if(new URLSearchParams(location.search).get('datetimerange')){
this.createtime=new URLSearchParams(location.search).get('datetimerange').split(' - ')
}
this.getData();
},
methods: {
//筛选
changeSwitch() {
this.screenType=!this.screenType;
},
arraySpanMethod({ row, column, rowIndex, columnIndex }) {
if (rowIndex >= 0) {
if (columnIndex === 0) {
return [, 0];
} else if (columnIndex === 1) {
return [1, 4];
}
}
},
getData() {
var that = this;
Fast.api.ajax({
url: 'shopro/order/aftersale/index',
loading: true,
type: 'GET',
data: {
sort: 'id',
order: 'desc',
search: that.searchKey,
offset: that.offset,
limit: that.limit,
status: that.statusType,
createtime: that.createtime,
}
}, function (ret, res) {
that.pageData = res.data.rows;
that.totalPage = res.data.total;
return false;
})
},
//导出
goExport() {
var that = this;
// if(offset==0 && limit==10){
// that.offset=offset;
// that.limit=limit;
// }
window.location.href = "aftersale/export?offset=" + that.offset + "&limit=" + that.limit + "&search=" + that.searchKey + "&status=" + that.statusType + "&createtime=" + that.createtime;
},
//请求
reqOrderList(offset,limit) {
var that = this;
if(offset==0 && limit==10){
that.offset=offset;
that.limit=limit;
}
that.getData()
},
//分页(更换页面显示条数)
pageSizeChange(val) {
this.offset = 0
this.limit = val
this.getData()
},
//当前是第几页
pageCurrentChange(val) {
this.offset = (val - 1) * this.limit
this.getData()
},
viewDetail(id) {
Fast.api.open('shopro/order/aftersale/detail?id=' + id, "售后详情");
},
colorFilters(type) {
let color = ""
switch (type) {
case -2:
color = '#999'
break;
case -1:
color = '#FF5959'
break;
case 0:
color = '#444'
break;
case 1:
color = '#F8A92B'
break;
case 2:
color = '#7438D5'
break;
}
return color;
},
debounceFilter: debounce(function () {
this.getData()
}, 1000),
},
watch: {
searchKey(newval, val) {
if (newval != val) {
this.limit = 10;
this.offset = 0;
this.debounceFilter()
}
},
statusType(newval, val) {
if (newval != val) {
this.limit = 10;
this.offset = 0;
this.getData()
}
},
}
})
},
recyclebin: function () {
// 初始化表格参数配置
Table.api.init({
extend: {
'dragsort_url': ''
}
});
var table = $("#table");
// 初始化表格
table.bootstrapTable({
url: 'shopro/order/order/recyclebin' + location.search,
pk: 'type',
sortName: 'type',
columns: [
[{
checkbox: true
},
{
field: 'type',
title: __('type')
},
{
field: 'deletetime',
title: __('Deletetime'),
operate: 'RANGE',
addclass: 'datetimerange',
formatter: Table.api.formatter.datetime
},
{
field: 'operate',
wtypeth: '130px',
title: __('Operate'),
table: table,
events: Table.api.events.operate,
buttons: [{
name: 'Restore',
text: __('Restore'),
classname: 'btn btn-xs btn-info btn-ajax btn-restoreit',
icon: 'fa fa-rotate-left',
url: 'shopro/order/order/restore',
refresh: true
},
{
name: 'Destroy',
text: __('Destroy'),
classname: 'btn btn-xs btn-danger btn-ajax btn-destroyit',
icon: 'fa fa-times',
url: 'shopro/order/order/destroy',
refresh: true
}
],
formatter: Table.api.formatter.operate
}
]
]
});
// 为表格绑定事件
Table.api.bindevent(table);
},
detail: function () {
var vue = new Vue({
el: "#aftersaleDetail",
data() {
return {
detailId: window.location.search.replace("?", '').split("&")[0].split('=')[1],
detailData: {},
detailLogs: [],
orderData: [],
stepActive: 1,
refundDialog: false,
refundType: 'agree',
refundMoney: '',
refuseReason: '',
replyMsg: '',
replyImages: [],
dialogName: '',
dialoglist: {
"agree-refund": '同意退款',
"reject-refund": '拒绝申请',
"reply-msg": '回复买家'
}
}
},
mounted() {
this.getDetail();
},
methods: {
getDetail() {
let that = this;
Fast.api.ajax({
url: `shopro/order/aftersale/detail/id/${that.detailId}`,
loading: true,
type: "GET",
}, function (ret, res) {
that.detailData = res.data.detail;
that.detailLogs = res.data.logs;
that.orderData = res.data.order
if (that.detailData.aftersale_status == -1 || that.detailData.aftersale_status == -2 || that.detailData.aftersale_status == 2) {
that.stepActive = 3;
} else {
that.stepActive = that.detailData.aftersale_status + 1;
}
return false;
})
},
operationfunc(type, optType) {
let that = this
switch (optType) {
case 'dialog':
that.refundDialog = true;
that.refundType = type;
that.dialogName = that.dialoglist[that.refundType];
break;
case 'finish-aftersale':
Fast.api.ajax({
url: `shopro/order/aftersale/finish/id/${that.detailId}`,
loading: true,
}, function (ret, res) {
that.getDetail();
})
break;
default:
if (type == 'yes') {
if (that.refundType == 'agree-refund') {
Fast.api.ajax({
url: `shopro/order/aftersale/refund/id/${that.detailId}`,
loading: true,
data: {
refund_money: that.refundMoney
}
}, function (ret, res) {
that.refundDialog = false;
that.refundMoney = "";
that.getDetail();
})
} else if (that.refundType == 'reject-refund') {
Fast.api.ajax({
url: `shopro/order/aftersale/refuse/id/${that.detailId}`,
loading: true,
data: {
refuse_msg: that.refuseReason
}
}, function (ret, res) {
that.refundDialog = false;
that.refuseReason = "";
that.getDetail();
})
} else if (that.refundType == 'reply-msg') {
Fast.api.ajax({
url: `shopro/order/aftersale/addLog/id/${that.detailId}`,
loading: true,
data: {
content: that.replyMsg,
images: that.replyImages.join(',')
}
}, function (ret, res) {
that.refundDialog = false;
that.replyMsg = "";
that.replyImages = []
that.getDetail();
})
}
} else {
that.refundDialog = false;
that.refundMoney = "";
that.refuseReason = "";
that.replyMsg = '';
that.replyImages = [];
}
break;
}
},
finishService(orderId, itemId) {
var that = this
Fast.api.ajax({
url: `shopro/order/order/aftersaleFinish/id/${orderId}/item_id/${itemId}`,
loading: true,
data: {}
}, function (ret, res) {
that.orderGoodsList = []
res.data.forEach(item => {
that.orderGoodsList.push(item)
})
that.aftersale_statusFlag = false
that.orderGoodsList.forEach(i => {
if (i.aftersale_status == 1) {
that.aftersale_statusFlag = true
}
})
})
},
addImg() {
let that = this;
parent.Fast.api.open("general/attachment/select?multiple=true", "选择图片", {
callback: function (data) {
let arrUrl = data.url.split(',');
that.replyImages = that.replyImages.concat(arrUrl);
}
});
return false;
},
delImg(index) {
this.replyImages.splice(index, 1);
},
},
watch: {
}
})
$('.more-ellipsis').each(function (i, obj) {
var lineHeight = parseInt($(this).css("line-height"));
var height = parseInt($(this).height());
if ((height / lineHeight) > 2) {
$(this).addClass("more-ellipsis-after")
$(this).css("height", "36px");
} else {
$(this).removeClass("more-ellipsis-after");
}
});
// 售后图片放大
$(document).on("click", ".record-images img", function () {
var data = [];
$(".record-images img").each(function (index, value) {
data.push({
src: $(this).attr('src'),
});
});
Layer.photos({
photos: {
"start": $(this).index(),
"data": data
},
anim: 5 //0-6的选择,指定弹出图片动画类型,默认随机(请注意,3.0之前的版本用shift参数)
});
});
Controller.api.bindevent();
},
add: function () {
Controller.api.bindevent();
},
edit: function () {
Controller.api.bindevent();
},
api: {
bindevent: function () {
Form.api.bindevent($("form[role=form]"));
}
}
};
return Controller;
});