Skip to content

Commit f48c259

Browse files
AndyLZCPanJiaChen
authored andcommitted
perf[complex-table]:refine code (PanJiaChen#2825)
* 解决无法删除列表的bug;优化代码; * perf: refine Co-authored-by: 花裤衩 <[email protected]>
1 parent 3cdddd7 commit f48c259

File tree

2 files changed

+10
-20
lines changed

2 files changed

+10
-20
lines changed

mock/article.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ for (let i = 0; i < count; i++) {
1818
forecast: '@float(0, 100, 2, 2)',
1919
importance: '@integer(1, 3)',
2020
'type|1': ['CN', 'US', 'JP', 'EU'],
21-
'status|1': ['published', 'draft', 'deleted'],
21+
'status|1': ['published', 'draft'],
2222
display_time: '@datetime',
2323
comment_disabled: true,
2424
pageviews: '@integer(300, 5000)',

src/views/table/complex-table.vue

+9-19
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
</template>
8181
</el-table-column>
8282
<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}">
8484
<el-button type="primary" size="mini" @click="handleUpdate(row)">
8585
Edit
8686
</el-button>
@@ -90,7 +90,7 @@
9090
<el-button v-if="row.status!='draft'" size="mini" @click="handleModifyStatus(row,'draft')">
9191
Draft
9292
</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)">
9494
Delete
9595
</el-button>
9696
</template>
@@ -319,13 +319,8 @@ export default {
319319
const tempData = Object.assign({}, this.temp)
320320
tempData.timestamp = +new Date(tempData.timestamp) // change Thu Nov 30 2017 16:41:05 GMT+0800 (CST) to 1512031311464
321321
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)
329324
this.dialogFormVisible = false
330325
this.$notify({
331326
title: 'Success',
@@ -337,14 +332,13 @@ export default {
337332
}
338333
})
339334
},
340-
handleDelete(row) {
335+
handleDelete(row, index) {
341336
this.$notify({
342337
title: 'Success',
343338
message: 'Delete Successfully',
344339
type: 'success',
345340
duration: 2000
346341
})
347-
const index = this.list.indexOf(row)
348342
this.list.splice(index, 1)
349343
},
350344
handleFetchPv(pv) {
@@ -358,7 +352,7 @@ export default {
358352
import('@/vendor/Export2Excel').then(excel => {
359353
const tHeader = ['timestamp', 'title', 'type', 'importance', 'status']
360354
const filterVal = ['timestamp', 'title', 'type', 'importance', 'status']
361-
const data = this.formatJson(filterVal, this.list)
355+
const data = this.formatJson(filterVal)
362356
excel.export_json_to_excel({
363357
header: tHeader,
364358
data,
@@ -367,8 +361,8 @@ export default {
367361
this.downloadLoading = false
368362
})
369363
},
370-
formatJson(filterVal, jsonData) {
371-
return jsonData.map(v => filterVal.map(j => {
364+
formatJson(filterVal) {
365+
return this.list.map(v => filterVal.map(j => {
372366
if (j === 'timestamp') {
373367
return parseTime(v[j])
374368
} else {
@@ -378,11 +372,7 @@ export default {
378372
},
379373
getSortClass: function(key) {
380374
const sort = this.listQuery.sort
381-
return sort === `+${key}`
382-
? 'ascending'
383-
: sort === `-${key}`
384-
? 'descending'
385-
: ''
375+
return sort === `+${key}` ? 'ascending' : 'descending'
386376
}
387377
}
388378
}

0 commit comments

Comments
 (0)