|
|
@@ -101,7 +101,10 @@ export default {
|
|
|
subtitle: undefined,
|
|
|
sort: 'add_time',
|
|
|
order: 'desc'
|
|
|
- }
|
|
|
+ },
|
|
|
+ contentDetail: '',
|
|
|
+ contentDialogVisible: false,
|
|
|
+ downloadLoading: false
|
|
|
}
|
|
|
},
|
|
|
created() {
|
|
|
@@ -149,6 +152,10 @@ export default {
|
|
|
})
|
|
|
})
|
|
|
},
|
|
|
+ showContent(content) {
|
|
|
+ this.contentDetail = content
|
|
|
+ this.contentDialogVisible = true
|
|
|
+ },
|
|
|
handleDownload() {
|
|
|
this.downloadLoading = true
|
|
|
import('@/vendor/Export2Excel').then(excel => {
|