80
80
</template >
81
81
</el-table-column >
82
82
<el-table-column label =" Actions" align =" center" width =" 230" class-name =" small-padding fixed-width" >
83
- <template slot-scope="{row}">
83
+ <template slot-scope="{row,$index }">
84
84
<el-button type =" primary" size =" mini" @click =" handleUpdate(row)" >
85
85
Edit
86
86
</el-button >
90
90
<el-button v-if =" row.status!='draft'" size =" mini" @click =" handleModifyStatus(row,'draft')" >
91
91
Draft
92
92
</el-button >
93
- <el-button v-if =" row.status!='deleted'" size =" mini" type =" danger" @click =" handleModifyStatus (row,'deleted' )" >
93
+ <el-button v-if =" row.status!='deleted'" size =" mini" type =" danger" @click =" handleDelete (row,$index )" >
94
94
Delete
95
95
</el-button >
96
96
</template >
@@ -319,13 +319,8 @@ export default {
319
319
const tempData = Object .assign ({}, this .temp )
320
320
tempData .timestamp = + new Date (tempData .timestamp ) // change Thu Nov 30 2017 16:41:05 GMT+0800 (CST) to 1512031311464
321
321
updateArticle (tempData).then (() => {
322
- for (const v of this .list ) {
323
- if (v .id === this .temp .id ) {
324
- const index = this .list .indexOf (v)
325
- this .list .splice (index, 1 , this .temp )
326
- break
327
- }
328
- }
322
+ const index = this .list .findIndex (v => v .id === this .temp .id )
323
+ this .list .splice (index, 1 , this .temp )
329
324
this .dialogFormVisible = false
330
325
this .$notify ({
331
326
title: ' Success' ,
@@ -337,14 +332,13 @@ export default {
337
332
}
338
333
})
339
334
},
340
- handleDelete (row ) {
335
+ handleDelete (row , index ) {
341
336
this .$notify ({
342
337
title: ' Success' ,
343
338
message: ' Delete Successfully' ,
344
339
type: ' success' ,
345
340
duration: 2000
346
341
})
347
- const index = this .list .indexOf (row)
348
342
this .list .splice (index, 1 )
349
343
},
350
344
handleFetchPv (pv ) {
@@ -358,7 +352,7 @@ export default {
358
352
import (' @/vendor/Export2Excel' ).then (excel => {
359
353
const tHeader = [' timestamp' , ' title' , ' type' , ' importance' , ' status' ]
360
354
const filterVal = [' timestamp' , ' title' , ' type' , ' importance' , ' status' ]
361
- const data = this .formatJson (filterVal, this . list )
355
+ const data = this .formatJson (filterVal)
362
356
excel .export_json_to_excel ({
363
357
header: tHeader,
364
358
data,
@@ -367,8 +361,8 @@ export default {
367
361
this .downloadLoading = false
368
362
})
369
363
},
370
- formatJson (filterVal , jsonData ) {
371
- return jsonData .map (v => filterVal .map (j => {
364
+ formatJson (filterVal ) {
365
+ return this . list .map (v => filterVal .map (j => {
372
366
if (j === ' timestamp' ) {
373
367
return parseTime (v[j])
374
368
} else {
@@ -378,11 +372,7 @@ export default {
378
372
},
379
373
getSortClass : function (key ) {
380
374
const sort = this .listQuery .sort
381
- return sort === ` +${ key} `
382
- ? ' ascending'
383
- : sort === ` -${ key} `
384
- ? ' descending'
385
- : ' '
375
+ return sort === ` +${ key} ` ? ' ascending' : ' descending'
386
376
}
387
377
}
388
378
}
0 commit comments